Interface CfnBackupPlan.LifecycleResourceTypeProperty

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

@Stability(Stable) public static interface CfnBackupPlan.LifecycleResourceTypeProperty extends software.amazon.jsii.JsiiSerializable
Specifies an object containing an array of Transition objects that determine how long in days before a recovery point transitions to cold storage or is deleted.

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.backup.*;
 LifecycleResourceTypeProperty lifecycleResourceTypeProperty = LifecycleResourceTypeProperty.builder()
         .deleteAfterDays(123)
         .moveToColdStorageAfterDays(123)
         .build();