[][src]Struct rusoto_imagebuilder::ImageSummary

pub struct ImageSummary {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub name: Option<String>,
    pub os_version: Option<String>,
    pub output_resources: Option<OutputResources>,
    pub owner: Option<String>,
    pub platform: Option<String>,
    pub state: Option<ImageState>,
    pub tags: Option<HashMap<String, String>>,
    pub type_: Option<String>,
    pub version: Option<String>,
}

An image summary.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the image.

date_created: Option<String>

The date on which this image was created.

name: Option<String>

The name of the image.

os_version: Option<String>

The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

output_resources: Option<OutputResources>

The output resources produced when creating this image.

owner: Option<String>

The owner of the image.

platform: Option<String>

The platform of the image.

state: Option<ImageState>

The state of the image.

tags: Option<HashMap<String, String>>

The tags of the image.

type_: Option<String>

Specifies whether this is an AMI or container image.

version: Option<String>

The version of the image.

Trait Implementations

impl Clone for ImageSummary[src]

impl Debug for ImageSummary[src]

impl Default for ImageSummary[src]

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

impl PartialEq<ImageSummary> for ImageSummary[src]

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