interface TagFormatProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.CfnDBProxy.TagFormatProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBProxy_TagFormatProperty |
![]() | software.amazon.awscdk.services.rds.CfnDBProxy.TagFormatProperty |
![]() | aws_cdk.aws_rds.CfnDBProxy.TagFormatProperty |
![]() | aws-cdk-lib » aws_rds » CfnDBProxy » 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.CfnDBProxy.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}.:/=+\-@]*)$").