Enum TagType

java.lang.Object
java.lang.Enum<TagType>
software.amazon.awscdk.core.TagType
All Implemented Interfaces:
Serializable, Comparable<TagType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.154Z") @Stability(Stable) public enum TagType extends Enum<TagType>
Example:

 import software.amazon.awscdk.core.*;
 public class MyConstruct extends Resource implements ITaggable {
     public final Object tags;
     public MyConstruct(Construct scope, String id) {
         super(scope, id);
         CfnResource.Builder.create(this, "Resource")
                 .type("Whatever::The::Type")
                 .properties(Map.of(
                         // ...
                         "Tags", this.tags.getRenderedTags()))
                 .build();
     }
 }
 
  • Enum Constant Details

    • STANDARD

      @Stability(Stable) public static final TagType STANDARD
    • AUTOSCALING_GROUP

      @Stability(Stable) public static final TagType AUTOSCALING_GROUP
    • MAP

      @Stability(Stable) public static final TagType MAP
    • KEY_VALUE

      @Stability(Stable) public static final TagType KEY_VALUE
    • NOT_TAGGABLE

      @Stability(Stable) public static final TagType NOT_TAGGABLE
  • Method Details

    • values

      public static TagType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static TagType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null