TagManagerOptions

class aws_cdk.core.TagManagerOptions(*, tag_property_name=None)

Bases: object

Options to configure TagManager behavior.

Parameters:

tag_property_name (Optional[str]) – The name of the property in CloudFormation for these tags. Normally this is tags, but Cognito UserPool uses UserPoolTags Default: “tags”

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.core as cdk

tag_manager_options = cdk.TagManagerOptions(
    tag_property_name="tagPropertyName"
)

Attributes

tag_property_name

The name of the property in CloudFormation for these tags.

Normally this is tags, but Cognito UserPool uses UserPoolTags

Default:

“tags”