[][src]Struct rusoto_sagemaker::ImageVersion

pub struct ImageVersion {
    pub creation_time: f64,
    pub failure_reason: Option<String>,
    pub image_arn: String,
    pub image_version_arn: String,
    pub image_version_status: String,
    pub last_modified_time: f64,
    pub version: i64,
}

A version of a SageMaker Image. A version represents an existing container image.

Fields

creation_time: f64

When the version was created.

failure_reason: Option<String>

When a create or delete operation fails, the reason for the failure.

image_arn: String

The Amazon Resource Name (ARN) of the image the version is based on.

image_version_arn: String

The ARN of the version.

image_version_status: String

The status of the version.

last_modified_time: f64

When the version was last modified.

version: i64

The version number.

Trait Implementations

impl Clone for ImageVersion[src]

impl Debug for ImageVersion[src]

impl Default for ImageVersion[src]

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

impl PartialEq<ImageVersion> for ImageVersion[src]

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