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

Description

 
Synopsis

Documentation

data DeploymentOverview Source #

Information about the deployment status of the instances in the deployment.

See: newDeploymentOverview smart constructor.

Constructors

DeploymentOverview' 

Fields

  • pending :: Maybe Integer

    The number of instances in the deployment in a pending state.

  • skipped :: Maybe Integer

    The number of instances in the deployment in a skipped state.

  • inProgress :: Maybe Integer

    The number of instances in which the deployment is in progress.

  • succeeded :: Maybe Integer

    The number of instances in the deployment to which revisions have been successfully deployed.

  • ready :: Maybe Integer

    The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

  • failed :: Maybe Integer

    The number of instances in the deployment in a failed state.

Instances

Instances details
Eq DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

Read DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

Show DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

Generic DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

Associated Types

type Rep DeploymentOverview :: Type -> Type #

NFData DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

Methods

rnf :: DeploymentOverview -> () #

Hashable DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

FromJSON DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

type Rep DeploymentOverview Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.DeploymentOverview

type Rep DeploymentOverview = D1 ('MetaData "DeploymentOverview" "Amazonka.CodeDeploy.Types.DeploymentOverview" "libZSservicesZSamazonka-codedeployZSamazonka-codedeploy" 'False) (C1 ('MetaCons "DeploymentOverview'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "pending") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "skipped") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "inProgress") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))) :*: (S1 ('MetaSel ('Just "succeeded") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "ready") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "failed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))))

newDeploymentOverview :: DeploymentOverview Source #

Create a value of DeploymentOverview 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:pending:DeploymentOverview', deploymentOverview_pending - The number of instances in the deployment in a pending state.

$sel:skipped:DeploymentOverview', deploymentOverview_skipped - The number of instances in the deployment in a skipped state.

$sel:inProgress:DeploymentOverview', deploymentOverview_inProgress - The number of instances in which the deployment is in progress.

$sel:succeeded:DeploymentOverview', deploymentOverview_succeeded - The number of instances in the deployment to which revisions have been successfully deployed.

$sel:ready:DeploymentOverview', deploymentOverview_ready - The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

$sel:failed:DeploymentOverview', deploymentOverview_failed - The number of instances in the deployment in a failed state.

deploymentOverview_pending :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in the deployment in a pending state.

deploymentOverview_skipped :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in the deployment in a skipped state.

deploymentOverview_inProgress :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in which the deployment is in progress.

deploymentOverview_succeeded :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in the deployment to which revisions have been successfully deployed.

deploymentOverview_ready :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

deploymentOverview_failed :: Lens' DeploymentOverview (Maybe Integer) Source #

The number of instances in the deployment in a failed state.