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>,
}
Expand description
Define and configure the output AMIs of the pipeline.
Fields§
The tags to apply to AMIs distributed to this Region.
description: Option<String>
The description of the distribution configuration.
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.
Trait Implementations§
Source§impl Clone for AmiDistributionConfiguration
impl Clone for AmiDistributionConfiguration
Source§fn clone(&self) -> AmiDistributionConfiguration
fn clone(&self) -> AmiDistributionConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AmiDistributionConfiguration
impl Debug for AmiDistributionConfiguration
Source§impl Default for AmiDistributionConfiguration
impl Default for AmiDistributionConfiguration
Source§fn default() -> AmiDistributionConfiguration
fn default() -> AmiDistributionConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AmiDistributionConfiguration
impl<'de> Deserialize<'de> for AmiDistributionConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AmiDistributionConfiguration
impl PartialEq for AmiDistributionConfiguration
Source§fn eq(&self, other: &AmiDistributionConfiguration) -> bool
fn eq(&self, other: &AmiDistributionConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AmiDistributionConfiguration
Auto Trait Implementations§
impl Freeze for AmiDistributionConfiguration
impl RefUnwindSafe for AmiDistributionConfiguration
impl Send for AmiDistributionConfiguration
impl Sync for AmiDistributionConfiguration
impl Unpin for AmiDistributionConfiguration
impl UnwindSafe for AmiDistributionConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more