Interface TransformDataSource.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TransformDataSource.Builder,
,TransformDataSource> SdkBuilder<TransformDataSource.Builder,
,TransformDataSource> SdkPojo
- Enclosing class:
TransformDataSource
public static interface TransformDataSource.Builder
extends SdkPojo, CopyableBuilder<TransformDataSource.Builder,TransformDataSource>
-
Method Summary
Modifier and TypeMethodDescriptiondefault TransformDataSource.Builder
s3DataSource
(Consumer<TransformS3DataSource.Builder> s3DataSource) The S3 location of the data source that is associated with a channel.s3DataSource
(TransformS3DataSource s3DataSource) The S3 location of the data source that is associated with a channel.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 Details
-
s3DataSource
The S3 location of the data source that is associated with a channel.
- Parameters:
s3DataSource
- The S3 location of the data source that is associated with a channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3DataSource
default TransformDataSource.Builder s3DataSource(Consumer<TransformS3DataSource.Builder> s3DataSource) The S3 location of the data source that is associated with a channel.
This is a convenience method that creates an instance of theTransformS3DataSource.Builder
avoiding the need to create one manually viaTransformS3DataSource.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3DataSource(TransformS3DataSource)
.- Parameters:
s3DataSource
- a consumer that will call methods onTransformS3DataSource.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-