amazonka-elasticbeanstalk-1.4.3: Amazon Elastic Beanstalk SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Contents

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

Synopsis

Creating a Request

updateConfigurationTemplate Source #

Creates a value of UpdateConfigurationTemplate with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data UpdateConfigurationTemplate Source #

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

See: updateConfigurationTemplate smart constructor.

Instances

Eq UpdateConfigurationTemplate Source # 
Data UpdateConfigurationTemplate Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateConfigurationTemplate -> c UpdateConfigurationTemplate #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateConfigurationTemplate #

toConstr :: UpdateConfigurationTemplate -> Constr #

dataTypeOf :: UpdateConfigurationTemplate -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UpdateConfigurationTemplate) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateConfigurationTemplate) #

gmapT :: (forall b. Data b => b -> b) -> UpdateConfigurationTemplate -> UpdateConfigurationTemplate #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateConfigurationTemplate -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateConfigurationTemplate -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateConfigurationTemplate -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateConfigurationTemplate -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateConfigurationTemplate -> m UpdateConfigurationTemplate #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateConfigurationTemplate -> m UpdateConfigurationTemplate #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateConfigurationTemplate -> m UpdateConfigurationTemplate #

Read UpdateConfigurationTemplate Source # 
Show UpdateConfigurationTemplate Source # 
Generic UpdateConfigurationTemplate Source # 
Hashable UpdateConfigurationTemplate Source # 
NFData UpdateConfigurationTemplate Source # 
AWSRequest UpdateConfigurationTemplate Source # 
ToQuery UpdateConfigurationTemplate Source # 
ToPath UpdateConfigurationTemplate Source # 
ToHeaders UpdateConfigurationTemplate Source # 
type Rep UpdateConfigurationTemplate Source # 
type Rep UpdateConfigurationTemplate = D1 (MetaData "UpdateConfigurationTemplate" "Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate" "amazonka-elasticbeanstalk-1.4.3-LkXm0y97P014JSWhtZAOmd" False) (C1 (MetaCons "UpdateConfigurationTemplate'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_uctOptionsToRemove") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [OptionSpecification]))) (S1 (MetaSel (Just Symbol "_uctOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting])))) ((:*:) (S1 (MetaSel (Just Symbol "_uctDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_uctApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_uctTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))))
type Rs UpdateConfigurationTemplate Source # 

Request Lenses

uctOptionsToRemove :: Lens' UpdateConfigurationTemplate [OptionSpecification] Source #

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

Constraint: You can remove only UserDefined configuration options.

uctOptionSettings :: Lens' UpdateConfigurationTemplate [ConfigurationOptionSetting] Source #

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

uctDescription :: Lens' UpdateConfigurationTemplate (Maybe Text) Source #

A new description for the configuration.

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

uctTemplateName :: 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: configurationSettingsDescription smart constructor.

Instances

Eq ConfigurationSettingsDescription Source # 
Data ConfigurationSettingsDescription Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ConfigurationSettingsDescription -> c ConfigurationSettingsDescription #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ConfigurationSettingsDescription #

toConstr :: ConfigurationSettingsDescription -> Constr #

dataTypeOf :: ConfigurationSettingsDescription -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ConfigurationSettingsDescription) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ConfigurationSettingsDescription) #

gmapT :: (forall b. Data b => b -> b) -> ConfigurationSettingsDescription -> ConfigurationSettingsDescription #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ConfigurationSettingsDescription -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ConfigurationSettingsDescription -> r #

gmapQ :: (forall d. Data d => d -> u) -> ConfigurationSettingsDescription -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ConfigurationSettingsDescription -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ConfigurationSettingsDescription -> m ConfigurationSettingsDescription #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ConfigurationSettingsDescription -> m ConfigurationSettingsDescription #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ConfigurationSettingsDescription -> m ConfigurationSettingsDescription #

Read ConfigurationSettingsDescription Source # 
Show ConfigurationSettingsDescription Source # 
Generic ConfigurationSettingsDescription Source # 
Hashable ConfigurationSettingsDescription Source # 
NFData ConfigurationSettingsDescription Source # 
FromXML ConfigurationSettingsDescription Source # 
type Rep ConfigurationSettingsDescription Source # 
type Rep ConfigurationSettingsDescription = D1 (MetaData "ConfigurationSettingsDescription" "Network.AWS.ElasticBeanstalk.Types.Product" "amazonka-elasticbeanstalk-1.4.3-LkXm0y97P014JSWhtZAOmd" False) (C1 (MetaCons "ConfigurationSettingsDescription'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_csdTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_csdOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting])))) ((:*:) (S1 (MetaSel (Just Symbol "_csdDateUpdated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ISO8601))) (S1 (MetaSel (Just Symbol "_csdDateCreated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ISO8601))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_csdEnvironmentName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_csdApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_csdDeploymentStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ConfigurationDeploymentStatus))) ((:*:) (S1 (MetaSel (Just Symbol "_csdSolutionStackName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_csdDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))))

Response Lenses

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

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

csdOptionSettings :: Lens' ConfigurationSettingsDescription [ConfigurationOptionSetting] Source #

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

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

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

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

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

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

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

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

The name of the application associated with this configuration set.

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

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

The name of the solution stack this configuration set uses.