Class RemoveTag

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.core.RemoveTag
All Implemented Interfaces:
IAspect, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.100Z") @Stability(Stable) public class RemoveTag extends software.amazon.jsii.JsiiObject implements IAspect
The RemoveTag Aspect will handle removing tags from this node and 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.*;
 RemoveTag removeTag = RemoveTag.Builder.create("key")
         .applyToLaunchedInstances(false)
         .excludeResourceTypes(List.of("excludeResourceTypes"))
         .includeResourceTypes(List.of("includeResourceTypes"))
         .priority(123)
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    A fluent builder for RemoveTag.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IAspect

    IAspect.Jsii$Default, IAspect.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
     
    RemoveTag(String key, TagProps props)
     
    protected
    RemoveTag(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    RemoveTag(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
    applyTag(ITaggable resource)
     
    The string key for the tag.
    protected TagProps
     
    void
    visit(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, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • RemoveTag

      protected RemoveTag(software.amazon.jsii.JsiiObjectRef objRef)
    • RemoveTag

      protected RemoveTag(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • RemoveTag

      @Stability(Stable) public RemoveTag(@NotNull String key, @Nullable TagProps props)
      Parameters:
      key - This parameter is required.
      props -
    • RemoveTag

      @Stability(Stable) public RemoveTag(@NotNull String key)
      Parameters:
      key - This parameter is required.
  • Method Details

    • applyTag

      @Stability(Stable) protected void applyTag(@NotNull ITaggable resource)
      Parameters:
      resource - This parameter is required.
    • visit

      @Stability(Stable) public void visit(@NotNull IConstruct construct)
      All aspects can visit an IConstruct.

      Specified by:
      visit in interface IAspect
      Parameters:
      construct - This parameter is required.
    • getKey

      @Stability(Stable) @NotNull public String getKey()
      The string key for the tag.
    • getProps

      @Stability(Stable) @NotNull protected TagProps getProps()