Interface CfnBackupSelection.ConditionResourceTypeProperty

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

@Stability(Stable) public static interface CfnBackupSelection.ConditionResourceTypeProperty extends software.amazon.jsii.JsiiSerializable
Specifies an object that contains an array of triplets made up of a condition type (such as STRINGEQUALS ), a key, and a value.

Conditions are used to filter resources in a selection that is assigned to a backup plan.

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.*;
 ConditionResourceTypeProperty conditionResourceTypeProperty = ConditionResourceTypeProperty.builder()
         .conditionKey("conditionKey")
         .conditionType("conditionType")
         .conditionValue("conditionValue")
         .build();
 

See Also: