ApplicationTargetGroupProps
- class aws_cdk.aws_elasticloadbalancingv2.ApplicationTargetGroupProps(*, cross_zone_enabled=None, deregistration_delay=None, health_check=None, target_group_name=None, target_type=None, vpc=None, enable_anomaly_mitigation=None, load_balancing_algorithm_type=None, port=None, protocol=None, protocol_version=None, slow_start=None, stickiness_cookie_duration=None, stickiness_cookie_name=None, targets=None)
Bases:
BaseTargetGroupProps
Properties for defining an Application Target Group.
- Parameters:
cross_zone_enabled (
Optional
[bool
]) – Indicates whether cross zone load balancing is enabled. Default: - use load balancer configurationderegistration_delay (
Optional
[Duration
]) – The amount of time for Elastic Load Balancing to wait before deregistering a target. The range is 0-3600 seconds. Default: 300health_check (
Union
[HealthCheck
,Dict
[str
,Any
],None
]) – Health check configuration. Default: - The default value for each property in this configuration varies depending on the target.target_group_name (
Optional
[str
]) – The name of the target group. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen. Default: - Automatically generated.target_type (
Optional
[TargetType
]) – The type of targets registered to this TargetGroup, either IP or Instance. All targets registered into the group must be of this type. If you register targets to the TargetGroup in the CDK app, the TargetType is determined automatically. Default: - Determined automatically.vpc (
Optional
[IVpc
]) – The virtual private cloud (VPC). only ifTargetType
isIp
orInstanceId
Default: - undefinedenable_anomaly_mitigation (
Optional
[bool
]) – Indicates whether anomaly mitigation is enabled. Only available whenloadBalancingAlgorithmType
isTargetGroupLoadBalancingAlgorithmType.WEIGHTED_RANDOM
Default: falseload_balancing_algorithm_type (
Optional
[TargetGroupLoadBalancingAlgorithmType
]) – The load balancing algorithm to select targets for routing requests. Default: TargetGroupLoadBalancingAlgorithmType.ROUND_ROBINport (
Union
[int
,float
,None
]) – The port on which the target receives traffic. This is not applicable for Lambda targets. Default: - Determined from protocol if knownprotocol (
Optional
[ApplicationProtocol
]) – The protocol used for communication with the target. This is not applicable for Lambda targets. Default: - Determined from port if knownprotocol_version (
Optional
[ApplicationProtocolVersion
]) – The protocol version to use. Default: ApplicationProtocolVersion.HTTP1slow_start (
Optional
[Duration
]) – The time period during which the load balancer sends a newly registered target a linearly increasing share of the traffic to the target group. The range is 30-900 seconds (15 minutes). Default: 0stickiness_cookie_duration (
Optional
[Duration
]) – The stickiness cookie expiration period. Setting this value enables load balancer stickiness. After this period, the cookie is considered stale. The minimum value is 1 second and the maximum value is 7 days (604800 seconds). Default: - Stickiness is disabledstickiness_cookie_name (
Optional
[str
]) – The name of an application-based stickiness cookie. Names that start with the following prefixes are not allowed: AWSALB, AWSALBAPP, and AWSALBTG; they’re reserved for use by the load balancer. Note:stickinessCookieName
parameter depends on the presence ofstickinessCookieDuration
parameter. IfstickinessCookieDuration
is not set,stickinessCookieName
will be omitted. Default: - IfstickinessCookieDuration
is set, a load-balancer generated cookie is used. Otherwise, no stickiness is defined.targets (
Optional
[Sequence
[IApplicationLoadBalancerTarget
]]) – The targets to add to this target group. Can beInstance
,IPAddress
, or any self-registering load balancing target. If you use eitherInstance
orIPAddress
as targets, all target must be of the same type. Default: - No targets.
- ExampleMetadata:
infused
Example:
# vpc: ec2.Vpc # Target group with slow start mode enabled tg = elbv2.ApplicationTargetGroup(self, "TG", target_type=elbv2.TargetType.INSTANCE, slow_start=Duration.seconds(60), port=80, vpc=vpc )
Attributes
- cross_zone_enabled
Indicates whether cross zone load balancing is enabled.
- Default:
use load balancer configuration
- See:
- deregistration_delay
The amount of time for Elastic Load Balancing to wait before deregistering a target.
The range is 0-3600 seconds.
- Default:
300
- enable_anomaly_mitigation
Indicates whether anomaly mitigation is enabled.
Only available when
loadBalancingAlgorithmType
isTargetGroupLoadBalancingAlgorithmType.WEIGHTED_RANDOM
- health_check
Health check configuration.
- Default:
The default value for each property in this configuration varies depending on the target.
- See:
- load_balancing_algorithm_type
The load balancing algorithm to select targets for routing requests.
- Default:
TargetGroupLoadBalancingAlgorithmType.ROUND_ROBIN
- port
The port on which the target receives traffic.
This is not applicable for Lambda targets.
- Default:
Determined from protocol if known
- protocol
The protocol used for communication with the target.
This is not applicable for Lambda targets.
- Default:
Determined from port if known
- protocol_version
The protocol version to use.
- Default:
ApplicationProtocolVersion.HTTP1
- slow_start
The time period during which the load balancer sends a newly registered target a linearly increasing share of the traffic to the target group.
The range is 30-900 seconds (15 minutes).
- Default:
0
- stickiness_cookie_duration
The stickiness cookie expiration period.
Setting this value enables load balancer stickiness.
After this period, the cookie is considered stale. The minimum value is 1 second and the maximum value is 7 days (604800 seconds).
- Default:
Stickiness is disabled
- stickiness_cookie_name
The name of an application-based stickiness cookie.
Names that start with the following prefixes are not allowed: AWSALB, AWSALBAPP, and AWSALBTG; they’re reserved for use by the load balancer.
Note:
stickinessCookieName
parameter depends on the presence ofstickinessCookieDuration
parameter. IfstickinessCookieDuration
is not set,stickinessCookieName
will be omitted.- Default:
If
stickinessCookieDuration
is set, a load-balancer generated cookie is used. Otherwise, no stickiness is defined.
- See:
- target_group_name
The name of the target group.
This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen.
- Default:
Automatically generated.
- target_type
The type of targets registered to this TargetGroup, either IP or Instance.
All targets registered into the group must be of this type. If you register targets to the TargetGroup in the CDK app, the TargetType is determined automatically.
- Default:
Determined automatically.
- targets
The targets to add to this target group.
Can be
Instance
,IPAddress
, or any self-registering load balancing target. If you use eitherInstance
orIPAddress
as targets, all target must be of the same type.- Default:
No targets.
- vpc
The virtual private cloud (VPC).
only if
TargetType
isIp
orInstanceId
- Default:
undefined