amazonka-elasticbeanstalk-1.6.0: 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.CreatePlatformVersion

Contents

Description

Create a new version of your custom platform.

Synopsis

Creating a Request

createPlatformVersion #

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

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

data CreatePlatformVersion #

Request to create a new platform version.

See: createPlatformVersion smart constructor.

Instances

Eq CreatePlatformVersion # 
Data CreatePlatformVersion # 

Methods

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

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

toConstr :: CreatePlatformVersion -> Constr #

dataTypeOf :: CreatePlatformVersion -> DataType #

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

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

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

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

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

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

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

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

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

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

Read CreatePlatformVersion # 
Show CreatePlatformVersion # 
Generic CreatePlatformVersion # 
Hashable CreatePlatformVersion # 
NFData CreatePlatformVersion # 

Methods

rnf :: CreatePlatformVersion -> () #

AWSRequest CreatePlatformVersion # 
ToHeaders CreatePlatformVersion # 
ToPath CreatePlatformVersion # 
ToQuery CreatePlatformVersion # 
type Rep CreatePlatformVersion # 
type Rep CreatePlatformVersion = D1 * (MetaData "CreatePlatformVersion" "Network.AWS.ElasticBeanstalk.CreatePlatformVersion" "amazonka-elasticbeanstalk-1.6.0-BcDOEGLccBPFNigll9q29v" False) (C1 * (MetaCons "CreatePlatformVersion'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_cpvOptionSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe [ConfigurationOptionSetting]))) (S1 * (MetaSel (Just Symbol "_cpvEnvironmentName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cpvPlatformName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) ((:*:) * (S1 * (MetaSel (Just Symbol "_cpvPlatformVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) (S1 * (MetaSel (Just Symbol "_cpvPlatformDefinitionBundle") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * S3Location))))))
type Rs CreatePlatformVersion # 

Request Lenses

cpvOptionSettings :: Lens' CreatePlatformVersion [ConfigurationOptionSetting] #

The configuration option settings to apply to the builder environment.

cpvEnvironmentName :: Lens' CreatePlatformVersion (Maybe Text) #

The name of the builder environment.

cpvPlatformName :: Lens' CreatePlatformVersion Text #

The name of your custom platform.

cpvPlatformVersion :: Lens' CreatePlatformVersion Text #

The number, such as 1.0.2, for the new platform version.

cpvPlatformDefinitionBundle :: Lens' CreatePlatformVersion S3Location #

The location of the platform definition archive in Amazon S3.

Destructuring the Response

createPlatformVersionResponse #

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

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

data CreatePlatformVersionResponse #

See: createPlatformVersionResponse smart constructor.

Instances

Eq CreatePlatformVersionResponse # 
Data CreatePlatformVersionResponse # 

Methods

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

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

toConstr :: CreatePlatformVersionResponse -> Constr #

dataTypeOf :: CreatePlatformVersionResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read CreatePlatformVersionResponse # 
Show CreatePlatformVersionResponse # 
Generic CreatePlatformVersionResponse # 
NFData CreatePlatformVersionResponse # 
type Rep CreatePlatformVersionResponse # 
type Rep CreatePlatformVersionResponse = D1 * (MetaData "CreatePlatformVersionResponse" "Network.AWS.ElasticBeanstalk.CreatePlatformVersion" "amazonka-elasticbeanstalk-1.6.0-BcDOEGLccBPFNigll9q29v" False) (C1 * (MetaCons "CreatePlatformVersionResponse'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_cpvrsBuilder") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Builder))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cpvrsPlatformSummary") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe PlatformSummary))) (S1 * (MetaSel (Just Symbol "_cpvrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Int)))))

Response Lenses

cpvrsBuilder :: Lens' CreatePlatformVersionResponse (Maybe Builder) #

The builder used to create the custom platform.

cpvrsPlatformSummary :: Lens' CreatePlatformVersionResponse (Maybe PlatformSummary) #

Detailed information about the new version of the custom platform.