Struct aws_sdk_sagemaker::model::AutoMlChannel [−][src]
#[non_exhaustive]pub struct AutoMlChannel {
pub data_source: Option<AutoMlDataSource>,
pub compression_type: Option<CompressionType>,
pub target_attribute_name: Option<String>,
}
Expand description
A channel is a named input source that training algorithms can consume. For more information, see .
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_source: Option<AutoMlDataSource>
The data source for an AutoML channel.
compression_type: Option<CompressionType>
You can use Gzip
or None
. The default value is
None
.
target_attribute_name: Option<String>
The name of the target variable in supervised learning, usually represented by 'y'.
Implementations
The data source for an AutoML channel.
You can use Gzip
or None
. The default value is
None
.
The name of the target variable in supervised learning, usually represented by 'y'.
Creates a new builder-style object to manufacture AutoMlChannel
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AutoMlChannel
impl Send for AutoMlChannel
impl Sync for AutoMlChannel
impl Unpin for AutoMlChannel
impl UnwindSafe for AutoMlChannel
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more