Show / Hide Table of Contents

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 CfnDBProxy.ITagFormatProperty
Syntax (vb)
Public Interface 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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-tagformat.html

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.

string? Key { get; }
Property Value

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}.:/=+-@]*)$").

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-tagformat.html#cfn-rds-dbproxy-tagformat-key

Value

A value is the optional value of the tag.

string? Value { get; }
Property Value

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}.:/=+-@]*)$").

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-tagformat.html#cfn-rds-dbproxy-tagformat-value

Back to top Generated by DocFX