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.DeploymentStyle

Description

 
Synopsis

Documentation

data DeploymentStyle Source #

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

See: newDeploymentStyle smart constructor.

Constructors

DeploymentStyle' 

Fields

Instances

Instances details
Eq DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

Read DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

Show DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

Generic DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

Associated Types

type Rep DeploymentStyle :: Type -> Type #

NFData DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

Methods

rnf :: DeploymentStyle -> () #

Hashable DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

ToJSON DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

FromJSON DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

type Rep DeploymentStyle Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentStyle

type Rep DeploymentStyle = D1 ('MetaData "DeploymentStyle" "Amazonka.CodeDeploy.Types.DeploymentStyle" "libZSservicesZSamazonka-codedeployZSamazonka-codedeploy" 'False) (C1 ('MetaCons "DeploymentStyle'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deploymentOption") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentOption)) :*: S1 ('MetaSel ('Just "deploymentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentType))))

newDeploymentStyle :: DeploymentStyle Source #

Create a value of DeploymentStyle 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:deploymentOption:DeploymentStyle', deploymentStyle_deploymentOption - Indicates whether to route deployment traffic behind a load balancer.

$sel:deploymentType:DeploymentStyle', deploymentStyle_deploymentType - Indicates whether to run an in-place deployment or a blue/green deployment.

deploymentStyle_deploymentOption :: Lens' DeploymentStyle (Maybe DeploymentOption) Source #

Indicates whether to route deployment traffic behind a load balancer.

deploymentStyle_deploymentType :: Lens' DeploymentStyle (Maybe DeploymentType) Source #

Indicates whether to run an in-place deployment or a blue/green deployment.