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

Description

Updates the specified application version to have the specified properties.

If a property (for example, description) is not provided, the value remains unchanged. To clear properties, specify an empty string.

Synopsis

Creating a Request

data UpdateApplicationVersion Source #

See: newUpdateApplicationVersion smart constructor.

Constructors

UpdateApplicationVersion' 

Fields

  • description :: Maybe Text

    A new description for this version.

  • applicationName :: Text

    The name of the application associated with this version.

    If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

  • versionLabel :: Text

    The name of the version to update.

    If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

Instances

Instances details
Eq UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Read UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Show UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Generic UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Associated Types

type Rep UpdateApplicationVersion :: Type -> Type #

NFData UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Hashable UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

AWSRequest UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

ToHeaders UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

ToPath UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

ToQuery UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

type Rep UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

type Rep UpdateApplicationVersion = D1 ('MetaData "UpdateApplicationVersion" "Amazonka.ElasticBeanstalk.UpdateApplicationVersion" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "UpdateApplicationVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "versionLabel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

newUpdateApplicationVersion Source #

Create a value of UpdateApplicationVersion 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:description:UpdateApplicationVersion', updateApplicationVersion_description - A new description for this version.

$sel:applicationName:UpdateApplicationVersion', updateApplicationVersion_applicationName - The name of the application associated with this version.

If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

$sel:versionLabel:UpdateApplicationVersion', updateApplicationVersion_versionLabel - The name of the version to update.

If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

Request Lenses

updateApplicationVersion_applicationName :: Lens' UpdateApplicationVersion Text Source #

The name of the application associated with this version.

If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

updateApplicationVersion_versionLabel :: Lens' UpdateApplicationVersion Text Source #

The name of the version to update.

If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

Destructuring the Response

data ApplicationVersionDescriptionMessage Source #

Result message wrapping a single description of an application version.

See: newApplicationVersionDescriptionMessage smart constructor.

Constructors

ApplicationVersionDescriptionMessage' 

Fields

Instances

Instances details
Eq ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Read ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Show ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Generic ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

NFData ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Hashable ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

FromXML ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

type Rep ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

type Rep ApplicationVersionDescriptionMessage = D1 ('MetaData "ApplicationVersionDescriptionMessage" "Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "ApplicationVersionDescriptionMessage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "applicationVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ApplicationVersionDescription))))

newApplicationVersionDescriptionMessage :: ApplicationVersionDescriptionMessage Source #

Create a value of ApplicationVersionDescriptionMessage 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:applicationVersion:ApplicationVersionDescriptionMessage', applicationVersionDescriptionMessage_applicationVersion - The ApplicationVersionDescription of the application version.

Response Lenses