Interface CfnDBProxyEndpoint.TagFormatProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBProxyEndpoint.TagFormatProperty.Jsii$Proxy
- Enclosing class:
CfnDBProxyEndpoint
@Stability(Stable)
public static interface CfnDBProxyEndpoint.TagFormatProperty
extends software.amazon.jsii.JsiiSerializable
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide .
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.rds.*; TagFormatProperty tagFormatProperty = TagFormatProperty.builder() .key("key") .value("value") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBProxyEndpoint.TagFormatProperty
static final class
An implementation forCfnDBProxyEndpoint.TagFormatProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
A key is the required name of the tag.The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with
aws:
orrds:
. The string can only contain only the set of Unicode letters, digits, white-space, '', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+-@]*)$").- See Also:
-
getValue
A value is the optional value of the tag.The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with
aws:
orrds:
. The string can only contain only the set of Unicode letters, digits, white-space, '', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+-@]*)$").- See Also:
-
builder
-