target_group
Gets an individual target_group
resource
Overview
Name | target_group |
Type | Resource |
Description | target_group |
Id | awscc.elasticloadbalancingv2.target_group |
Fields
Name | Datatype | Description |
---|---|---|
ip_address_type | string | The type of IP address used for this target group. The possible values are ipv4 and ipv6. |
health_check_interval_seconds | integer | The approximate amount of time, in seconds, between health checks of an individual target. |
load_balancer_arns | array | The Amazon Resource Names (ARNs) of the load balancers that route traffic to this target group. |
matcher | object | [HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful response from a target. |
health_check_path | string | [HTTP/HTTPS health checks] The destination for health checks on the targets. [HTTP1 or HTTP2 protocol version] The ping path. The default is /. [GRPC protocol version] The path of a custom health check method with the format /package.service/method. The default is /AWS.ALB/healthcheck. |
port | integer | The port on which the targets receive traffic. This port is used unless you specify a port override when registering the target. If the target is a Lambda function, this parameter does not apply. If the protocol is GENEVE, the supported port is 6081. |
targets | array | The targets. |
health_check_enabled | boolean | Indicates whether health checks are enabled. If the target type is lambda, health checks are disabled by default but can be enabled. If the target type is instance, ip, or alb, health checks are always enabled and cannot be disabled. |
protocol_version | string | [HTTP/HTTPS protocol] The protocol version. The possible values are GRPC, HTTP1, and HTTP2. |
unhealthy_threshold_count | integer | The number of consecutive health check failures required before considering a target unhealthy. |
health_check_timeout_seconds | integer | The amount of time, in seconds, during which no response from a target means a failed health check. |
name | string | The name of the target group. |
vpc_id | string | The identifier of the virtual private cloud (VPC). If the target is a Lambda function, this parameter does not apply. |
target_group_full_name | string | The full name of the target group. |
healthy_threshold_count | integer | The number of consecutive health checks successes required before considering an unhealthy target healthy. |
health_check_protocol | string | The protocol the load balancer uses when performing health checks on targets. |
target_group_attributes | array | The attributes. |
target_type | string | The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type. |
health_check_port | string | The port the load balancer uses when performing health checks on targets. |
target_group_arn | string | The ARN of the Target Group |
protocol | string | The protocol to use for routing traffic to the targets. |
target_group_name | string | The name of the target group. |
tags | array | The tags. |
region | string | AWS region. |
Methods
Currently only SELECT
is supported for this resource resource.
Example
SELECT
region,
ip_address_type,
health_check_interval_seconds,
load_balancer_arns,
matcher,
health_check_path,
port,
targets,
health_check_enabled,
protocol_version,
unhealthy_threshold_count,
health_check_timeout_seconds,
name,
vpc_id,
target_group_full_name,
healthy_threshold_count,
health_check_protocol,
target_group_attributes,
target_type,
health_check_port,
target_group_arn,
protocol,
target_group_name,
tags
FROM awscc.elasticloadbalancingv2.target_group
WHERE data__Identifier = '<TargetGroupArn>';
Permissions
To operate on the target_group
resource, the following permissions are required:
Delete
elasticloadbalancing:DeleteTargetGroup,
elasticloadbalancing:DescribeTargetGroups
Read
elasticloadbalancing:DescribeTargetGroups,
elasticloadbalancing:DescribeTargetGroupAttributes,
elasticloadbalancing:DescribeTargetHealth,
elasticloadbalancing:DescribeTags
Update
elasticloadbalancing:DescribeTargetGroups,
elasticloadbalancing:ModifyTargetGroup,
elasticloadbalancing:ModifyTargetGroupAttributes,
elasticloadbalancing:RegisterTargets,
elasticloadbalancing:DescribeTargetHealth,
elasticloadbalancing:DeregisterTargets,
elasticloadbalancing:AddTags,
elasticloadbalancing:RemoveTags