Interface DataIntegrationFlowS3SourceConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DataIntegrationFlowS3SourceConfiguration.Builder,
,DataIntegrationFlowS3SourceConfiguration> SdkBuilder<DataIntegrationFlowS3SourceConfiguration.Builder,
,DataIntegrationFlowS3SourceConfiguration> SdkPojo
- Enclosing class:
DataIntegrationFlowS3SourceConfiguration
@Mutable
@NotThreadSafe
public static interface DataIntegrationFlowS3SourceConfiguration.Builder
extends SdkPojo, CopyableBuilder<DataIntegrationFlowS3SourceConfiguration.Builder,DataIntegrationFlowS3SourceConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionbucketName
(String bucketName) The bucketName of the S3 source objects.The other options of the S3 DataIntegrationFlow source.options
(DataIntegrationFlowS3Options options) The other options of the S3 DataIntegrationFlow source.The prefix of the S3 source 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 Details
-
bucketName
The bucketName of the S3 source objects.
- Parameters:
bucketName
- The bucketName of the S3 source objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
The prefix of the S3 source objects. To trigger data ingestion, S3 files need to be put under
s3://bucketName/prefix/
.- Parameters:
prefix
- The prefix of the S3 source objects. To trigger data ingestion, S3 files need to be put unders3://bucketName/prefix/
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
The other options of the S3 DataIntegrationFlow source.
- Parameters:
options
- The other options of the S3 DataIntegrationFlow source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default DataIntegrationFlowS3SourceConfiguration.Builder options(Consumer<DataIntegrationFlowS3Options.Builder> options) The other options of the S3 DataIntegrationFlow source.
This is a convenience method that creates an instance of theDataIntegrationFlowS3Options.Builder
avoiding the need to create one manually viaDataIntegrationFlowS3Options.builder()
.When the
Consumer
completes,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:
-