amazonka-codedeploy-2.0: Amazon CodeDeploy 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.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
FromJSON ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

ToJSON 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 #

Read ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Show ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

NFData ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

rnf :: ELBInfo -> () #

Eq ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

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

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

Hashable ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

Methods

hashWithSalt :: Int -> ELBInfo -> Int #

hash :: ELBInfo -> Int #

type Rep ELBInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ELBInfo

type Rep ELBInfo = D1 ('MetaData "ELBInfo" "Amazonka.CodeDeploy.Types.ELBInfo" "amazonka-codedeploy-2.0-4OehMEUeOr9G9ZXD2VmvAo" '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.