amazonka-elasticbeanstalk-1.4.2: 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.ValidateConfigurationSettings

Contents

Description

Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are valid.

This action returns a list of messages indicating any errors or warnings associated with the selection of option values.

Synopsis

Creating a Request

validateConfigurationSettings Source #

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

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

data ValidateConfigurationSettings Source #

A list of validation messages for a specified configuration template.

See: validateConfigurationSettings smart constructor.

Instances

Eq ValidateConfigurationSettings Source # 
Data ValidateConfigurationSettings Source # 

Methods

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

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

toConstr :: ValidateConfigurationSettings -> Constr #

dataTypeOf :: ValidateConfigurationSettings -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ValidateConfigurationSettings Source # 
Show ValidateConfigurationSettings Source # 
Generic ValidateConfigurationSettings Source # 
Hashable ValidateConfigurationSettings Source # 
NFData ValidateConfigurationSettings Source # 
AWSRequest ValidateConfigurationSettings Source # 
ToPath ValidateConfigurationSettings Source # 
ToHeaders ValidateConfigurationSettings Source # 
ToQuery ValidateConfigurationSettings Source # 
type Rep ValidateConfigurationSettings Source # 
type Rep ValidateConfigurationSettings = D1 (MetaData "ValidateConfigurationSettings" "Network.AWS.ElasticBeanstalk.ValidateConfigurationSettings" "amazonka-elasticbeanstalk-1.4.2-AhPbUQCjkO1G4FK5rH79RR" False) (C1 (MetaCons "ValidateConfigurationSettings'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_vcsTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_vcsEnvironmentName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_vcsApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_vcsOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [ConfigurationOptionSetting])))))
type Rs ValidateConfigurationSettings Source # 

Request Lenses

vcsTemplateName :: Lens' ValidateConfigurationSettings (Maybe Text) Source #

The name of the configuration template to validate the settings against.

Condition: You cannot specify both this and an environment name.

vcsEnvironmentName :: Lens' ValidateConfigurationSettings (Maybe Text) Source #

The name of the environment to validate the settings against.

Condition: You cannot specify both this and a configuration template name.

vcsApplicationName :: Lens' ValidateConfigurationSettings Text Source #

The name of the application that the configuration template or environment belongs to.

vcsOptionSettings :: Lens' ValidateConfigurationSettings [ConfigurationOptionSetting] Source #

A list of the options and desired values to evaluate.

Destructuring the Response

validateConfigurationSettingsResponse Source #

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

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

data ValidateConfigurationSettingsResponse Source #

Provides a list of validation messages.

See: validateConfigurationSettingsResponse smart constructor.

Instances

Eq ValidateConfigurationSettingsResponse Source # 
Data ValidateConfigurationSettingsResponse Source # 

Methods

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

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

toConstr :: ValidateConfigurationSettingsResponse -> Constr #

dataTypeOf :: ValidateConfigurationSettingsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ValidateConfigurationSettingsResponse Source # 
Show ValidateConfigurationSettingsResponse Source # 
Generic ValidateConfigurationSettingsResponse Source # 
NFData ValidateConfigurationSettingsResponse Source # 
type Rep ValidateConfigurationSettingsResponse Source # 
type Rep ValidateConfigurationSettingsResponse = D1 (MetaData "ValidateConfigurationSettingsResponse" "Network.AWS.ElasticBeanstalk.ValidateConfigurationSettings" "amazonka-elasticbeanstalk-1.4.2-AhPbUQCjkO1G4FK5rH79RR" False) (C1 (MetaCons "ValidateConfigurationSettingsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_vcsrsMessages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ValidationMessage]))) (S1 (MetaSel (Just Symbol "_vcsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses