Interface Shard.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Shard.Builder,Shard>,SdkBuilder<Shard.Builder,Shard>,SdkPojo
- Enclosing class:
- Shard
@Mutable @NotThreadSafe public static interface Shard.Builder extends SdkPojo, CopyableBuilder<Shard.Builder,Shard>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Shard.BuilderadjacentParentShardId(String adjacentParentShardId)The shard ID of the shard adjacent to the shard's parent.default Shard.BuilderhashKeyRange(Consumer<HashKeyRange.Builder> hashKeyRange)The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.Shard.BuilderhashKeyRange(HashKeyRange hashKeyRange)The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.Shard.BuilderparentShardId(String parentShardId)The shard ID of the shard's parent.default Shard.BuildersequenceNumberRange(Consumer<SequenceNumberRange.Builder> sequenceNumberRange)The range of possible sequence numbers for the shard.Shard.BuildersequenceNumberRange(SequenceNumberRange sequenceNumberRange)The range of possible sequence numbers for the shard.Shard.BuildershardId(String shardId)The unique identifier of the shard within the stream.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
shardId
Shard.Builder shardId(String shardId)
The unique identifier of the shard within the stream.
- Parameters:
shardId- The unique identifier of the shard within the stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parentShardId
Shard.Builder parentShardId(String parentShardId)
The shard ID of the shard's parent.
- Parameters:
parentShardId- The shard ID of the shard's parent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
adjacentParentShardId
Shard.Builder adjacentParentShardId(String adjacentParentShardId)
The shard ID of the shard adjacent to the shard's parent.
- Parameters:
adjacentParentShardId- The shard ID of the shard adjacent to the shard's parent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hashKeyRange
Shard.Builder hashKeyRange(HashKeyRange hashKeyRange)
The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.
- Parameters:
hashKeyRange- The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hashKeyRange
default Shard.Builder hashKeyRange(Consumer<HashKeyRange.Builder> hashKeyRange)
The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.
This is a convenience method that creates an instance of theHashKeyRange.Builderavoiding the need to create one manually viaHashKeyRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohashKeyRange(HashKeyRange).- Parameters:
hashKeyRange- a consumer that will call methods onHashKeyRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
hashKeyRange(HashKeyRange)
-
sequenceNumberRange
Shard.Builder sequenceNumberRange(SequenceNumberRange sequenceNumberRange)
The range of possible sequence numbers for the shard.
- Parameters:
sequenceNumberRange- The range of possible sequence numbers for the shard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sequenceNumberRange
default Shard.Builder sequenceNumberRange(Consumer<SequenceNumberRange.Builder> sequenceNumberRange)
The range of possible sequence numbers for the shard.
This is a convenience method that creates an instance of theSequenceNumberRange.Builderavoiding the need to create one manually viaSequenceNumberRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosequenceNumberRange(SequenceNumberRange).- Parameters:
sequenceNumberRange- a consumer that will call methods onSequenceNumberRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sequenceNumberRange(SequenceNumberRange)
-
-