Struct aws_sdk_dlm::types::CrossRegionCopyRule  
source · #[non_exhaustive]pub struct CrossRegionCopyRule { /* private fields */ }Expand description
[Snapshot and AMI policies only] Specifies a cross-Region copy rule for snapshot and AMI policies.
To specify a cross-Region copy action for event-based polices, use CrossRegionCopyAction.
Implementations§
source§impl CrossRegionCopyRule
 
impl CrossRegionCopyRule
sourcepub fn target_region(&self) -> Option<&str>
 
pub fn target_region(&self) -> Option<&str>
Avoid using this parameter when creating new policies. Instead, use Target to specify a target Region or a target Outpost for snapshot copies.
For policies created before the Target parameter was introduced, this parameter indicates the target Region for snapshot copies.
sourcepub fn target(&self) -> Option<&str>
 
pub fn target(&self) -> Option<&str>
The target Region or the Amazon Resource Name (ARN) of the target Outpost for the snapshot copies.
Use this parameter instead of TargetRegion. Do not specify both.
sourcepub fn encrypted(&self) -> Option<bool>
 
pub fn encrypted(&self) -> Option<bool>
To encrypt a copy of an unencrypted snapshot if encryption by default is not enabled, enable encryption using this parameter. Copies of encrypted snapshots are encrypted, even if this parameter is false or if encryption by default is not enabled.
sourcepub fn cmk_arn(&self) -> Option<&str>
 
pub fn cmk_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the KMS key to use for EBS encryption. If this parameter is not specified, the default KMS key for the account is used.
Indicates whether to copy all user-defined tags from the source snapshot or AMI to the cross-Region copy.
sourcepub fn retain_rule(&self) -> Option<&CrossRegionCopyRetainRule>
 
pub fn retain_rule(&self) -> Option<&CrossRegionCopyRetainRule>
The retention rule that indicates how long the cross-Region snapshot or AMI copies are to be retained in the destination Region.
sourcepub fn deprecate_rule(&self) -> Option<&CrossRegionCopyDeprecateRule>
 
pub fn deprecate_rule(&self) -> Option<&CrossRegionCopyDeprecateRule>
[AMI policies only] The AMI deprecation rule for cross-Region AMI copies created by the rule.
source§impl CrossRegionCopyRule
 
impl CrossRegionCopyRule
sourcepub fn builder() -> CrossRegionCopyRuleBuilder
 
pub fn builder() -> CrossRegionCopyRuleBuilder
Creates a new builder-style object to manufacture CrossRegionCopyRule.
Trait Implementations§
source§impl Clone for CrossRegionCopyRule
 
impl Clone for CrossRegionCopyRule
source§fn clone(&self) -> CrossRegionCopyRule
 
fn clone(&self) -> CrossRegionCopyRule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CrossRegionCopyRule
 
impl Debug for CrossRegionCopyRule
source§impl PartialEq<CrossRegionCopyRule> for CrossRegionCopyRule
 
impl PartialEq<CrossRegionCopyRule> for CrossRegionCopyRule
source§fn eq(&self, other: &CrossRegionCopyRule) -> bool
 
fn eq(&self, other: &CrossRegionCopyRule) -> bool
self and other values to be equal, and is used
by ==.