[][src]Struct rusoto_imagebuilder::ImageRecipeSummary

pub struct ImageRecipeSummary {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub parent_image: Option<String>,
    pub platform: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

A summary of an image recipe.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the image recipe.

date_created: Option<String>

The date on which this image recipe was created.

name: Option<String>

The name of the image recipe.

owner: Option<String>

The owner of the image recipe.

parent_image: Option<String>

The parent image of the image recipe.

platform: Option<String>

The platform of the image recipe.

tags: Option<HashMap<String, String>>

The tags of the image recipe.

Trait Implementations

impl Clone for ImageRecipeSummary[src]

impl Debug for ImageRecipeSummary[src]

impl Default for ImageRecipeSummary[src]

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

impl PartialEq<ImageRecipeSummary> for ImageRecipeSummary[src]

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