#[non_exhaustive]pub struct AmiDistributionConfiguration { /* private fields */ }Expand description
Define and configure the output AMIs of the pipeline.
Implementations§
source§impl AmiDistributionConfiguration
 
impl AmiDistributionConfiguration
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
The description of the AMI distribution configuration. Minimum and maximum length are in characters.
sourcepub fn target_account_ids(&self) -> Option<&[String]>
 
pub fn target_account_ids(&self) -> Option<&[String]>
The ID of an account to which you want to distribute an image.
The tags to apply to AMIs distributed to this Region.
sourcepub fn kms_key_id(&self) -> Option<&str>
 
pub fn kms_key_id(&self) -> Option<&str>
The KMS key identifier used to encrypt the distributed image.
sourcepub fn launch_permission(&self) -> Option<&LaunchPermissionConfiguration>
 
pub fn launch_permission(&self) -> Option<&LaunchPermissionConfiguration>
Launch permissions can be used to configure which Amazon Web Services accounts can use the AMI to launch instances.
source§impl AmiDistributionConfiguration
 
impl AmiDistributionConfiguration
sourcepub fn builder() -> AmiDistributionConfigurationBuilder
 
pub fn builder() -> AmiDistributionConfigurationBuilder
Creates a new builder-style object to manufacture AmiDistributionConfiguration.
Trait Implementations§
source§impl Clone for AmiDistributionConfiguration
 
impl Clone for AmiDistributionConfiguration
source§fn clone(&self) -> AmiDistributionConfiguration
 
fn clone(&self) -> AmiDistributionConfiguration
Returns a copy 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 PartialEq<AmiDistributionConfiguration> for AmiDistributionConfiguration
 
impl PartialEq<AmiDistributionConfiguration> for AmiDistributionConfiguration
source§fn eq(&self, other: &AmiDistributionConfiguration) -> bool
 
fn eq(&self, other: &AmiDistributionConfiguration) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AmiDistributionConfiguration
Auto Trait Implementations§
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