Class PipeTargetKinesisStreamParameters
- java.lang.Object
-
- software.amazon.awssdk.services.pipes.model.PipeTargetKinesisStreamParameters
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<PipeTargetKinesisStreamParameters.Builder,PipeTargetKinesisStreamParameters>
@Generated("software.amazon.awssdk:codegen") public final class PipeTargetKinesisStreamParameters extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PipeTargetKinesisStreamParameters.Builder,PipeTargetKinesisStreamParameters>
The parameters for using a Kinesis stream as a target.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfacePipeTargetKinesisStreamParameters.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PipeTargetKinesisStreamParameters.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<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 PipeTargetKinesisStreamParameters.Builder>serializableBuilderClass()PipeTargetKinesisStreamParameters.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
-
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 PipeTargetKinesisStreamParameters.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<PipeTargetKinesisStreamParameters.Builder,PipeTargetKinesisStreamParameters>
-
builder
public static PipeTargetKinesisStreamParameters.Builder builder()
-
serializableBuilderClass
public static Class<? extends PipeTargetKinesisStreamParameters.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.
-
-