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.BuilderparentShardId(String parentShardId)The shard ID of the current 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 system-generated identifier for this shard.-
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 system-generated identifier for this shard.
- Parameters:
shardId- The system-generated identifier for this shard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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)
-
parentShardId
Shard.Builder parentShardId(String parentShardId)
The shard ID of the current shard's parent.
- Parameters:
parentShardId- The shard ID of the current shard's parent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-