[][src]Struct rusoto_imagebuilder::AmiDistributionConfiguration

pub struct AmiDistributionConfiguration {
    pub ami_tags: Option<HashMap<String, String>>,
    pub description: Option<String>,
    pub kms_key_id: Option<String>,
    pub launch_permission: Option<LaunchPermissionConfiguration>,
    pub name: Option<String>,
    pub target_account_ids: Option<Vec<String>>,
}

Define and configure the output AMIs of the pipeline.

Fields

ami_tags: Option<HashMap<String, String>>

The tags to apply to AMIs distributed to this Region.

description: Option<String>

The description of the distribution configuration. Minimum and maximum length are in characters.

kms_key_id: Option<String>

The KMS key identifier used to encrypt the distributed image.

launch_permission: Option<LaunchPermissionConfiguration>

Launch permissions can be used to configure which AWS accounts can use the AMI to launch instances.

name: Option<String>

The name of the distribution configuration.

target_account_ids: Option<Vec<String>>

The ID of an account to which you want to distribute an image.

Trait Implementations

impl Clone for AmiDistributionConfiguration[src]

impl Debug for AmiDistributionConfiguration[src]

impl Default for AmiDistributionConfiguration[src]

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

impl PartialEq<AmiDistributionConfiguration> for AmiDistributionConfiguration[src]

impl Serialize for AmiDistributionConfiguration[src]

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