Interface CfnLifecyclePolicy.ArchiveRetainRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLifecyclePolicy.ArchiveRetainRuleProperty.Jsii$Proxy
- Enclosing class:
CfnLifecyclePolicy
@Stability(Stable)
public static interface CfnLifecyclePolicy.ArchiveRetainRuleProperty
extends software.amazon.jsii.JsiiSerializable
[Custom snapshot policies only] Specifies information about the archive storage tier retention period.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.dlm.*;
ArchiveRetainRuleProperty archiveRetainRuleProperty = ArchiveRetainRuleProperty.builder()
.retentionArchiveTier(RetentionArchiveTierProperty.builder()
.count(123)
.interval(123)
.intervalUnit("intervalUnit")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLifecyclePolicy.ArchiveRetainRulePropertystatic final classAn implementation forCfnLifecyclePolicy.ArchiveRetainRuleProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Information about retention period in the Amazon EBS Snapshots Archive.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRetentionArchiveTier
Information about retention period in the Amazon EBS Snapshots Archive.For more information, see Archive Amazon EBS snapshots .
Returns union: either
IResolvableorCfnLifecyclePolicy.RetentionArchiveTierProperty- See Also:
-
builder
-