Interface BackupSelectionProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:26.071Z") @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();