[][src]Struct rusoto_imagebuilder::DistributionConfigurationSummary

pub struct DistributionConfigurationSummary {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub regions: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
}

A high-level overview of a distribution configuration.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the distribution configuration.

date_created: Option<String>

The date on which the distribution configuration was created.

date_updated: Option<String>

The date on which the distribution configuration was updated.

description: Option<String>

The description of the distribution configuration.

name: Option<String>

The name of the distribution configuration.

regions: Option<Vec<String>>

A list of Regions where the container image is distributed to.

tags: Option<HashMap<String, String>>

The tags associated with the distribution configuration.

Trait Implementations

impl Clone for DistributionConfigurationSummary[src]

impl Debug for DistributionConfigurationSummary[src]

impl Default for DistributionConfigurationSummary[src]

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

impl PartialEq<DistributionConfigurationSummary> for DistributionConfigurationSummary[src]

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