Package software.amazon.awscdk
Interface TagManagerOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TagManagerOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:50:51.961Z")
@Stability(Stable)
public interface TagManagerOptions
extends software.amazon.jsii.JsiiSerializable
Options to configure TagManager behavior.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; TagManagerOptions tagManagerOptions = TagManagerOptions.builder() .tagPropertyName("tagPropertyName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forTagManagerOptions
static final class
An implementation forTagManagerOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic TagManagerOptions.Builder
builder()
default String
The name of the property in CloudFormation for these tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTagPropertyName
The name of the property in CloudFormation for these tags.Normally this is
tags
, but Cognito UserPool uses UserPoolTagsDefault: "tags"
-
builder
- Returns:
- a
TagManagerOptions.Builder
ofTagManagerOptions
-