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

LoadBalancerAttributes

import type { LoadBalancerAttributes } from "https://aws-api.deno.dev/v0.3/services/elb.ts?docs=full";

The attributes for a load balancer.

interface LoadBalancerAttributes {
AccessLog?: AccessLog | null;
AdditionalAttributes?: AdditionalAttribute[] | null;
ConnectionDraining?: ConnectionDraining | null;
ConnectionSettings?: ConnectionSettings | null;
CrossZoneLoadBalancing?: CrossZoneLoadBalancing | null;
}

§Properties

§
AccessLog?: AccessLog | null
[src]

If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.

For more information, see Enable Access Logs in the Classic Load Balancers Guide.

§
AdditionalAttributes?: AdditionalAttribute[] | null
[src]

Any additional attributes.

§
ConnectionDraining?: ConnectionDraining | null
[src]

If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance.

For more information, see Configure Connection Draining in the Classic Load Balancers Guide.

§
ConnectionSettings?: ConnectionSettings | null
[src]

If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.

By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer. For more information, see Configure Idle Connection Timeout in the Classic Load Balancers Guide.

§
CrossZoneLoadBalancing?: CrossZoneLoadBalancing | null
[src]

If enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.

For more information, see Configure Cross-Zone Load Balancing in the Classic Load Balancers Guide.