interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DLM.CfnLifecyclePolicyPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdlm#CfnLifecyclePolicyPropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dlm.CfnLifecyclePolicyPropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_dlm.CfnLifecyclePolicyPropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dlm » CfnLifecyclePolicyPropsMixin » ActionProperty |
[Event-based policies only] Specifies an action for an event-based 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 actionProperty: dlm.CfnLifecyclePolicyPropsMixin.ActionProperty = {
crossRegionCopy: [{
encryptionConfiguration: {
cmkArn: 'cmkArn',
encrypted: false,
},
retainRule: {
interval: 123,
intervalUnit: 'intervalUnit',
},
target: 'target',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| cross | IResolvable | (IResolvable | Cross)[] | The rule for copying shared snapshots across Regions. |
| name? | string | A descriptive name for the action. |
crossRegionCopy?
Type:
IResolvable | (IResolvable | Cross)[]
(optional)
The rule for copying shared snapshots across Regions.
name?
Type:
string
(optional)
A descriptive name for the action.

.NET
Go
Java
Python
TypeScript