Struct rusoto_opsworks::ElasticLoadBalancer[][src]

pub struct ElasticLoadBalancer {
    pub availability_zones: Option<Vec<String>>,
    pub dns_name: Option<String>,
    pub ec_2_instance_ids: Option<Vec<String>>,
    pub elastic_load_balancer_name: Option<String>,
    pub layer_id: Option<String>,
    pub region: Option<String>,
    pub stack_id: Option<String>,
    pub subnet_ids: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

Describes an Elastic Load Balancing instance.

Fields

A list of Availability Zones.

The instance's public DNS name.

A list of the EC2 instances that the Elastic Load Balancing instance is managing traffic for.

The Elastic Load Balancing instance's name.

The ID of the layer that the instance is attached to.

The instance's AWS region.

The ID of the stack that the instance is associated with.

A list of subnet IDs, if the stack is running in a VPC.

The VPC ID.

Trait Implementations

impl Default for ElasticLoadBalancer
[src]

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

impl Debug for ElasticLoadBalancer
[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticLoadBalancer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ElasticLoadBalancer
[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