Enum 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();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TargetType
Returns the enum constant of this type with the specified name.static TargetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
Targets identified by instance ID. -
IP
Targets identified by IP address. -
LAMBDA
Target is a single Lambda Function. -
ALB
Target is a single Application Load Balancer.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-