[][src]Struct rusoto_imagebuilder::ComponentSummary

pub struct ComponentSummary {
    pub arn: Option<String>,
    pub change_description: Option<String>,
    pub date_created: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub platform: Option<String>,
    pub supported_os_versions: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
    pub type_: Option<String>,
    pub version: Option<String>,
}

A high-level summary of a component.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the component.

change_description: Option<String>

The change description of the component.

date_created: Option<String>

The date that the component was created.

description: Option<String>

The description of the component.

name: Option<String>

The name of the component.

owner: Option<String>

The owner of the component.

platform: Option<String>

The platform of the component.

supported_os_versions: Option<Vec<String>>

The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the parent image OS version during image recipe creation.

tags: Option<HashMap<String, String>>

The tags associated with the component.

type_: Option<String>

The type of the component denotes whether the component is used to build the image or only to test it.

version: Option<String>

The version of the component.

Trait Implementations

impl Clone for ComponentSummary[src]

impl Debug for ComponentSummary[src]

impl Default for ComponentSummary[src]

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

impl PartialEq<ComponentSummary> for ComponentSummary[src]

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