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

Description

Updates the specified configuration template to have the specified properties or configuration option values.

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

Related Topics

  • DescribeConfigurationOptions
Synopsis

Creating a Request

data UpdateConfigurationTemplate Source #

The result message containing the options for the specified solution stack.

See: newUpdateConfigurationTemplate smart constructor.

Constructors

UpdateConfigurationTemplate' 

Fields

  • optionsToRemove :: Maybe [OptionSpecification]

    A list of configuration options to remove from the configuration set.

    Constraint: You can remove only UserDefined configuration options.

  • optionSettings :: Maybe [ConfigurationOptionSetting]

    A list of configuration option settings to update with the new specified option value.

  • description :: Maybe Text

    A new description for the configuration.

  • applicationName :: Text

    The name of the application associated with the configuration template to update.

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

  • templateName :: Text

    The name of the configuration template to update.

    If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Instances

Instances details
Eq UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

Read UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

Show UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

Generic UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

Associated Types

type Rep UpdateConfigurationTemplate :: Type -> Type #

NFData UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

Hashable UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

AWSRequest UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

ToHeaders UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

ToPath UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

ToQuery UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

type Rep UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

type Rep UpdateConfigurationTemplate = D1 ('MetaData "UpdateConfigurationTemplate" "Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "UpdateConfigurationTemplate'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "optionsToRemove") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [OptionSpecification])) :*: S1 ('MetaSel ('Just "optionSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting]))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse UpdateConfigurationTemplate Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.UpdateConfigurationTemplate

newUpdateConfigurationTemplate Source #

Create a value of UpdateConfigurationTemplate 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:optionsToRemove:UpdateConfigurationTemplate', updateConfigurationTemplate_optionsToRemove - A list of configuration options to remove from the configuration set.

Constraint: You can remove only UserDefined configuration options.

$sel:optionSettings:UpdateConfigurationTemplate', updateConfigurationTemplate_optionSettings - A list of configuration option settings to update with the new specified option value.

$sel:description:UpdateConfigurationTemplate', updateConfigurationTemplate_description - A new description for the configuration.

$sel:applicationName:UpdateConfigurationTemplate', updateConfigurationTemplate_applicationName - The name of the application associated with the configuration template to update.

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

$sel:templateName:UpdateConfigurationTemplate', updateConfigurationTemplate_templateName - The name of the configuration template to update.

If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Request Lenses

updateConfigurationTemplate_optionsToRemove :: Lens' UpdateConfigurationTemplate (Maybe [OptionSpecification]) Source #

A list of configuration options to remove from the configuration set.

Constraint: You can remove only UserDefined configuration options.

updateConfigurationTemplate_optionSettings :: Lens' UpdateConfigurationTemplate (Maybe [ConfigurationOptionSetting]) Source #

A list of configuration option settings to update with the new specified option value.

updateConfigurationTemplate_applicationName :: Lens' UpdateConfigurationTemplate Text Source #

The name of the application associated with the configuration template to update.

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

updateConfigurationTemplate_templateName :: Lens' UpdateConfigurationTemplate Text Source #

The name of the configuration template to update.

If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Destructuring the Response

data ConfigurationSettingsDescription Source #

Describes the settings for a configuration set.

See: newConfigurationSettingsDescription smart constructor.

Constructors

ConfigurationSettingsDescription' 

Fields

  • templateName :: Maybe Text

    If not null, the name of the configuration template for this configuration set.

  • optionSettings :: Maybe [ConfigurationOptionSetting]

    A list of the configuration options and their values in this configuration set.

  • dateUpdated :: Maybe ISO8601

    The date (in UTC time) when this configuration set was last modified.

  • dateCreated :: Maybe ISO8601

    The date (in UTC time) when this configuration set was created.

  • platformArn :: Maybe Text

    The ARN of the platform version.

  • environmentName :: Maybe Text

    If not null, the name of the environment for this configuration set.

  • applicationName :: Maybe Text

    The name of the application associated with this configuration set.

  • deploymentStatus :: Maybe ConfigurationDeploymentStatus

    If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

    • null: This configuration is not associated with a running environment.
    • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.
    • deployed: This is the configuration that is currently deployed to the associated running environment.
    • failed: This is a draft configuration that failed to successfully deploy.
  • solutionStackName :: Maybe Text

    The name of the solution stack this configuration set uses.

  • description :: Maybe Text

    Describes this configuration set.

Instances

Instances details
Eq ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

Read ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

Show ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

Generic ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

Associated Types

type Rep ConfigurationSettingsDescription :: Type -> Type #

NFData ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

Hashable ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

FromXML ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

type Rep ConfigurationSettingsDescription Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription

type Rep ConfigurationSettingsDescription = D1 ('MetaData "ConfigurationSettingsDescription" "Amazonka.ElasticBeanstalk.Types.ConfigurationSettingsDescription" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "ConfigurationSettingsDescription'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "optionSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting]))) :*: (S1 ('MetaSel ('Just "dateUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 ('MetaSel ('Just "dateCreated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "platformArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ConfigurationDeploymentStatus)) :*: (S1 ('MetaSel ('Just "solutionStackName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newConfigurationSettingsDescription :: ConfigurationSettingsDescription Source #

Create a value of ConfigurationSettingsDescription 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:templateName:ConfigurationSettingsDescription', configurationSettingsDescription_templateName - If not null, the name of the configuration template for this configuration set.

$sel:optionSettings:ConfigurationSettingsDescription', configurationSettingsDescription_optionSettings - A list of the configuration options and their values in this configuration set.

$sel:dateUpdated:ConfigurationSettingsDescription', configurationSettingsDescription_dateUpdated - The date (in UTC time) when this configuration set was last modified.

$sel:dateCreated:ConfigurationSettingsDescription', configurationSettingsDescription_dateCreated - The date (in UTC time) when this configuration set was created.

$sel:platformArn:ConfigurationSettingsDescription', configurationSettingsDescription_platformArn - The ARN of the platform version.

$sel:environmentName:ConfigurationSettingsDescription', configurationSettingsDescription_environmentName - If not null, the name of the environment for this configuration set.

$sel:applicationName:ConfigurationSettingsDescription', configurationSettingsDescription_applicationName - The name of the application associated with this configuration set.

$sel:deploymentStatus:ConfigurationSettingsDescription', configurationSettingsDescription_deploymentStatus - If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

  • null: This configuration is not associated with a running environment.
  • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.
  • deployed: This is the configuration that is currently deployed to the associated running environment.
  • failed: This is a draft configuration that failed to successfully deploy.

$sel:solutionStackName:ConfigurationSettingsDescription', configurationSettingsDescription_solutionStackName - The name of the solution stack this configuration set uses.

$sel:description:ConfigurationSettingsDescription', configurationSettingsDescription_description - Describes this configuration set.

Response Lenses

configurationSettingsDescription_templateName :: Lens' ConfigurationSettingsDescription (Maybe Text) Source #

If not null, the name of the configuration template for this configuration set.

configurationSettingsDescription_optionSettings :: Lens' ConfigurationSettingsDescription (Maybe [ConfigurationOptionSetting]) Source #

A list of the configuration options and their values in this configuration set.

configurationSettingsDescription_dateUpdated :: Lens' ConfigurationSettingsDescription (Maybe UTCTime) Source #

The date (in UTC time) when this configuration set was last modified.

configurationSettingsDescription_dateCreated :: Lens' ConfigurationSettingsDescription (Maybe UTCTime) Source #

The date (in UTC time) when this configuration set was created.

configurationSettingsDescription_environmentName :: Lens' ConfigurationSettingsDescription (Maybe Text) Source #

If not null, the name of the environment for this configuration set.

configurationSettingsDescription_applicationName :: Lens' ConfigurationSettingsDescription (Maybe Text) Source #

The name of the application associated with this configuration set.

configurationSettingsDescription_deploymentStatus :: Lens' ConfigurationSettingsDescription (Maybe ConfigurationDeploymentStatus) Source #

If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

  • null: This configuration is not associated with a running environment.
  • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.
  • deployed: This is the configuration that is currently deployed to the associated running environment.
  • failed: This is a draft configuration that failed to successfully deploy.

configurationSettingsDescription_solutionStackName :: Lens' ConfigurationSettingsDescription (Maybe Text) Source #

The name of the solution stack this configuration set uses.