Interface CfnLifecyclePolicy.FastRestoreRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLifecyclePolicy.FastRestoreRuleProperty.Jsii$Proxy
Enclosing class:
CfnLifecyclePolicy

@Stability(Stable) public static interface CfnLifecyclePolicy.FastRestoreRuleProperty extends software.amazon.jsii.JsiiSerializable
[Snapshot policies only] Specifies a rule for enabling fast snapshot restore for snapshots created by snapshot policies.

You can enable fast snapshot restore based on either a count or a time interval.

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.*;
 FastRestoreRuleProperty fastRestoreRuleProperty = FastRestoreRuleProperty.builder()
         .availabilityZones(List.of("availabilityZones"))
         .count(123)
         .interval(123)
         .intervalUnit("intervalUnit")
         .build();
 
  • Method Details