[][src]Struct rusoto_imagebuilder::Distribution

pub struct Distribution {
    pub ami_distribution_configuration: Option<AmiDistributionConfiguration>,
    pub container_distribution_configuration: Option<ContainerDistributionConfiguration>,
    pub license_configuration_arns: Option<Vec<String>>,
    pub region: String,
}

Defines the settings for a specific Region.

Fields

ami_distribution_configuration: Option<AmiDistributionConfiguration>

The specific AMI settings (for example, launch permissions, AMI tags).

container_distribution_configuration: Option<ContainerDistributionConfiguration>

Container distribution settings for encryption, licensing, and sharing in a specific Region.

license_configuration_arns: Option<Vec<String>>

The License Manager Configuration to associate with the AMI in the specified Region.

region: String

The target Region.

Trait Implementations

impl Clone for Distribution[src]

impl Debug for Distribution[src]

impl Default for Distribution[src]

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

impl PartialEq<Distribution> for Distribution[src]

impl Serialize for Distribution[src]

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