Struct rusoto_elasticbeanstalk::LoadBalancerDescription[][src]

pub struct LoadBalancerDescription {
    pub domain: Option<String>,
    pub listeners: Option<Vec<Listener>>,
    pub load_balancer_name: Option<String>,
}

Describes the details of a LoadBalancer.

Fields

The domain name of the LoadBalancer.

A list of Listeners used by the LoadBalancer.

The name of the LoadBalancer.

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