Show / Hide Table of Contents

Class CfnTag

Inheritance
object
CfnTag
Implements
ICfnTag
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTag : ICfnTag
Syntax (vb)
Public Class CfnTag Implements ICfnTag
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.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;

             var cfnTag = new CfnTag {
                 Key = "key",
                 Value = "value"
             };

Synopsis

Constructors

CfnTag()

Properties

Key
Value

Constructors

CfnTag()

public CfnTag()
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.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;

             var cfnTag = new CfnTag {
                 Key = "key",
                 Value = "value"
             };

Properties

Key

public string Key { get; set; }
Property Value

string

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html#cfn-resource-tags-key

Value

public string Value { get; set; }
Property Value

string

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html#cfn-resource-tags-value

Implements

ICfnTag
Back to top Generated by DocFX