Show / Hide Table of Contents

Class Tag

Tag.

Inheritance
object
Tag
Implements
ITag
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.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class Tag : ITag
Syntax (vb)
Public Class Tag Implements ITag
Remarks

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.S3;

            var tag = new Tag {
                Key = "key",
                Value = "value"
            };

Synopsis

Constructors

Tag()

Tag.

Properties

Key

key to e tagged.

Value

additional value.

Constructors

Tag()

Tag.

public Tag()
Remarks

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.S3;

            var tag = new Tag {
                Key = "key",
                Value = "value"
            };

Properties

Key

key to e tagged.

public string Key { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Value

additional value.

public string Value { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ITag
Back to top Generated by DocFX