Interface CfnRestoreTestingSelection.KeyValueProperty

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

@Stability(Stable) public static interface CfnRestoreTestingSelection.KeyValueProperty extends software.amazon.jsii.JsiiSerializable
Pair of two related strings.

Allowed characters are letters, white space, and numbers that can be represented in UTF-8 and the following characters: + - = . _ : /

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.*;
 KeyValueProperty keyValueProperty = KeyValueProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: