Package software.amazon.awscdk.core
Class Tag
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.core.Tag
- All Implemented Interfaces:
IAspect,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.149Z")
@Stability(Stable)
public class Tag
extends software.amazon.jsii.JsiiObject
implements IAspect
The Tag Aspect will handle adding a tag to this node and cascading tags to children.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
Tag tag = Tag.Builder.create("key", "value")
.applyToLaunchedInstances(false)
.excludeResourceTypes(List.of("excludeResourceTypes"))
.includeResourceTypes(List.of("includeResourceTypes"))
.priority(123)
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IAspect
IAspect.Jsii$Default, IAspect.Jsii$Proxy -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidDeprecated.static voidDeprecated.useTags.of(scope).add()protected voidgetKey()The string key for the tag.protected TagPropsgetProps()getValue()The string value of the tag.static voidDeprecated.useTags.of(scope).remove()static voidDeprecated.useTags.of(scope).remove()voidvisit(IConstruct construct) All aspects can visit an IConstruct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
Tag
protected Tag(software.amazon.jsii.JsiiObjectRef objRef) -
Tag
protected Tag(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
Tag
- Parameters:
key- This parameter is required.value- This parameter is required.props-
-
Tag
- Parameters:
key- This parameter is required.value- This parameter is required.
-
-
Method Details
-
add
@Stability(Deprecated) @Deprecated public static void add(@NotNull Construct scope, @NotNull String key, @NotNull String value, @Nullable TagProps props) Deprecated.useTags.of(scope).add()(deprecated) DEPRECATED: add tags to the node of a construct and all its the taggable children.- Parameters:
scope- This parameter is required.key- This parameter is required.value- This parameter is required.props-
-
add
@Stability(Deprecated) @Deprecated public static void add(@NotNull Construct scope, @NotNull String key, @NotNull String value) Deprecated.useTags.of(scope).add()(deprecated) DEPRECATED: add tags to the node of a construct and all its the taggable children.- Parameters:
scope- This parameter is required.key- This parameter is required.value- This parameter is required.
-
remove
@Stability(Deprecated) @Deprecated public static void remove(@NotNull Construct scope, @NotNull String key, @Nullable TagProps props) Deprecated.useTags.of(scope).remove()(deprecated) DEPRECATED: remove tags to the node of a construct and all its the taggable children.- Parameters:
scope- This parameter is required.key- This parameter is required.props-
-
remove
@Stability(Deprecated) @Deprecated public static void remove(@NotNull Construct scope, @NotNull String key) Deprecated.useTags.of(scope).remove()(deprecated) DEPRECATED: remove tags to the node of a construct and all its the taggable children.- Parameters:
scope- This parameter is required.key- This parameter is required.
-
applyTag
- Parameters:
resource- This parameter is required.
-
visit
All aspects can visit an IConstruct. -
getKey
The string key for the tag. -
getProps
-
getValue
The string value of the tag.
-
Tags.of(scope).add()