Interface CfnLifecyclePolicy.RetentionArchiveTierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLifecyclePolicy.RetentionArchiveTierProperty.Jsii$Proxy
- Enclosing class:
CfnLifecyclePolicy
Once the archive retention threshold is met, the snapshots are permanently deleted from the archive tier.
The archive retention rule must retain snapshots in the archive tier for a minimum of 90 days.
For count-based schedules , you must specify Count . For age-based schedules , you must specify Interval and IntervalUnit .
For more information about using snapshot archiving, see Considerations for snapshot lifecycle policies .
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.*; RetentionArchiveTierProperty retentionArchiveTierProperty = RetentionArchiveTierProperty.builder() .count(123) .interval(123) .intervalUnit("intervalUnit") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLifecyclePolicy.RetentionArchiveTierProperty
static final class
An implementation forCfnLifecyclePolicy.RetentionArchiveTierProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
getCount()
The maximum number of snapshots to retain in the archive storage tier for each volume.default Number
Specifies the period of time to retain snapshots in the archive tier.default String
The unit of time in which to measure the Interval .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCount
The maximum number of snapshots to retain in the archive storage tier for each volume.The count must ensure that each snapshot remains in the archive tier for at least 90 days. For example, if the schedule creates snapshots every 30 days, you must specify a count of 3 or more to ensure that each snapshot is archived for at least 90 days.
- See Also:
-
getInterval
Specifies the period of time to retain snapshots in the archive tier.After this period expires, the snapshot is permanently deleted.
- See Also:
-
getIntervalUnit
The unit of time in which to measure the Interval .For example, to retain a snapshots in the archive tier for 6 months, specify
Interval=6
andIntervalUnit=MONTHS
.- See Also:
-
builder
-