Interface CfnDBProxy.TagFormatProperty

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

@Stability(Stable) public static interface CfnDBProxy.TagFormatProperty extends software.amazon.jsii.JsiiSerializable
Metadata assigned to a DB proxy consisting of a key-value pair.

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();
 
  • Method Details

    • getKey

      @Stability(Stable) @Nullable default String getKey()
      A key is the required name of the tag.

      The string value can be 1-128 Unicode characters in length and can't be prefixed with aws: . The string can contain only the set of Unicode letters, digits, white-space, '', '.', '/', '=', '+', '-' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+-]*)$").

    • getValue

      @Stability(Stable) @Nullable default String getValue()
      A value is the optional value of the tag.

      The string value can be 1-256 Unicode characters in length and can't be prefixed with aws: . The string can contain only the set of Unicode letters, digits, white-space, '', '.', '/', '=', '+', '-' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+-]*)$").

    • builder

      @Stability(Stable) static CfnDBProxy.TagFormatProperty.Builder builder()
      Returns:
      a CfnDBProxy.TagFormatProperty.Builder of CfnDBProxy.TagFormatProperty