amazonka-elb-2.0: Amazon Elastic Load Balancing SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ELB.Types.LoadBalancerAttributes

Description

 
Synopsis

Documentation

data LoadBalancerAttributes Source #

The attributes for a load balancer.

See: newLoadBalancerAttributes smart constructor.

Constructors

LoadBalancerAttributes' 

Fields

Instances

Instances details
ToQuery LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

FromXML LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

Generic LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

Associated Types

type Rep LoadBalancerAttributes :: Type -> Type #

Read LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

Show LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

NFData LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

Methods

rnf :: LoadBalancerAttributes -> () #

Eq LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

Hashable LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

type Rep LoadBalancerAttributes Source # 
Instance details

Defined in Amazonka.ELB.Types.LoadBalancerAttributes

type Rep LoadBalancerAttributes = D1 ('MetaData "LoadBalancerAttributes" "Amazonka.ELB.Types.LoadBalancerAttributes" "amazonka-elb-2.0-9cSN5cNCwnD5ZanKSOxHTf" 'False) (C1 ('MetaCons "LoadBalancerAttributes'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "accessLog") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AccessLog)) :*: S1 ('MetaSel ('Just "additionalAttributes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [AdditionalAttribute]))) :*: (S1 ('MetaSel ('Just "connectionDraining") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ConnectionDraining)) :*: (S1 ('MetaSel ('Just "connectionSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ConnectionSettings)) :*: S1 ('MetaSel ('Just "crossZoneLoadBalancing") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CrossZoneLoadBalancing))))))

newLoadBalancerAttributes :: LoadBalancerAttributes Source #

Create a value of LoadBalancerAttributes with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:accessLog:LoadBalancerAttributes', loadBalancerAttributes_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.

$sel:additionalAttributes:LoadBalancerAttributes', loadBalancerAttributes_additionalAttributes - Any additional attributes.

$sel:connectionDraining:LoadBalancerAttributes', loadBalancerAttributes_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.

$sel:connectionSettings:LoadBalancerAttributes', loadBalancerAttributes_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.

$sel:crossZoneLoadBalancing:LoadBalancerAttributes', loadBalancerAttributes_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.

loadBalancerAttributes_accessLog :: Lens' LoadBalancerAttributes (Maybe AccessLog) Source #

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.

loadBalancerAttributes_connectionDraining :: Lens' LoadBalancerAttributes (Maybe ConnectionDraining) Source #

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.

loadBalancerAttributes_connectionSettings :: Lens' LoadBalancerAttributes (Maybe ConnectionSettings) Source #

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.

loadBalancerAttributes_crossZoneLoadBalancing :: Lens' LoadBalancerAttributes (Maybe CrossZoneLoadBalancing) Source #

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.