Interface CfnDBProxy.ITagFormatProperty
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITagFormatProperty
Syntax (vb)
Public Interface ITagFormatProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var tagFormatProperty = new TagFormatProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
Key | A key is the required name of the tag. |
Value | A value is the optional value of the tag. |
Properties
Key
A key is the required name of the tag.
virtual string Key { get; }
Property Value
System.
Remarks
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
A value is the optional value of the tag.
virtual string Value { get; }
Property Value
System.
Remarks
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}.:/=+-@]*)$").