Interface DataIntegrationFlowS3TargetConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataIntegrationFlowS3TargetConfiguration.Builder,DataIntegrationFlowS3TargetConfiguration>,SdkBuilder<DataIntegrationFlowS3TargetConfiguration.Builder,DataIntegrationFlowS3TargetConfiguration>,SdkPojo
- Enclosing class:
- DataIntegrationFlowS3TargetConfiguration
public static interface DataIntegrationFlowS3TargetConfiguration.Builder extends SdkPojo, CopyableBuilder<DataIntegrationFlowS3TargetConfiguration.Builder,DataIntegrationFlowS3TargetConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataIntegrationFlowS3TargetConfiguration.BuilderbucketName(String bucketName)The bucketName of the S3 target objects.default DataIntegrationFlowS3TargetConfiguration.Builderoptions(Consumer<DataIntegrationFlowS3Options.Builder> options)The S3 DataIntegrationFlow target options.DataIntegrationFlowS3TargetConfiguration.Builderoptions(DataIntegrationFlowS3Options options)The S3 DataIntegrationFlow target options.DataIntegrationFlowS3TargetConfiguration.Builderprefix(String prefix)The prefix of the S3 target objects.-
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
-
bucketName
DataIntegrationFlowS3TargetConfiguration.Builder bucketName(String bucketName)
The bucketName of the S3 target objects.
- Parameters:
bucketName- The bucketName of the S3 target objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
DataIntegrationFlowS3TargetConfiguration.Builder prefix(String prefix)
The prefix of the S3 target objects.
- Parameters:
prefix- The prefix of the S3 target objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
DataIntegrationFlowS3TargetConfiguration.Builder options(DataIntegrationFlowS3Options options)
The S3 DataIntegrationFlow target options.
- Parameters:
options- The S3 DataIntegrationFlow target options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default DataIntegrationFlowS3TargetConfiguration.Builder options(Consumer<DataIntegrationFlowS3Options.Builder> options)
The S3 DataIntegrationFlow target options.
This is a convenience method that creates an instance of theDataIntegrationFlowS3Options.Builderavoiding the need to create one manually viaDataIntegrationFlowS3Options.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooptions(DataIntegrationFlowS3Options).- Parameters:
options- a consumer that will call methods onDataIntegrationFlowS3Options.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
options(DataIntegrationFlowS3Options)
-
-