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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRestoreTestingSelection.KeyValueProperty
static final class
An implementation forCfnRestoreTestingSelection.KeyValueProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The tag key (String). The key can't start withaws:
.Length Constraints: Minimum length of 1. Maximum length of 128.
Pattern:
^(?![aA]{1}[wW]{1}[sS]{1}:)([\p{L}\p{Z}\p{N}_.:/=+\-@]+)$
- See Also:
-
getValue
The value of the key.Length Constraints: Maximum length of 256.
Pattern:
^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
- See Also:
-
builder
-