Interface AutoMLDataSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoMLDataSource.Builder,AutoMLDataSource>,SdkBuilder<AutoMLDataSource.Builder,AutoMLDataSource>,SdkPojo
- Enclosing class:
- AutoMLDataSource
public static interface AutoMLDataSource.Builder extends SdkPojo, CopyableBuilder<AutoMLDataSource.Builder,AutoMLDataSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AutoMLDataSource.Builders3DataSource(Consumer<AutoMLS3DataSource.Builder> s3DataSource)The Amazon S3 location of the input data.AutoMLDataSource.Builders3DataSource(AutoMLS3DataSource s3DataSource)The Amazon S3 location of the input data.-
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
-
s3DataSource
AutoMLDataSource.Builder s3DataSource(AutoMLS3DataSource s3DataSource)
The Amazon S3 location of the input data.
- Parameters:
s3DataSource- The Amazon S3 location of the input data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3DataSource
default AutoMLDataSource.Builder s3DataSource(Consumer<AutoMLS3DataSource.Builder> s3DataSource)
The Amazon S3 location of the input data.
This is a convenience method that creates an instance of theAutoMLS3DataSource.Builderavoiding the need to create one manually viaAutoMLS3DataSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3DataSource(AutoMLS3DataSource).- Parameters:
s3DataSource- a consumer that will call methods onAutoMLS3DataSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3DataSource(AutoMLS3DataSource)
-
-