Class CfnLifecyclePolicy.ArchiveRetainRuleProperty
[Custom snapshot policies only] Specifies information about the archive storage tier retention period.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DLM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLifecyclePolicy.ArchiveRetainRuleProperty : CfnLifecyclePolicy.IArchiveRetainRuleProperty
Syntax (vb)
Public Class CfnLifecyclePolicy.ArchiveRetainRuleProperty Implements CfnLifecyclePolicy.IArchiveRetainRuleProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DLM;
var archiveRetainRuleProperty = new ArchiveRetainRuleProperty {
RetentionArchiveTier = new RetentionArchiveTierProperty {
Count = 123,
Interval = 123,
IntervalUnit = "intervalUnit"
}
};
Synopsis
Constructors
ArchiveRetainRuleProperty() | [Custom snapshot policies only] Specifies information about the archive storage tier retention period. |
Properties
RetentionArchiveTier | Information about retention period in the Amazon EBS Snapshots Archive. |
Constructors
ArchiveRetainRuleProperty()
[Custom snapshot policies only] Specifies information about the archive storage tier retention period.
public ArchiveRetainRuleProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DLM;
var archiveRetainRuleProperty = new ArchiveRetainRuleProperty {
RetentionArchiveTier = new RetentionArchiveTierProperty {
Count = 123,
Interval = 123,
IntervalUnit = "intervalUnit"
}
};
Properties
RetentionArchiveTier
Information about retention period in the Amazon EBS Snapshots Archive.
public object RetentionArchiveTier { get; set; }