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

AWSRequest 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 #

Read UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Show UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

NFData UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Eq UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

Hashable UpdateApplicationVersion Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateApplicationVersion

type AWSResponse 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" "amazonka-elasticbeanstalk-2.0-HLGGuY0kjXTIKSbM7JuMHy" '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))))

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:

UpdateApplicationVersion, updateApplicationVersion_description - A new description for this version.

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.

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
FromXML ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Generic 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

NFData ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Eq ApplicationVersionDescriptionMessage Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ApplicationVersionDescriptionMessage

Hashable 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" "amazonka-elasticbeanstalk-2.0-HLGGuY0kjXTIKSbM7JuMHy" '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