[][src]Struct rusoto_imagebuilder::DistributionConfiguration

pub struct DistributionConfiguration {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub distributions: Option<Vec<Distribution>>,
    pub name: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub timeout_minutes: i64,
}

A distribution configuration.

Fields

arn: Option<String>

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

date_created: Option<String>

The date on which this distribution configuration was created.

date_updated: Option<String>

The date on which this distribution configuration was last updated.

description: Option<String>

The description of the distribution configuration.

distributions: Option<Vec<Distribution>>

The distributions of the distribution configuration.

name: Option<String>

The name of the distribution configuration.

tags: Option<HashMap<String, String>>

The tags of the distribution configuration.

timeout_minutes: i64

The maximum duration in minutes for this distribution configuration.

Trait Implementations

impl Clone for DistributionConfiguration[src]

impl Debug for DistributionConfiguration[src]

impl Default for DistributionConfiguration[src]

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

impl PartialEq<DistributionConfiguration> for DistributionConfiguration[src]

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