[][src]Struct rusoto_sagemaker::DescribeImageResponse

pub struct DescribeImageResponse {
    pub creation_time: Option<f64>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub failure_reason: Option<String>,
    pub image_arn: Option<String>,
    pub image_name: Option<String>,
    pub image_status: Option<String>,
    pub last_modified_time: Option<f64>,
    pub role_arn: Option<String>,
}

Fields

creation_time: Option<f64>

When the image was created.

description: Option<String>

The description of the image.

display_name: Option<String>

The name of the image as displayed.

failure_reason: Option<String>

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

image_arn: Option<String>

The Amazon Resource Name (ARN) of the image.

image_name: Option<String>

The name of the image.

image_status: Option<String>

The status of the image.

last_modified_time: Option<f64>

When the image was last modified.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.

Trait Implementations

impl Clone for DescribeImageResponse[src]

impl Debug for DescribeImageResponse[src]

impl Default for DescribeImageResponse[src]

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

impl PartialEq<DescribeImageResponse> for DescribeImageResponse[src]

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