Struct aws_sdk_sagemaker::types::builders::AutoMlChannelBuilder
source · #[non_exhaustive]pub struct AutoMlChannelBuilder { /* private fields */ }
Expand description
A builder for AutoMlChannel
.
Implementations§
source§impl AutoMlChannelBuilder
impl AutoMlChannelBuilder
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
.
Trait Implementations§
source§impl Clone for AutoMlChannelBuilder
impl Clone for AutoMlChannelBuilder
source§fn clone(&self) -> AutoMlChannelBuilder
fn clone(&self) -> AutoMlChannelBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutoMlChannelBuilder
impl Debug for AutoMlChannelBuilder
source§impl Default for AutoMlChannelBuilder
impl Default for AutoMlChannelBuilder
source§fn default() -> AutoMlChannelBuilder
fn default() -> AutoMlChannelBuilder
source§impl PartialEq<AutoMlChannelBuilder> for AutoMlChannelBuilder
impl PartialEq<AutoMlChannelBuilder> for AutoMlChannelBuilder
source§fn eq(&self, other: &AutoMlChannelBuilder) -> bool
fn eq(&self, other: &AutoMlChannelBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.