#[non_exhaustive]pub struct CreateAutoMlJobV2Input { /* private fields */ }
Implementations§
source§impl CreateAutoMlJobV2Input
impl CreateAutoMlJobV2Input
sourcepub fn auto_ml_job_name(&self) -> Option<&str>
pub fn auto_ml_job_name(&self) -> Option<&str>
Identifies an Autopilot job. The name must be unique to your account and is case insensitive.
sourcepub fn auto_ml_job_input_data_config(&self) -> Option<&[AutoMlJobChannel]>
pub fn auto_ml_job_input_data_config(&self) -> Option<&[AutoMlJobChannel]>
An array of channel objects describing the input data and their location. Each channel is a named input source. Similar to InputDataConfig supported by CreateAutoMLJob
. The supported formats depend on the problem type:
-
ImageClassification: S3Prefix,
ManifestFile
,AugmentedManifestFile
-
TextClassification: S3Prefix
sourcepub fn output_data_config(&self) -> Option<&AutoMlOutputDataConfig>
pub fn output_data_config(&self) -> Option<&AutoMlOutputDataConfig>
Provides information about encryption and the Amazon S3 output path needed to store artifacts from an AutoML job.
sourcepub fn auto_ml_problem_type_config(&self) -> Option<&AutoMlProblemTypeConfig>
pub fn auto_ml_problem_type_config(&self) -> Option<&AutoMlProblemTypeConfig>
Defines the configuration settings of one of the supported problem types.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, such as by purpose, owner, or environment. For more information, see Tagging Amazon Web ServicesResources. Tag keys must be unique per resource.
sourcepub fn security_config(&self) -> Option<&AutoMlSecurityConfig>
pub fn security_config(&self) -> Option<&AutoMlSecurityConfig>
The security configuration for traffic encryption or Amazon VPC settings.
sourcepub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
pub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>
Specifies a metric to minimize or maximize as the objective of a job. For CreateAutoMLJobV2, only Accuracy
is supported.
sourcepub fn model_deploy_config(&self) -> Option<&ModelDeployConfig>
pub fn model_deploy_config(&self) -> Option<&ModelDeployConfig>
Specifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.
sourcepub fn data_split_config(&self) -> Option<&AutoMlDataSplitConfig>
pub fn data_split_config(&self) -> Option<&AutoMlDataSplitConfig>
This structure specifies how to split the data into train and validation datasets.
If you are using the V1 API (for example CreateAutoMLJob
) or the V2 API for Natural Language Processing problems (for example CreateAutoMLJobV2
with a TextClassificationJobConfig
problem type), the validation and training datasets must contain the same headers. Also, for V1 API jobs, the validation dataset must be less than 2 GB in size.
source§impl CreateAutoMlJobV2Input
impl CreateAutoMlJobV2Input
sourcepub fn builder() -> CreateAutoMlJobV2InputBuilder
pub fn builder() -> CreateAutoMlJobV2InputBuilder
Creates a new builder-style object to manufacture CreateAutoMlJobV2Input
.
source§impl CreateAutoMlJobV2Input
impl CreateAutoMlJobV2Input
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateAutoMLJobV2, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateAutoMLJobV2, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateAutoMLJobV2
>
Trait Implementations§
source§impl Clone for CreateAutoMlJobV2Input
impl Clone for CreateAutoMlJobV2Input
source§fn clone(&self) -> CreateAutoMlJobV2Input
fn clone(&self) -> CreateAutoMlJobV2Input
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateAutoMlJobV2Input
impl Debug for CreateAutoMlJobV2Input
source§impl PartialEq<CreateAutoMlJobV2Input> for CreateAutoMlJobV2Input
impl PartialEq<CreateAutoMlJobV2Input> for CreateAutoMlJobV2Input
source§fn eq(&self, other: &CreateAutoMlJobV2Input) -> bool
fn eq(&self, other: &CreateAutoMlJobV2Input) -> bool
self
and other
values to be equal, and is used
by ==
.