NetworkTargetGroupProps¶
-
class
aws_cdk.aws_elasticloadbalancingv2.
NetworkTargetGroupProps
(*, deregistration_delay=None, health_check=None, target_group_name=None, target_type=None, vpc=None, port, protocol=None, proxy_protocol_v2=None, targets=None)¶ Bases:
aws_cdk.aws_elasticloadbalancingv2.BaseTargetGroupProps
Properties for a new Network Target Group.
- Parameters
deregistration_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 (
Optional
[HealthCheck
]) – Health check configuration. Default: - None.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: - undefinedport (
Union
[int
,float
]) – The port on which the listener listens for requests.protocol (
Optional
[Protocol
]) – Protocol for target group, expects TCP, TLS, UDP, or TCP_UDP. Default: - TCPproxy_protocol_v2 (
Optional
[bool
]) – Indicates whether Proxy Protocol version 2 is enabled. Default: falsetargets (
Optional
[List
[INetworkLoadBalancerTarget
]]) – 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.
Attributes
-
deregistration_delay
¶ The amount of time for Elastic Load Balancing to wait before deregistering a target.
The range is 0-3600 seconds.
- Default
300
- Return type
Optional
[Duration
]
-
health_check
¶ Health check configuration.
- Default
None.
- Return type
Optional
[HealthCheck
]
-
port
¶ The port on which the listener listens for requests.
- Return type
Union
[int
,float
]
-
protocol
¶ Protocol for target group, expects TCP, TLS, UDP, or TCP_UDP.
- Default
TCP
- Return type
Optional
[Protocol
]
-
proxy_protocol_v2
¶ Indicates whether Proxy Protocol version 2 is enabled.
- Default
false
- Return type
Optional
[bool
]
-
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.
- Return type
Optional
[str
]
-
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.
- Return type
Optional
[TargetType
]
-
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.
- Return type
Optional
[List
[INetworkLoadBalancerTarget
]]