[][src]Struct rusoto_imagebuilder::OutputResources

pub struct OutputResources {
    pub amis: Option<Vec<Ami>>,
    pub containers: Option<Vec<Container>>,
}

The resources produced by this image.

Fields

amis: Option<Vec<Ami>>

The EC2 AMIs created by this image.

containers: Option<Vec<Container>>

Container images that the pipeline has generated and stored in the output repository.

Trait Implementations

impl Clone for OutputResources[src]

impl Debug for OutputResources[src]

impl Default for OutputResources[src]

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

impl PartialEq<OutputResources> for OutputResources[src]

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