Interface BackupSelectionProps

All Superinterfaces:
BackupSelectionOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BackupSelectionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-17T05:10:06.300Z") @Stability(Stable) public interface BackupSelectionProps extends software.amazon.jsii.JsiiSerializable, BackupSelectionOptions
Properties for a BackupSelection.

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.*;
 import software.amazon.awscdk.services.iam.*;
 BackupPlan backupPlan;
 BackupResource backupResource;
 Role role;
 BackupSelectionProps backupSelectionProps = BackupSelectionProps.builder()
         .backupPlan(backupPlan)
         .resources(List.of(backupResource))
         // the properties below are optional
         .allowRestores(false)
         .backupSelectionName("backupSelectionName")
         .disableDefaultBackupPolicy(false)
         .role(role)
         .build();