Interface ChunkingConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChunkingConfiguration.Builder,ChunkingConfiguration>,SdkBuilder<ChunkingConfiguration.Builder,ChunkingConfiguration>,SdkPojo
- Enclosing class:
- ChunkingConfiguration
public static interface ChunkingConfiguration.Builder extends SdkPojo, CopyableBuilder<ChunkingConfiguration.Builder,ChunkingConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ChunkingConfiguration.BuilderchunkingStrategy(String chunkingStrategy)Sets the value of the ChunkingStrategy property for this object.ChunkingConfiguration.BuilderchunkingStrategy(ChunkingStrategy chunkingStrategy)Sets the value of the ChunkingStrategy property for this object.default ChunkingConfiguration.BuilderfixedSizeChunkingConfiguration(Consumer<FixedSizeChunkingConfiguration.Builder> fixedSizeChunkingConfiguration)Sets the value of the FixedSizeChunkingConfiguration property for this object.ChunkingConfiguration.BuilderfixedSizeChunkingConfiguration(FixedSizeChunkingConfiguration fixedSizeChunkingConfiguration)Sets the value of the FixedSizeChunkingConfiguration property for this object.-
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, sdkFields
-
-
-
-
Method Detail
-
chunkingStrategy
ChunkingConfiguration.Builder chunkingStrategy(String chunkingStrategy)
Sets the value of the ChunkingStrategy property for this object.- Parameters:
chunkingStrategy- The new value for the ChunkingStrategy property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChunkingStrategy,ChunkingStrategy
-
chunkingStrategy
ChunkingConfiguration.Builder chunkingStrategy(ChunkingStrategy chunkingStrategy)
Sets the value of the ChunkingStrategy property for this object.- Parameters:
chunkingStrategy- The new value for the ChunkingStrategy property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChunkingStrategy,ChunkingStrategy
-
fixedSizeChunkingConfiguration
ChunkingConfiguration.Builder fixedSizeChunkingConfiguration(FixedSizeChunkingConfiguration fixedSizeChunkingConfiguration)
Sets the value of the FixedSizeChunkingConfiguration property for this object.- Parameters:
fixedSizeChunkingConfiguration- The new value for the FixedSizeChunkingConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fixedSizeChunkingConfiguration
default ChunkingConfiguration.Builder fixedSizeChunkingConfiguration(Consumer<FixedSizeChunkingConfiguration.Builder> fixedSizeChunkingConfiguration)
Sets the value of the FixedSizeChunkingConfiguration property for this object. This is a convenience method that creates an instance of theFixedSizeChunkingConfiguration.Builderavoiding the need to create one manually viaFixedSizeChunkingConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofixedSizeChunkingConfiguration(FixedSizeChunkingConfiguration).- Parameters:
fixedSizeChunkingConfiguration- a consumer that will call methods onFixedSizeChunkingConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fixedSizeChunkingConfiguration(FixedSizeChunkingConfiguration)
-
-