[][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 Clone for ElasticLoadBalancer[src]

impl Default for ElasticLoadBalancer[src]

impl PartialEq<ElasticLoadBalancer> for ElasticLoadBalancer[src]

impl Debug for ElasticLoadBalancer[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self