interface TagFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBProxyPropsMixin.TagFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBProxyPropsMixin_TagFormatProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBProxyPropsMixin.TagFormatProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBProxyPropsMixin.TagFormatProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBProxyPropsMixin » 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 { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const tagFormatProperty: rds_mixins.CfnDBProxyPropsMixin.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}.:/=+\-@]*)$").

.NET
Go
Java
Python
TypeScript