Show / Hide Table of Contents

Class CfnDBProxy.TagFormatProperty

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

Inheritance
object
CfnDBProxy.TagFormatProperty
Implements
CfnDBProxy.ITagFormatProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBProxy.TagFormatProperty : CfnDBProxy.ITagFormatProperty
Syntax (vb)
Public Class CfnDBProxy.TagFormatProperty 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 .

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

Constructors

TagFormatProperty()

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

Properties

Key

A key is the required name of the tag.

Value

A value is the optional value of the tag.

Constructors

TagFormatProperty()

Metadata assigned to an Amazon RDS resource consisting of a key-value pair.

public TagFormatProperty()
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"
             };

Properties

Key

A key is the required name of the tag.

public string? Key { get; set; }
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.

public string? Value { get; set; }
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

Implements

CfnDBProxy.ITagFormatProperty
Back to top Generated by DocFX