Struct rusoto_elb::LoadBalancerAttributes[][src]

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

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 Balancer Guide.

This parameter is reserved.

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 Balancer Guide.

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 Balancer Guide.

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 Balancer Guide.

Trait Implementations

impl Default for LoadBalancerAttributes
[src]

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

impl Debug for LoadBalancerAttributes
[src]

Formats the value using the given formatter. Read more

impl Clone for LoadBalancerAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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