interface CrossRegionCopyDeprecateRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DLM.CfnLifecyclePolicyPropsMixin.CrossRegionCopyDeprecateRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdlm#CfnLifecyclePolicyPropsMixin_CrossRegionCopyDeprecateRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dlm.CfnLifecyclePolicyPropsMixin.CrossRegionCopyDeprecateRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_dlm.CfnLifecyclePolicyPropsMixin.CrossRegionCopyDeprecateRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dlm » CfnLifecyclePolicyPropsMixin » CrossRegionCopyDeprecateRuleProperty |
[Custom AMI policies only] Specifies an AMI deprecation rule for cross-Region AMI copies created by an AMI policy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dlm as dlm } from '@aws-cdk/cfn-property-mixins';
const crossRegionCopyDeprecateRuleProperty: dlm.CfnLifecyclePolicyPropsMixin.CrossRegionCopyDeprecateRuleProperty = {
interval: 123,
intervalUnit: 'intervalUnit',
};
Properties
| Name | Type | Description |
|---|---|---|
| interval? | number | The period after which to deprecate the cross-Region AMI copies. |
| interval | string | The unit of time in which to measure the Interval . |
interval?
Type:
number
(optional)
The period after which to deprecate the cross-Region AMI copies.
The period must be less than or equal to the cross-Region AMI copy retention period, and it can't be greater than 10 years. This is equivalent to 120 months, 520 weeks, or 3650 days.
intervalUnit?
Type:
string
(optional)
The unit of time in which to measure the Interval .
For example, to deprecate a cross-Region AMI copy after 3 months, specify Interval=3 and IntervalUnit=MONTHS .

.NET
Go
Java
Python
TypeScript