[][src]Struct rusoto_sagemaker::EdgePackagingJobSummary

pub struct EdgePackagingJobSummary {
    pub compilation_job_name: Option<String>,
    pub creation_time: Option<f64>,
    pub edge_packaging_job_arn: String,
    pub edge_packaging_job_name: String,
    pub edge_packaging_job_status: String,
    pub last_modified_time: Option<f64>,
    pub model_name: Option<String>,
    pub model_version: Option<String>,
}

Summary of edge packaging job.

Fields

compilation_job_name: Option<String>

The name of the SageMaker Neo compilation job.

creation_time: Option<f64>

The timestamp of when the job was created.

edge_packaging_job_arn: String

The Amazon Resource Name (ARN) of the edge packaging job.

edge_packaging_job_name: String

The name of the edge packaging job.

edge_packaging_job_status: String

The status of the edge packaging job.

last_modified_time: Option<f64>

The timestamp of when the edge packaging job was last updated.

model_name: Option<String>

The name of the model.

model_version: Option<String>

The version of the model.

Trait Implementations

impl Clone for EdgePackagingJobSummary[src]

impl Debug for EdgePackagingJobSummary[src]

impl Default for EdgePackagingJobSummary[src]

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

impl PartialEq<EdgePackagingJobSummary> for EdgePackagingJobSummary[src]

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