[][src]Struct rusoto_sagemaker::CompilationJobSummary

pub struct CompilationJobSummary {
    pub compilation_end_time: Option<f64>,
    pub compilation_job_arn: String,
    pub compilation_job_name: String,
    pub compilation_job_status: String,
    pub compilation_start_time: Option<f64>,
    pub compilation_target_device: Option<String>,
    pub compilation_target_platform_accelerator: Option<String>,
    pub compilation_target_platform_arch: Option<String>,
    pub compilation_target_platform_os: Option<String>,
    pub creation_time: f64,
    pub last_modified_time: Option<f64>,
}

A summary of a model compilation job.

Fields

compilation_end_time: Option<f64>

The time when the model compilation job completed.

compilation_job_arn: String

The Amazon Resource Name (ARN) of the model compilation job.

compilation_job_name: String

The name of the model compilation job that you want a summary for.

compilation_job_status: String

The status of the model compilation job.

compilation_start_time: Option<f64>

The time when the model compilation job started.

compilation_target_device: Option<String>

The type of device that the model will run on after the compilation job has completed.

compilation_target_platform_accelerator: Option<String>

The type of accelerator that the model will run on after the compilation job has completed.

compilation_target_platform_arch: Option<String>

The type of architecture that the model will run on after the compilation job has completed.

compilation_target_platform_os: Option<String>

The type of OS that the model will run on after the compilation job has completed.

creation_time: f64

The time when the model compilation job was created.

last_modified_time: Option<f64>

The time when the model compilation job was last modified.

Trait Implementations

impl Clone for CompilationJobSummary[src]

impl Debug for CompilationJobSummary[src]

impl Default for CompilationJobSummary[src]

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

impl PartialEq<CompilationJobSummary> for CompilationJobSummary[src]

impl StructuralPartialEq for CompilationJobSummary[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.