[][src]Struct rusoto_sagemaker::DescribeHyperParameterTuningJobResponse

pub struct DescribeHyperParameterTuningJobResponse {
    pub best_training_job: Option<HyperParameterTrainingJobSummary>,
    pub creation_time: f64,
    pub failure_reason: Option<String>,
    pub hyper_parameter_tuning_end_time: Option<f64>,
    pub hyper_parameter_tuning_job_arn: String,
    pub hyper_parameter_tuning_job_config: HyperParameterTuningJobConfig,
    pub hyper_parameter_tuning_job_name: String,
    pub hyper_parameter_tuning_job_status: String,
    pub last_modified_time: Option<f64>,
    pub objective_status_counters: ObjectiveStatusCounters,
    pub training_job_definition: HyperParameterTrainingJobDefinition,
    pub training_job_status_counters: TrainingJobStatusCounters,
}

Fields

A TrainingJobSummary object that describes the training job that completed with the best current HyperParameterTuningJobObjective.

The date and time that the tuning job started.

If the tuning job failed, the reason it failed.

The date and time that the tuning job ended.

The Amazon Resource Name (ARN) of the tuning job.

The HyperParameterTuningJobConfig object that specifies the configuration of the tuning job.

The name of the tuning job.

The status of the tuning job: InProgress, Completed, Failed, Stopping, or Stopped.

The date and time that the status of the tuning job was modified.

The ObjectiveStatusCounters object that specifies the number of training jobs, categorized by the status of their final objective metric, that this tuning job launched.

The HyperParameterTrainingJobDefinition object that specifies the definition of the training jobs that this tuning job launches.

The TrainingJobStatusCounters object that specifies the number of training jobs, categorized by status, that this tuning job launched.

Trait Implementations

impl Clone for DescribeHyperParameterTuningJobResponse
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeHyperParameterTuningJobResponse
[src]

impl PartialEq<DescribeHyperParameterTuningJobResponse> for DescribeHyperParameterTuningJobResponse
[src]

impl Debug for DescribeHyperParameterTuningJobResponse
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

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

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T