Interface CfnBackupSelection.ConditionsProperty

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

@Stability(Stable) public static interface CfnBackupSelection.ConditionsProperty extends software.amazon.jsii.JsiiSerializable
Contains information about which resources to include or exclude from a backup plan using their tags.

Conditions are case sensitive.

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.*;
 ConditionsProperty conditionsProperty = ConditionsProperty.builder()
         .stringEquals(List.of(ConditionParameterProperty.builder()
                 .conditionKey("conditionKey")
                 .conditionValue("conditionValue")
                 .build()))
         .stringLike(List.of(ConditionParameterProperty.builder()
                 .conditionKey("conditionKey")
                 .conditionValue("conditionValue")
                 .build()))
         .stringNotEquals(List.of(ConditionParameterProperty.builder()
                 .conditionKey("conditionKey")
                 .conditionValue("conditionValue")
                 .build()))
         .stringNotLike(List.of(ConditionParameterProperty.builder()
                 .conditionKey("conditionKey")
                 .conditionValue("conditionValue")
                 .build()))
         .build();
 

See Also: