#[non_exhaustive]
pub struct CreateAutoMlJobInput { pub auto_ml_job_name: Option<String>, pub input_data_config: Option<Vec<AutoMlChannel>>, pub output_data_config: Option<AutoMlOutputDataConfig>, pub problem_type: Option<ProblemType>, pub auto_ml_job_objective: Option<AutoMlJobObjective>, pub auto_ml_job_config: Option<AutoMlJobConfig>, pub role_arn: Option<String>, pub generate_candidate_definitions_only: Option<bool>, pub tags: Option<Vec<Tag>>, pub model_deploy_config: Option<ModelDeployConfig>, }

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§auto_ml_job_name: Option<String>

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

§input_data_config: Option<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 HyperParameterTrainingJobDefinition. Format(s) supported: CSV, Parquet. A minimum of 500 rows is required for the training dataset. There is not a minimum number of rows required for the validation dataset.

§output_data_config: Option<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<ProblemType>

Defines the type of supervised learning problem available for the candidates. For more information, see Amazon SageMaker Autopilot problem types.

§auto_ml_job_objective: Option<AutoMlJobObjective>

Specifies a metric to minimize or maximize as the objective of a job. If not specified, the default objective metric depends on the problem type. See AutoMLJobObjective for the default values.

§auto_ml_job_config: Option<AutoMlJobConfig>

A collection of settings used to configure an AutoML job.

§role_arn: Option<String>

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

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

§tags: Option<Vec<Tag>>

An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web ServicesResources. Tag keys must be unique per resource.

§model_deploy_config: Option<ModelDeployConfig>

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

Implementations§

source§

impl CreateAutoMlJobInput

source

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.

source

pub fn input_data_config(&self) -> &[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 HyperParameterTrainingJobDefinition. Format(s) supported: CSV, Parquet. A minimum of 500 rows is required for the training dataset. There is not a minimum number of rows required for the validation dataset.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .input_data_config.is_none().

source

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. Format(s) supported: CSV.

source

pub fn problem_type(&self) -> Option<&ProblemType>

Defines the type of supervised learning problem available for the candidates. For more information, see Amazon SageMaker Autopilot problem types.

source

pub fn auto_ml_job_objective(&self) -> Option<&AutoMlJobObjective>

Specifies a metric to minimize or maximize as the objective of a job. If not specified, the default objective metric depends on the problem type. See AutoMLJobObjective for the default values.

source

pub fn auto_ml_job_config(&self) -> Option<&AutoMlJobConfig>

A collection of settings used to configure an AutoML job.

source

pub fn role_arn(&self) -> Option<&str>

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

source

pub fn generate_candidate_definitions_only(&self) -> Option<bool>

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

source

pub fn tags(&self) -> &[Tag]

An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web ServicesResources. Tag keys must be unique per resource.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().

source

pub fn model_deploy_config(&self) -> Option<&ModelDeployConfig>

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

source§

impl CreateAutoMlJobInput

source

pub fn builder() -> CreateAutoMlJobInputBuilder

Creates a new builder-style object to manufacture CreateAutoMlJobInput.

Trait Implementations§

source§

impl Clone for CreateAutoMlJobInput

source§

fn clone(&self) -> CreateAutoMlJobInput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CreateAutoMlJobInput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for CreateAutoMlJobInput

source§

fn eq(&self, other: &CreateAutoMlJobInput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for CreateAutoMlJobInput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<Unshared, Shared> IntoShared<Shared> for Unsharedwhere Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more