[][src]Struct rusoto_elb::LoadBalancerAttributes

pub struct LoadBalancerAttributes {
    pub access_log: Option<AccessLog>,
    pub additional_attributes: Option<Vec<AdditionalAttribute>>,
    pub connection_draining: Option<ConnectionDraining>,
    pub connection_settings: Option<ConnectionSettings>,
    pub cross_zone_load_balancing: Option<CrossZoneLoadBalancing>,
}

The attributes for a load balancer.

Fields

access_log: Option<AccessLog>

If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.

For more information, see Enable Access Logs in the Classic Load Balancers Guide.

additional_attributes: Option<Vec<AdditionalAttribute>>

This parameter is reserved.

connection_draining: Option<ConnectionDraining>

If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance.

For more information, see Configure Connection Draining in the Classic Load Balancers Guide.

connection_settings: Option<ConnectionSettings>

If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.

By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer. For more information, see Configure Idle Connection Timeout in the Classic Load Balancers Guide.

cross_zone_load_balancing: Option<CrossZoneLoadBalancing>

If enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.

For more information, see Configure Cross-Zone Load Balancing in the Classic Load Balancers Guide.

Trait Implementations

impl Clone for LoadBalancerAttributes[src]

impl Debug for LoadBalancerAttributes[src]

impl Default for LoadBalancerAttributes[src]

impl PartialEq<LoadBalancerAttributes> for LoadBalancerAttributes[src]

impl StructuralPartialEq for LoadBalancerAttributes[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.