public static interface AutoMLChannel.Builder extends SdkPojo, CopyableBuilder<AutoMLChannel.Builder,AutoMLChannel>
Modifier and Type | Method and Description |
---|---|
AutoMLChannel.Builder |
compressionType(CompressionType compressionType)
You can use Gzip or None.
|
AutoMLChannel.Builder |
compressionType(String compressionType)
You can use Gzip or None.
|
AutoMLChannel.Builder |
dataSource(AutoMLDataSource dataSource)
The data source.
|
default AutoMLChannel.Builder |
dataSource(Consumer<AutoMLDataSource.Builder> dataSource)
The data source.
|
AutoMLChannel.Builder |
targetAttributeName(String targetAttributeName)
The name of the target variable in supervised learning, a.k.a.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
AutoMLChannel.Builder dataSource(AutoMLDataSource dataSource)
The data source.
dataSource
- The data source.default AutoMLChannel.Builder dataSource(Consumer<AutoMLDataSource.Builder> dataSource)
The data source.
This is a convenience that creates an instance of theAutoMLDataSource.Builder
avoiding the need to
create one manually via AutoMLDataSource.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to dataSource(AutoMLDataSource)
.dataSource
- a consumer that will call methods on AutoMLDataSource.Builder
dataSource(AutoMLDataSource)
AutoMLChannel.Builder compressionType(String compressionType)
You can use Gzip or None. The default value is None.
compressionType
- You can use Gzip or None. The default value is None.CompressionType
,
CompressionType
AutoMLChannel.Builder compressionType(CompressionType compressionType)
You can use Gzip or None. The default value is None.
compressionType
- You can use Gzip or None. The default value is None.CompressionType
,
CompressionType
AutoMLChannel.Builder targetAttributeName(String targetAttributeName)
The name of the target variable in supervised learning, a.k.a. 'y'.
targetAttributeName
- The name of the target variable in supervised learning, a.k.a. 'y'.Copyright © 2020. All rights reserved.