libZSservicesZSamazonka-codedeployZSamazonka-codedeploy
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodeDeploy.Types.ELBInfo

Description

 
Synopsis

Documentation

data ELBInfo Source #

Information about a load balancer in Elastic Load Balancing to use in a deployment. Instances are registered directly with a load balancer, and traffic is routed to the load balancer.

See: newELBInfo smart constructor.

Constructors

ELBInfo' 

Fields

  • name :: Maybe Text

    For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the load balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

Instances

Instances details
Eq ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

(==) :: ELBInfo -> ELBInfo -> Bool #

(/=) :: ELBInfo -> ELBInfo -> Bool #

Read ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Show ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Generic ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Associated Types

type Rep ELBInfo :: Type -> Type #

Methods

from :: ELBInfo -> Rep ELBInfo x #

to :: Rep ELBInfo x -> ELBInfo #

NFData ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

rnf :: ELBInfo -> () #

Hashable ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

hashWithSalt :: Int -> ELBInfo -> Int #

hash :: ELBInfo -> Int #

ToJSON ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

FromJSON ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

type Rep ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

type Rep ELBInfo = D1 ('MetaData "ELBInfo" "Amazonka.CodeDeploy.Types.ELBInfo" "libZSservicesZSamazonka-codedeployZSamazonka-codedeploy" 'False) (C1 ('MetaCons "ELBInfo'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newELBInfo :: ELBInfo Source #

Create a value of ELBInfo 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:name:ELBInfo', eLBInfo_name - For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the load balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

eLBInfo_name :: Lens' ELBInfo (Maybe Text) Source #

For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the load balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.