amazonka-elasticbeanstalk-1.6.1: Amazon Elastic Beanstalk SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@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.

Related Topics

  • DescribeConfigurationOptions
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:

  • uctOptionsToRemove - A list of configuration options to remove from the configuration set. Constraint: You can remove only UserDefined configuration options.
  • uctOptionSettings - A list of configuration option settings to update with the new specified option value.
  • uctDescription - A new description for the configuration.
  • uctApplicationName - 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 - The name of the configuration template to update. If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

data UpdateConfigurationTemplate Source #

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

See: updateConfigurationTemplate smart constructor.

Instances
Eq UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Data UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

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 # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Show UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Generic UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Associated Types

type Rep UpdateConfigurationTemplate :: Type -> Type #

Hashable UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

AWSRequest UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

Associated Types

type Rs UpdateConfigurationTemplate :: Type #

ToHeaders UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

ToPath UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

ToQuery UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

NFData UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

type Rep UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

type Rep UpdateConfigurationTemplate = D1 (MetaData "UpdateConfigurationTemplate" "Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate" "amazonka-elasticbeanstalk-1.6.1-3CoYM4SK8sc46jAbvlY69V" False) (C1 (MetaCons "UpdateConfigurationTemplate'" PrefixI True) ((S1 (MetaSel (Just "_uctOptionsToRemove") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [OptionSpecification])) :*: S1 (MetaSel (Just "_uctOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting]))) :*: (S1 (MetaSel (Just "_uctDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_uctApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_uctTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs UpdateConfigurationTemplate Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.UpdateConfigurationTemplate

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

configurationSettingsDescription :: ConfigurationSettingsDescription Source #

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

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

  • csdTemplateName - If not null , the name of the configuration template for this configuration set.
  • csdOptionSettings - A list of the configuration options and their values in this configuration set.
  • csdDateUpdated - The date (in UTC time) when this configuration set was last modified.
  • csdDateCreated - The date (in UTC time) when this configuration set was created.
  • csdPlatformARN - The ARN of the platform.
  • csdEnvironmentName - If not null , the name of the environment for this configuration set.
  • csdApplicationName - The name of the application associated with this configuration set.
  • csdDeploymentStatus - 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 - The name of the solution stack this configuration set uses.
  • csdDescription - Describes this configuration set.

data ConfigurationSettingsDescription Source #

Describes the settings for a configuration set.

See: configurationSettingsDescription smart constructor.

Instances
Eq ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

Data ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

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 # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

Show ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

Generic ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

Associated Types

type Rep ConfigurationSettingsDescription :: Type -> Type #

Hashable ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

FromXML ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

NFData ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

type Rep ConfigurationSettingsDescription Source # 
Instance details

Defined in Network.AWS.ElasticBeanstalk.Types.Product

type Rep ConfigurationSettingsDescription = D1 (MetaData "ConfigurationSettingsDescription" "Network.AWS.ElasticBeanstalk.Types.Product" "amazonka-elasticbeanstalk-1.6.1-3CoYM4SK8sc46jAbvlY69V" False) (C1 (MetaCons "ConfigurationSettingsDescription'" PrefixI True) (((S1 (MetaSel (Just "_csdTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_csdOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ConfigurationOptionSetting]))) :*: (S1 (MetaSel (Just "_csdDateUpdated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 (MetaSel (Just "_csdDateCreated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 (MetaSel (Just "_csdPlatformARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 (MetaSel (Just "_csdEnvironmentName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_csdApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_csdDeploymentStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ConfigurationDeploymentStatus)) :*: (S1 (MetaSel (Just "_csdSolutionStackName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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.