[][src]Struct rusoto_sagemaker::DescribeAutoMLJobResponse

pub struct DescribeAutoMLJobResponse {
    pub auto_ml_job_arn: String,
    pub auto_ml_job_artifacts: Option<AutoMLJobArtifacts>,
    pub auto_ml_job_config: Option<AutoMLJobConfig>,
    pub auto_ml_job_name: String,
    pub auto_ml_job_objective: Option<AutoMLJobObjective>,
    pub auto_ml_job_secondary_status: String,
    pub auto_ml_job_status: String,
    pub best_candidate: Option<AutoMLCandidate>,
    pub creation_time: f64,
    pub end_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub generate_candidate_definitions_only: Option<bool>,
    pub input_data_config: Vec<AutoMLChannel>,
    pub last_modified_time: f64,
    pub output_data_config: AutoMLOutputDataConfig,
    pub problem_type: Option<String>,
    pub resolved_attributes: Option<ResolvedAttributes>,
    pub role_arn: String,
}

Fields

auto_ml_job_arn: String

Returns the job's ARN.

auto_ml_job_artifacts: Option<AutoMLJobArtifacts>

Returns information on the job's artifacts found in AutoMLJobArtifacts.

auto_ml_job_config: Option<AutoMLJobConfig>

Returns the job's config.

auto_ml_job_name: String

Returns the name of a job.

auto_ml_job_objective: Option<AutoMLJobObjective>

Returns the job's objective.

auto_ml_job_secondary_status: String

Returns the job's AutoMLJobSecondaryStatus.

auto_ml_job_status: String

Returns the job's AutoMLJobStatus.

best_candidate: Option<AutoMLCandidate>

Returns the job's BestCandidate.

creation_time: f64

Returns the job's creation time.

end_time: Option<f64>

Returns the job's end time.

failure_reason: Option<String>

Returns the job's FailureReason.

generate_candidate_definitions_only: Option<bool>

Returns the job's output from GenerateCandidateDefinitionsOnly.

input_data_config: Vec<AutoMLChannel>

Returns the job's input data config.

last_modified_time: f64

Returns the job's last modified time.

output_data_config: AutoMLOutputDataConfig

Returns the job's output data config.

problem_type: Option<String>

Returns the job's problem type.

resolved_attributes: Option<ResolvedAttributes>

This contains ProblemType, AutoMLJobObjective and CompletionCriteria. They're auto-inferred values, if not provided by you. If you do provide them, then they'll be the same as provided.

role_arn: String

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that has read permission to the input data location and write permission to the output data location in Amazon S3.

Trait Implementations

impl Clone for DescribeAutoMLJobResponse[src]

impl Debug for DescribeAutoMLJobResponse[src]

impl Default for DescribeAutoMLJobResponse[src]

impl<'de> Deserialize<'de> for DescribeAutoMLJobResponse[src]

impl PartialEq<DescribeAutoMLJobResponse> for DescribeAutoMLJobResponse[src]

impl StructuralPartialEq for DescribeAutoMLJobResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.