LifecyclePolicyReference
- class aws_cdk.interfaces.aws_dlm.LifecyclePolicyReference(*, lifecycle_policy_arn, policy_id)
Bases:
objectA reference to a LifecyclePolicy resource.
- Parameters:
lifecycle_policy_arn (
str) – The ARN of the LifecyclePolicy resource.policy_id (
str) – The PolicyId of the LifecyclePolicy resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_dlm as interfaces_dlm lifecycle_policy_reference = interfaces_dlm.LifecyclePolicyReference( lifecycle_policy_arn="lifecyclePolicyArn", policy_id="policyId" )
Attributes
- lifecycle_policy_arn
The ARN of the LifecyclePolicy resource.
- policy_id
The PolicyId of the LifecyclePolicy resource.