amazonka-elasticbeanstalk-1.4.4: 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.ComposeEnvironments

Contents

Description

Create or update a group of environments that each run a separate component of a single application. Takes a list of version labels that specify application source bundles for each of the environments to create or update. The name of each environment and other required information must be included in the source bundles in an environment manifest named 'env.yaml'. See Compose Environments for details.

Synopsis

Creating a Request

composeEnvironments :: ComposeEnvironments Source #

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

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

data ComposeEnvironments Source #

Request to create or update a group of environments.

See: composeEnvironments smart constructor.

Instances

Eq ComposeEnvironments Source # 
Data ComposeEnvironments Source # 

Methods

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

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

toConstr :: ComposeEnvironments -> Constr #

dataTypeOf :: ComposeEnvironments -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ComposeEnvironments Source # 
Show ComposeEnvironments Source # 
Generic ComposeEnvironments Source # 
Hashable ComposeEnvironments Source # 
NFData ComposeEnvironments Source # 

Methods

rnf :: ComposeEnvironments -> () #

AWSRequest ComposeEnvironments Source # 
ToPath ComposeEnvironments Source # 
ToHeaders ComposeEnvironments Source # 
ToQuery ComposeEnvironments Source # 
type Rep ComposeEnvironments Source # 
type Rep ComposeEnvironments = D1 (MetaData "ComposeEnvironments" "Network.AWS.ElasticBeanstalk.ComposeEnvironments" "amazonka-elasticbeanstalk-1.4.4-6xLHE3NeRVu3b9wYCxQH97" False) (C1 (MetaCons "ComposeEnvironments'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ceVersionLabels") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) ((:*:) (S1 (MetaSel (Just Symbol "_ceApplicationName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ceGroupName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))
type Rs ComposeEnvironments Source # 

Request Lenses

ceVersionLabels :: Lens' ComposeEnvironments [Text] Source #

A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.

ceApplicationName :: Lens' ComposeEnvironments (Maybe Text) Source #

The name of the application to which the specified source bundles belong.

ceGroupName :: Lens' ComposeEnvironments (Maybe Text) Source #

The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.

Destructuring the Response

environmentDescriptionsMessage :: EnvironmentDescriptionsMessage Source #

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

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

data EnvironmentDescriptionsMessage Source #

Result message containing a list of environment descriptions.

See: environmentDescriptionsMessage smart constructor.

Instances

Eq EnvironmentDescriptionsMessage Source # 
Data EnvironmentDescriptionsMessage Source # 

Methods

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

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

toConstr :: EnvironmentDescriptionsMessage -> Constr #

dataTypeOf :: EnvironmentDescriptionsMessage -> DataType #

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

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

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

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

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

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

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

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

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

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

Read EnvironmentDescriptionsMessage Source # 
Show EnvironmentDescriptionsMessage Source # 
Generic EnvironmentDescriptionsMessage Source # 
Hashable EnvironmentDescriptionsMessage Source # 
NFData EnvironmentDescriptionsMessage Source # 
FromXML EnvironmentDescriptionsMessage Source # 
type Rep EnvironmentDescriptionsMessage Source # 
type Rep EnvironmentDescriptionsMessage = D1 (MetaData "EnvironmentDescriptionsMessage" "Network.AWS.ElasticBeanstalk.Types.Product" "amazonka-elasticbeanstalk-1.4.4-6xLHE3NeRVu3b9wYCxQH97" True) (C1 (MetaCons "EnvironmentDescriptionsMessage'" PrefixI True) (S1 (MetaSel (Just Symbol "_edmEnvironments") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [EnvironmentDescription]))))

Response Lenses