interface TagFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnDBProxy.TagFormatProperty |
Java | software.amazon.awscdk.services.rds.CfnDBProxy.TagFormatProperty |
Python | aws_cdk.aws_rds.CfnDBProxy.TagFormatProperty |
TypeScript | @aws-cdk/aws-rds » CfnDBProxy » TagFormatProperty |
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 * as rds from '@aws-cdk/aws-rds';
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 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}.:/=+\-]*)$").
value?
Type:
string
(optional)
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}.:/=+\-]*)$").

.NET
Java
Python
TypeScript