logo
pub struct CreateAutoMLJobRequest {
    pub auto_ml_job_config: Option<AutoMLJobConfig>,
    pub auto_ml_job_name: String,
    pub auto_ml_job_objective: Option<AutoMLJobObjective>,
    pub generate_candidate_definitions_only: Option<bool>,
    pub input_data_config: Vec<AutoMLChannel>,
    pub model_deploy_config: Option<ModelDeployConfig>,
    pub output_data_config: AutoMLOutputDataConfig,
    pub problem_type: Option<String>,
    pub role_arn: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

auto_ml_job_config: Option<AutoMLJobConfig>

Contains CompletionCriteria and SecurityConfig settings for the AutoML job.

auto_ml_job_name: String

Identifies an Autopilot job. The name must be unique to your account and is case-insensitive.

auto_ml_job_objective: Option<AutoMLJobObjective>

Defines the objective metric used to measure the predictive quality of an AutoML job. You provide an AutoMLJobObjective$MetricName and Autopilot infers whether to minimize or maximize it.

generate_candidate_definitions_only: Option<bool>

Generates possible candidates without training the models. A candidate is a combination of data preprocessors, algorithms, and algorithm parameter settings.

input_data_config: Vec<AutoMLChannel>

An array of channel objects that describes the input data and its location. Each channel is a named input source. Similar to InputDataConfig supported by . Format(s) supported: CSV. Minimum of 500 rows.

model_deploy_config: Option<ModelDeployConfig>

Specifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.

output_data_config: AutoMLOutputDataConfig

Provides information about encryption and the Amazon S3 output path needed to store artifacts from an AutoML job. Format(s) supported: CSV.

problem_type: Option<String>

Defines the type of supervised learning available for the candidates. Options include: BinaryClassification, MulticlassClassification, and Regression. For more information, see Amazon SageMaker Autopilot problem types and algorithm support.

role_arn: String

The ARN of the role that is used to access the data.

tags: Option<Vec<Tag>>

Each tag consists of a key and an optional value. Tag keys must be unique per resource.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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