[][src]Struct rusoto_sagemaker::CreateAutoMLJobRequest

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 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.

auto_ml_job_name: String

Identifies an AutoPilot job. Must be unique to your account and is case-insensitive.

auto_ml_job_objective: Option<AutoMLJobObjective>

Defines the job's objective. You provide a MetricName and AutoML will infer minimize or maximize. If this is not provided, the most commonly used ObjectiveMetric for problem type will be selected.

generate_candidate_definitions_only: Option<bool>

This will generate possible candidates without training a model. A candidate is a combination of data preprocessors, algorithms, and algorithm parameter settings.

input_data_config: Vec<AutoMLChannel>

Similar to InputDataConfig supported by Tuning. Format(s) supported: CSV. Minimum of 1000 rows.

output_data_config: AutoMLOutputDataConfig

Similar to OutputDataConfig supported by Tuning. Format(s) supported: CSV.

problem_type: Option<String>

Defines the kind of preprocessing and algorithms intended for the candidates. Options include: BinaryClassification, MulticlassClassification, and Regression.

role_arn: String

The ARN of the role that will be 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

impl Clone for CreateAutoMLJobRequest[src]

impl Debug for CreateAutoMLJobRequest[src]

impl Default for CreateAutoMLJobRequest[src]

impl PartialEq<CreateAutoMLJobRequest> for CreateAutoMLJobRequest[src]

impl Serialize for CreateAutoMLJobRequest[src]

impl StructuralPartialEq for CreateAutoMLJobRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.