Class CfnDBProxy.TagFormatProperty
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TagFormatProperty : Object, CfnDBProxy.ITagFormatProperty
Syntax (vb)
Public Class TagFormatProperty
Inherits Object
Implements CfnDBProxy.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
Constructors
TagFormatProperty() |
Properties
Key | A key is the required name of the tag. |
Value | A value is the optional value of the tag. |
Constructors
TagFormatProperty()
public TagFormatProperty()
Properties
Key
A key is the required name of the tag.
public string Key { get; set; }
Property Value
System.String
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.
public string Value { get; set; }
Property Value
System.String
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}.:/=+-@]*)$").