amazonka-elasticbeanstalk-2.0: Amazon Elastic Beanstalk 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.ElasticBeanstalk.Types.ApplicationVersionDescription

Description

 
Synopsis

Documentation

data ApplicationVersionDescription Source #

Describes the properties of an application version.

See: newApplicationVersionDescription smart constructor.

Constructors

ApplicationVersionDescription' 

Fields

  • applicationName :: Maybe Text

    The name of the application to which the application version belongs.

  • applicationVersionArn :: Maybe Text

    The Amazon Resource Name (ARN) of the application version.

  • buildArn :: Maybe Text

    Reference to the artifact from the AWS CodeBuild build.

  • dateCreated :: Maybe ISO8601

    The creation date of the application version.

  • dateUpdated :: Maybe ISO8601

    The last modified date of the application version.

  • description :: Maybe Text

    The description of the application version.

  • sourceBuildInformation :: Maybe SourceBuildInformation

    If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.

  • sourceBundle :: Maybe S3Location

    The storage location of the application version's source bundle in Amazon S3.

  • status :: Maybe ApplicationVersionStatus

    The processing status of the application version. Reflects the state of the application version during its creation. Many of the values are only applicable if you specified True for the Process parameter of the CreateApplicationVersion action. The following list describes the possible values.

    • Unprocessed – Application version wasn't pre-processed or validated. Elastic Beanstalk will validate configuration files during deployment of the application version to an environment.
    • Processing – Elastic Beanstalk is currently processing the application version.
    • Building – Application version is currently undergoing an AWS CodeBuild build.
    • Processed – Elastic Beanstalk was successfully pre-processed and validated.
    • Failed – Either the AWS CodeBuild build failed or configuration files didn't pass validation. This application version isn't usable.
  • versionLabel :: Maybe Text

    A unique identifier for the application version.

Instances

Instances details
FromXML ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

Generic ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

Associated Types

type Rep ApplicationVersionDescription :: Type -> Type #

Read ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

Show ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

NFData ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

Eq ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

Hashable ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

type Rep ApplicationVersionDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription

type Rep ApplicationVersionDescription = D1 ('MetaData "ApplicationVersionDescription" "Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescription" "amazonka-elasticbeanstalk-2.0-HLGGuY0kjXTIKSbM7JuMHy" 'False) (C1 ('MetaCons "ApplicationVersionDescription'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "applicationVersionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "buildArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "dateCreated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "dateUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601))))) :*: ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourceBuildInformation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SourceBuildInformation))) :*: (S1 ('MetaSel ('Just "sourceBundle") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3Location)) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationVersionStatus)) :*: S1 ('MetaSel ('Just "versionLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newApplicationVersionDescription :: ApplicationVersionDescription Source #

Create a value of ApplicationVersionDescription 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:applicationName:ApplicationVersionDescription', applicationVersionDescription_applicationName - The name of the application to which the application version belongs.

$sel:applicationVersionArn:ApplicationVersionDescription', applicationVersionDescription_applicationVersionArn - The Amazon Resource Name (ARN) of the application version.

$sel:buildArn:ApplicationVersionDescription', applicationVersionDescription_buildArn - Reference to the artifact from the AWS CodeBuild build.

$sel:dateCreated:ApplicationVersionDescription', applicationVersionDescription_dateCreated - The creation date of the application version.

$sel:dateUpdated:ApplicationVersionDescription', applicationVersionDescription_dateUpdated - The last modified date of the application version.

$sel:description:ApplicationVersionDescription', applicationVersionDescription_description - The description of the application version.

$sel:sourceBuildInformation:ApplicationVersionDescription', applicationVersionDescription_sourceBuildInformation - If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.

$sel:sourceBundle:ApplicationVersionDescription', applicationVersionDescription_sourceBundle - The storage location of the application version's source bundle in Amazon S3.

$sel:status:ApplicationVersionDescription', applicationVersionDescription_status - The processing status of the application version. Reflects the state of the application version during its creation. Many of the values are only applicable if you specified True for the Process parameter of the CreateApplicationVersion action. The following list describes the possible values.

  • Unprocessed – Application version wasn't pre-processed or validated. Elastic Beanstalk will validate configuration files during deployment of the application version to an environment.
  • Processing – Elastic Beanstalk is currently processing the application version.
  • Building – Application version is currently undergoing an AWS CodeBuild build.
  • Processed – Elastic Beanstalk was successfully pre-processed and validated.
  • Failed – Either the AWS CodeBuild build failed or configuration files didn't pass validation. This application version isn't usable.

$sel:versionLabel:ApplicationVersionDescription', applicationVersionDescription_versionLabel - A unique identifier for the application version.

applicationVersionDescription_applicationName :: Lens' ApplicationVersionDescription (Maybe Text) Source #

The name of the application to which the application version belongs.

applicationVersionDescription_applicationVersionArn :: Lens' ApplicationVersionDescription (Maybe Text) Source #

The Amazon Resource Name (ARN) of the application version.

applicationVersionDescription_buildArn :: Lens' ApplicationVersionDescription (Maybe Text) Source #

Reference to the artifact from the AWS CodeBuild build.

applicationVersionDescription_sourceBuildInformation :: Lens' ApplicationVersionDescription (Maybe SourceBuildInformation) Source #

If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.

applicationVersionDescription_sourceBundle :: Lens' ApplicationVersionDescription (Maybe S3Location) Source #

The storage location of the application version's source bundle in Amazon S3.

applicationVersionDescription_status :: Lens' ApplicationVersionDescription (Maybe ApplicationVersionStatus) Source #

The processing status of the application version. Reflects the state of the application version during its creation. Many of the values are only applicable if you specified True for the Process parameter of the CreateApplicationVersion action. The following list describes the possible values.

  • Unprocessed – Application version wasn't pre-processed or validated. Elastic Beanstalk will validate configuration files during deployment of the application version to an environment.
  • Processing – Elastic Beanstalk is currently processing the application version.
  • Building – Application version is currently undergoing an AWS CodeBuild build.
  • Processed – Elastic Beanstalk was successfully pre-processed and validated.
  • Failed – Either the AWS CodeBuild build failed or configuration files didn't pass validation. This application version isn't usable.