interface ArchiveRetainRuleProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DLM.CfnLifecyclePolicy.ArchiveRetainRuleProperty | 
  Java | software.amazon.awscdk.services.dlm.CfnLifecyclePolicy.ArchiveRetainRuleProperty | 
  Python | aws_cdk.aws_dlm.CfnLifecyclePolicy.ArchiveRetainRuleProperty | 
  TypeScript  | @aws-cdk/aws-dlm » CfnLifecyclePolicy » ArchiveRetainRuleProperty | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as dlm from '@aws-cdk/aws-dlm';
const archiveRetainRuleProperty: dlm.CfnLifecyclePolicy.ArchiveRetainRuleProperty = {
  retentionArchiveTier: {
    count: 123,
    interval: 123,
    intervalUnit: 'intervalUnit',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| retention | IResolvable | Retention | CfnLifecyclePolicy.ArchiveRetainRuleProperty.RetentionArchiveTier. | 
retentionArchiveTier
Type:
IResolvable | Retention
CfnLifecyclePolicy.ArchiveRetainRuleProperty.RetentionArchiveTier.

 .NET
 Java
 Python
 TypeScript