java.lang.Object
java.lang.Enum<TargetType>
software.amazon.awscdk.services.elasticloadbalancingv2.TargetType
All Implemented Interfaces:
Serializable, Comparable<TargetType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-27T16:50:57.670Z") @Stability(Stable) public enum TargetType extends Enum<TargetType>
How to interpret the load balancing target identifiers.

Example:

 Vpc vpc;
 // Target group with slow start mode enabled
 ApplicationTargetGroup tg = ApplicationTargetGroup.Builder.create(this, "TG")
         .targetType(TargetType.INSTANCE)
         .slowStart(Duration.seconds(60))
         .port(80)
         .vpc(vpc)
         .build();
 
  • Enum Constant Details

    • INSTANCE

      @Stability(Stable) public static final TargetType INSTANCE
      Targets identified by instance ID.
    • IP

      @Stability(Stable) public static final TargetType IP
      Targets identified by IP address.
    • LAMBDA

      @Stability(Stable) public static final TargetType LAMBDA
      Target is a single Lambda Function.
    • ALB

      @Stability(Stable) public static final TargetType ALB
      Target is a single Application Load Balancer.
  • Method Details

    • values

      public static TargetType[] 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 TargetType 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