Interface CfnBackupPlan.CopyActionResourceTypeProperty

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

@Stability(Stable) public static interface CfnBackupPlan.CopyActionResourceTypeProperty extends software.amazon.jsii.JsiiSerializable
Copies backups created by a backup rule to another vault.

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.*;
 CopyActionResourceTypeProperty copyActionResourceTypeProperty = CopyActionResourceTypeProperty.builder()
         .destinationBackupVaultArn("destinationBackupVaultArn")
         // the properties below are optional
         .lifecycle(LifecycleResourceTypeProperty.builder()
                 .deleteAfterDays(123)
                 .moveToColdStorageAfterDays(123)
                 .optInToArchiveForSupportedResources(false)
                 .build())
         .build();
 

See Also: