Struct rusoto_elb::LoadBalancerDescription[][src]

pub struct LoadBalancerDescription {
    pub availability_zones: Option<Vec<String>>,
    pub backend_server_descriptions: Option<Vec<BackendServerDescription>>,
    pub canonical_hosted_zone_name: Option<String>,
    pub canonical_hosted_zone_name_id: Option<String>,
    pub created_time: Option<String>,
    pub dns_name: Option<String>,
    pub health_check: Option<HealthCheck>,
    pub instances: Option<Vec<Instance>>,
    pub listener_descriptions: Option<Vec<ListenerDescription>>,
    pub load_balancer_name: Option<String>,
    pub policies: Option<Policies>,
    pub scheme: Option<String>,
    pub security_groups: Option<Vec<String>>,
    pub source_security_group: Option<SourceSecurityGroup>,
    pub subnets: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

Information about a load balancer.

Fields

The Availability Zones for the load balancer.

Information about your EC2 instances.

The DNS name of the load balancer.

For more information, see Configure a Custom Domain Name in the Classic Load Balancer Guide.

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

The date and time the load balancer was created.

The DNS name of the load balancer.

Information about the health checks conducted on the load balancer.

The IDs of the instances for the load balancer.

The listeners for the load balancer.

The name of the load balancer.

The policies defined for the load balancer.

The type of load balancer. Valid only for load balancers 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.

The security groups for the load balancer. Valid only for load balancers in a VPC.

The security group for the load balancer, which you can use as part of your inbound rules for your registered instances. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.

The IDs of the subnets for the load balancer.

The ID of the VPC for the load balancer.

Trait Implementations

impl Default for LoadBalancerDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for LoadBalancerDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for LoadBalancerDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LoadBalancerDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations