libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk
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.ElasticBeanstalk.Types.Deployment

Description

 
Synopsis

Documentation

data Deployment Source #

Information about an application version deployment.

See: newDeployment smart constructor.

Constructors

Deployment' 

Fields

  • deploymentId :: Maybe Integer

    The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

  • status :: Maybe Text

    The status of the deployment:

    • In Progress : The deployment is in progress.
    • Deployed : The deployment succeeded.
    • Failed : The deployment failed.
  • deploymentTime :: Maybe ISO8601

    For in-progress deployments, the time that the deployment started.

    For completed deployments, the time that the deployment ended.

  • versionLabel :: Maybe Text

    The version label of the application version in the deployment.

Instances

Instances details
Eq Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

Read Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

Show Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

Generic Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

Associated Types

type Rep Deployment :: Type -> Type #

NFData Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

Methods

rnf :: Deployment -> () #

Hashable Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

FromXML Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

type Rep Deployment Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.Deployment

type Rep Deployment = D1 ('MetaData "Deployment" "Amazonka.ElasticBeanstalk.Types.Deployment" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "Deployment'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "deploymentTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "versionLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDeployment :: Deployment Source #

Create a value of Deployment 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:deploymentId:Deployment', deployment_deploymentId - The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

$sel:status:Deployment', deployment_status - The status of the deployment:

  • In Progress : The deployment is in progress.
  • Deployed : The deployment succeeded.
  • Failed : The deployment failed.

$sel:deploymentTime:Deployment', deployment_deploymentTime - For in-progress deployments, the time that the deployment started.

For completed deployments, the time that the deployment ended.

$sel:versionLabel:Deployment', deployment_versionLabel - The version label of the application version in the deployment.

deployment_deploymentId :: Lens' Deployment (Maybe Integer) Source #

The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

deployment_status :: Lens' Deployment (Maybe Text) Source #

The status of the deployment:

  • In Progress : The deployment is in progress.
  • Deployed : The deployment succeeded.
  • Failed : The deployment failed.

deployment_deploymentTime :: Lens' Deployment (Maybe UTCTime) Source #

For in-progress deployments, the time that the deployment started.

For completed deployments, the time that the deployment ended.

deployment_versionLabel :: Lens' Deployment (Maybe Text) Source #

The version label of the application version in the deployment.