[][src]Struct rusoto_opsworks::ElasticLoadBalancer

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

availability_zones: Option<Vec<String>>

A list of Availability Zones.

dns_name: Option<String>

The instance's public DNS name.

ec_2_instance_ids: Option<Vec<String>>

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

elastic_load_balancer_name: Option<String>

The Elastic Load Balancing instance's name.

layer_id: Option<String>

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

region: Option<String>

The instance's AWS region.

stack_id: Option<String>

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

subnet_ids: Option<Vec<String>>

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

vpc_id: Option<String>

The VPC ID.

Trait Implementations

impl PartialEq<ElasticLoadBalancer> for ElasticLoadBalancer[src]

impl Default for ElasticLoadBalancer[src]

impl Clone for ElasticLoadBalancer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ElasticLoadBalancer[src]

impl<'de> Deserialize<'de> for ElasticLoadBalancer[src]

Auto Trait Implementations

impl Send for ElasticLoadBalancer

impl Sync for ElasticLoadBalancer

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self