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

AwsEcsServiceLoadBalancersDetails

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

Information about a load balancer that the service uses.

interface AwsEcsServiceLoadBalancersDetails {
ContainerName?: string | null;
ContainerPort?: number | null;
LoadBalancerName?: string | null;
TargetGroupArn?: string | null;
}

§Properties

§
ContainerName?: string | null
[src]

The name of the container to associate with the load balancer.

§
ContainerPort?: number | null
[src]

The port on the container to associate with the load balancer. This port must correspond to a containerPort in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they are launched on must allow ingress traffic on the hostPort of the port mapping.

§
LoadBalancerName?: string | null
[src]

The name of the load balancer to associate with the Amazon ECS service or task set.

Only specified when using a Classic Load Balancer. For an Application Load Balancer or a Network Load Balancer, the load balancer name is omitted.

§
TargetGroupArn?: string | null
[src]

The ARN of the Elastic Load Balancing target group or groups associated with a service or task set.

Only specified when using an Application Load Balancer or a Network Load Balancer. For a Classic Load Balancer, the target group ARN is omitted.