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

AwsElbLoadBalancerDetails

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

Contains details about a Classic Load Balancer.

interface AwsElbLoadBalancerDetails {
AvailabilityZones?: string[] | null;
BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescription[] | null;
CanonicalHostedZoneName?: string | null;
CanonicalHostedZoneNameID?: string | null;
CreatedTime?: string | null;
DnsName?: string | null;
HealthCheck?: AwsElbLoadBalancerHealthCheck | null;
Instances?: AwsElbLoadBalancerInstance[] | null;
ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[] | null;
LoadBalancerAttributes?: AwsElbLoadBalancerAttributes | null;
LoadBalancerName?: string | null;
Policies?: AwsElbLoadBalancerPolicies | null;
Scheme?: string | null;
SecurityGroups?: string[] | null;
SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup | null;
Subnets?: string[] | null;
VpcId?: string | null;
}

§Properties

§
AvailabilityZones?: string[] | null
[src]

The list of Availability Zones for the load balancer.

§
BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescription[] | null
[src]

Information about the configuration of the EC2 instances.

§
CanonicalHostedZoneName?: string | null
[src]

The name of the Amazon Route 53 hosted zone for the load balancer.

§
CanonicalHostedZoneNameID?: string | null
[src]

The ID of the Amazon Route 53 hosted zone for the load balancer.

§
CreatedTime?: string | null
[src]

Indicates when the load balancer was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
DnsName?: string | null
[src]

The DNS name of the load balancer.

§

Information about the health checks that are conducted on the load balancer.

§
Instances?: AwsElbLoadBalancerInstance[] | null
[src]

List of EC2 instances for the load balancer.

§
ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[] | null
[src]

The policies that are enabled for the load balancer listeners.

§
LoadBalancerAttributes?: AwsElbLoadBalancerAttributes | null
[src]

The attributes for a load balancer.

§
LoadBalancerName?: string | null
[src]

The name of the load balancer.

§

The policies for a load balancer.

§
Scheme?: string | null
[src]

The type of load balancer. Only provided if the load balancer is in a VPC.

If Scheme is internet-facing, the load balancer has a public DNS name that resolves to a public IP address.

If Scheme is internal, the load balancer has a public DNS name that resolves to a private IP address.

§
SecurityGroups?: string[] | null
[src]

The security groups for the load balancer. Only provided if the load balancer is in a VPC.

§
SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup | null
[src]

Information about the security group for the load balancer. This is the security group that is used for inbound rules.

§
Subnets?: string[] | null
[src]

The list of subnet identifiers for the load balancer.

§
VpcId?: string | null
[src]

The identifier of the VPC for the load balancer.