Class PutRecordsRequestEntry
- java.lang.Object
-
- software.amazon.awssdk.services.kinesis.model.PutRecordsRequestEntry
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<PutRecordsRequestEntry.Builder,PutRecordsRequestEntry>
@Generated("software.amazon.awssdk:codegen") public final class PutRecordsRequestEntry extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PutRecordsRequestEntry.Builder,PutRecordsRequestEntry>
Represents the output for
PutRecords.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfacePutRecordsRequestEntry.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PutRecordsRequestEntry.Builderbuilder()SdkBytesdata()The data blob to put into the record, which is base64-encoded when the blob is serialized.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)StringexplicitHashKey()The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringpartitionKey()Determines which shard in the stream the data record is assigned to.List<SdkField<?>>sdkFields()static Class<? extends PutRecordsRequestEntry.Builder>serializableBuilderClass()PutRecordsRequestEntry.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
data
public final SdkBytes data()
The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).
- Returns:
- The data blob to put into the record, which is base64-encoded when the blob is serialized. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).
-
explicitHashKey
public final String explicitHashKey()
The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
- Returns:
- The hash value used to determine explicitly the shard that the data record is assigned to by overriding the partition key hash.
-
partitionKey
public final String partitionKey()
Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis Data Streams uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
- Returns:
- Determines which shard in the stream the data record is assigned to. Partition keys are Unicode strings with a maximum length limit of 256 characters for each key. Amazon Kinesis Data Streams uses the partition key as input to a hash function that maps the partition key and associated data to a specific shard. Specifically, an MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream.
-
toBuilder
public PutRecordsRequestEntry.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<PutRecordsRequestEntry.Builder,PutRecordsRequestEntry>
-
builder
public static PutRecordsRequestEntry.Builder builder()
-
serializableBuilderClass
public static Class<? extends PutRecordsRequestEntry.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-