Struct aws_sdk_sagemaker::model::auto_ml_channel::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for AutoMlChannel
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn data_source(self, input: AutoMlDataSource) -> Self
pub fn data_source(self, input: AutoMlDataSource) -> Self
The data source for an AutoML channel.
sourcepub fn set_data_source(self, input: Option<AutoMlDataSource>) -> Self
pub fn set_data_source(self, input: Option<AutoMlDataSource>) -> Self
The data source for an AutoML channel.
sourcepub fn compression_type(self, input: CompressionType) -> Self
pub fn compression_type(self, input: CompressionType) -> Self
You can use Gzip
or None
. The default value is None
.
sourcepub fn set_compression_type(self, input: Option<CompressionType>) -> Self
pub fn set_compression_type(self, input: Option<CompressionType>) -> Self
You can use Gzip
or None
. The default value is None
.
sourcepub fn target_attribute_name(self, input: impl Into<String>) -> Self
pub fn target_attribute_name(self, input: impl Into<String>) -> Self
The name of the target variable in supervised learning, usually represented by 'y'.
sourcepub fn set_target_attribute_name(self, input: Option<String>) -> Self
pub fn set_target_attribute_name(self, input: Option<String>) -> Self
The name of the target variable in supervised learning, usually represented by 'y'.
sourcepub fn content_type(self, input: impl Into<String>) -> Self
pub fn content_type(self, input: impl Into<String>) -> Self
The content type of the data from the input source. You can use text/csv;header=present
or x-application/vnd.amazon+parquet
. The default value is text/csv;header=present
.
sourcepub fn set_content_type(self, input: Option<String>) -> Self
pub fn set_content_type(self, input: Option<String>) -> Self
The content type of the data from the input source. You can use text/csv;header=present
or x-application/vnd.amazon+parquet
. The default value is text/csv;header=present
.
sourcepub fn channel_type(self, input: AutoMlChannelType) -> Self
pub fn channel_type(self, input: AutoMlChannelType) -> Self
The channel type (optional) is an enum
string. The default value is training
. Channels for training and validation must share the same ContentType
and TargetAttributeName
. For information on specifying training and validation channel types, see How to specify training and validation datasets
.
sourcepub fn set_channel_type(self, input: Option<AutoMlChannelType>) -> Self
pub fn set_channel_type(self, input: Option<AutoMlChannelType>) -> Self
The channel type (optional) is an enum
string. The default value is training
. Channels for training and validation must share the same ContentType
and TargetAttributeName
. For information on specifying training and validation channel types, see How to specify training and validation datasets
.
sourcepub fn build(self) -> AutoMlChannel
pub fn build(self) -> AutoMlChannel
Consumes the builder and constructs a AutoMlChannel
.