Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TargetGroup

import type { TargetGroup } from "https://aws-api.deno.dev/v0.4/services/elbv2.ts?docs=full";

Information about a target group.

interface TargetGroup {
HealthCheckEnabled?: boolean | null;
HealthCheckIntervalSeconds?: number | null;
HealthCheckPath?: string | null;
HealthCheckPort?: string | null;
HealthCheckProtocol?: ProtocolEnum | null;
HealthCheckTimeoutSeconds?: number | null;
HealthyThresholdCount?: number | null;
IpAddressType?: TargetGroupIpAddressTypeEnum | null;
LoadBalancerArns: string[];
Matcher?: Matcher | null;
Port?: number | null;
Protocol?: ProtocolEnum | null;
ProtocolVersion?: string | null;
TargetGroupArn?: string | null;
TargetGroupName?: string | null;
TargetType?: TargetTypeEnum | null;
UnhealthyThresholdCount?: number | null;
VpcId?: string | null;
}

§Properties

§
HealthCheckEnabled?: boolean | null
[src]

Indicates whether health checks are enabled.

§
HealthCheckIntervalSeconds?: number | null
[src]

The approximate amount of time, in seconds, between health checks of an individual target.

§
HealthCheckPath?: string | null
[src]

The destination for health checks on the targets.

§
HealthCheckPort?: string | null
[src]

The port to use to connect with the target.

§
HealthCheckProtocol?: ProtocolEnum | null
[src]

The protocol to use to connect with the target. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.

§
HealthCheckTimeoutSeconds?: number | null
[src]

The amount of time, in seconds, during which no response means a failed health check.

§
HealthyThresholdCount?: number | null
[src]

The number of consecutive health checks successes required before considering an unhealthy target healthy.

§
IpAddressType?: TargetGroupIpAddressTypeEnum | null
[src]

The type of IP address used for this target group. The possible values are ipv4 and ipv6. This is an optional parameter. If not specified, the IP address type defaults to ipv4.

§
LoadBalancerArns: string[]
[src]

The Amazon Resource Names (ARN) of the load balancers that route traffic to this target group.

§
Matcher?: Matcher | null
[src]

The HTTP or gRPC codes to use when checking for a successful response from a target.

§
Port?: number | null
[src]

The port on which the targets are listening. Not used if the target is a Lambda function.

§
Protocol?: ProtocolEnum | null
[src]

The protocol to use for routing traffic to the targets.

§
ProtocolVersion?: string | null
[src]

[HTTP/HTTPS protocol] The protocol version. The possible values are GRPC, HTTP1, and HTTP2.

§
TargetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the target group.

§
TargetGroupName?: string | null
[src]

The name of the target group.

§
TargetType?: TargetTypeEnum | null
[src]

The type of target that you must specify when registering targets with this target group. The possible values are instance (register targets by instance ID), ip (register targets by IP address), lambda (register a single Lambda function as a target), or alb (register a single Application Load Balancer as a target).

§
UnhealthyThresholdCount?: number | null
[src]

The number of consecutive health check failures required before considering the target unhealthy.

§
VpcId?: string | null
[src]

The ID of the VPC for the targets.