Table of Contents

Class TagManagerOptions

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Options to configure TagManager behavior.

public class TagManagerOptions : ITagManagerOptions
Inheritance
TagManagerOptions
Implements
Inherited Members

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"
            };

Remarks

ExampleMetadata: fixture=_generated

Constructors

TagManagerOptions()

public TagManagerOptions()

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"