Interface CfnBackupSelectionMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBackupSelectionMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.267Z") @Stability(Stable) public interface CfnBackupSelectionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnBackupSelectionPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.backup.*;
 Object conditions;
 CfnBackupSelectionMixinProps cfnBackupSelectionMixinProps = CfnBackupSelectionMixinProps.builder()
         .backupPlanId("backupPlanId")
         .backupSelection(BackupSelectionResourceTypeProperty.builder()
                 .conditions(conditions)
                 .iamRoleArn("iamRoleArn")
                 .listOfTags(List.of(ConditionResourceTypeProperty.builder()
                         .conditionKey("conditionKey")
                         .conditionType("conditionType")
                         .conditionValue("conditionValue")
                         .build()))
                 .notResources(List.of("notResources"))
                 .resources(List.of("resources"))
                 .selectionName("selectionName")
                 .build())
         .build();
 

See Also: