interface TagFormatProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.RDS.CfnDBProxyEndpoint.TagFormatProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBProxyEndpoint_TagFormatProperty | 
|  Java | software.amazon.awscdk.services.rds.CfnDBProxyEndpoint.TagFormatProperty | 
|  Python | aws_cdk.aws_rds.CfnDBProxyEndpoint.TagFormatProperty | 
|  TypeScript | aws-cdk-lib»aws_rds»CfnDBProxyEndpoint»TagFormatProperty | 
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 { aws_rds as rds } from 'aws-cdk-lib';
const tagFormatProperty: rds.CfnDBProxyEndpoint.TagFormatProperty = {
  key: 'key',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| key? | string | A key is the required name of the tag. | 
| value? | string | A value is the optional value of the tag. | 
key?
Type:
string
(optional)
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: or rds: . The string can only contain only the set of Unicode letters, digits, white-space, '', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+\-@]*)$").
value?
Type:
string
(optional)
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: or rds: . The string can only contain only the set of Unicode letters, digits, white-space, '', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\p{L}\p{Z}\p{N}.:/=+\-@]*)$").
