Interface CfnRestoreTestingSelection.ProtectedResourceConditionsProperty

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

@Stability(Stable) public static interface CfnRestoreTestingSelection.ProtectedResourceConditionsProperty extends software.amazon.jsii.JsiiSerializable
The conditions that you define for resources in your restore testing plan using tags.

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.*;
 ProtectedResourceConditionsProperty protectedResourceConditionsProperty = ProtectedResourceConditionsProperty.builder()
         .stringEquals(List.of(KeyValueProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .stringNotEquals(List.of(KeyValueProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: