Show / Hide Table of Contents

Class TagManagerOptions

Options to configure TagManager behavior.

Inheritance
object
TagManagerOptions
Implements
ITagManagerOptions
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 TagManagerOptions : ITagManagerOptions
Syntax (vb)
Public Class TagManagerOptions Implements ITagManagerOptions
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;

            var tagManagerOptions = new TagManagerOptions {
                TagPropertyName = "tagPropertyName"
            };

Synopsis

Constructors

TagManagerOptions()

Options to configure TagManager behavior.

Properties

TagPropertyName

The name of the property in CloudFormation for these tags.

Constructors

TagManagerOptions()

Options to configure TagManager behavior.

public TagManagerOptions()
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;

            var tagManagerOptions = new TagManagerOptions {
                TagPropertyName = "tagPropertyName"
            };

Properties

TagPropertyName

The name of the property in CloudFormation for these tags.

public string? TagPropertyName { get; set; }
Property Value

string

Remarks

Normally this is tags, but Cognito UserPool uses UserPoolTags

Default: "tags"

Implements

ITagManagerOptions
Back to top Generated by DocFX