amazonka-serverlessrepo-1.6.1: Amazon ServerlessApplicationRepository 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.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Contents

Description

Creates an AWS CloudFormation ChangeSet for the given application.

Synopsis

Creating a Request

createCloudFormationChangeSet Source #

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

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

  • ccfcsSemanticVersion - The semantic version of the application: https://semver.org/
  • ccfcsParameterOverrides - A list of parameter values for the parameters of the application.
  • ccfcsStackName - The name or the unique ID of the stack for which you are creating a change set. AWS CloudFormation generates the change set by comparing this stack's information with the information that you submit, such as a modified template or different parameter input values. Constraints: Minimum length of 1. Pattern: ([a-zA-Z][-a-zA-Z0-9]*)|(arn:b(aws|aws-us-gov|aws-cn)b:[-a-zA-Z0-9:/._+]*)
  • ccfcsApplicationId - The ID of the application to get.

data CreateCloudFormationChangeSet Source #

See: createCloudFormationChangeSet smart constructor.

Instances
Eq CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Data CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Methods

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

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

toConstr :: CreateCloudFormationChangeSet -> Constr #

dataTypeOf :: CreateCloudFormationChangeSet -> DataType #

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

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

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

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

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

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

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

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

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

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

Read CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Show CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Generic CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Associated Types

type Rep CreateCloudFormationChangeSet :: Type -> Type #

Hashable CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

ToJSON CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

AWSRequest CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Associated Types

type Rs CreateCloudFormationChangeSet :: Type #

ToHeaders CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

ToPath CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

ToQuery CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

NFData CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

type Rep CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

type Rep CreateCloudFormationChangeSet = D1 (MetaData "CreateCloudFormationChangeSet" "Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet" "amazonka-serverlessrepo-1.6.1-BrNuDK74DeNKvSny4fhIJ2" False) (C1 (MetaCons "CreateCloudFormationChangeSet'" PrefixI True) ((S1 (MetaSel (Just "_ccfcsSemanticVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ccfcsParameterOverrides") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ParameterValue]))) :*: (S1 (MetaSel (Just "_ccfcsStackName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ccfcsApplicationId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs CreateCloudFormationChangeSet Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Request Lenses

ccfcsParameterOverrides :: Lens' CreateCloudFormationChangeSet [ParameterValue] Source #

A list of parameter values for the parameters of the application.

ccfcsStackName :: Lens' CreateCloudFormationChangeSet (Maybe Text) Source #

The name or the unique ID of the stack for which you are creating a change set. AWS CloudFormation generates the change set by comparing this stack's information with the information that you submit, such as a modified template or different parameter input values. Constraints: Minimum length of 1. Pattern: ([a-zA-Z][-a-zA-Z0-9]*)|(arn:b(aws|aws-us-gov|aws-cn)b:[-a-zA-Z0-9:/._+]*)

Destructuring the Response

createCloudFormationChangeSetResponse Source #

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

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

data CreateCloudFormationChangeSetResponse Source #

Instances
Eq CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Data CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Methods

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

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

toConstr :: CreateCloudFormationChangeSetResponse -> Constr #

dataTypeOf :: CreateCloudFormationChangeSetResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Show CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

Generic CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

NFData CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

type Rep CreateCloudFormationChangeSetResponse Source # 
Instance details

Defined in Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet

type Rep CreateCloudFormationChangeSetResponse = D1 (MetaData "CreateCloudFormationChangeSetResponse" "Network.AWS.ServerlessApplicationRepository.CreateCloudFormationChangeSet" "amazonka-serverlessrepo-1.6.1-BrNuDK74DeNKvSny4fhIJ2" False) (C1 (MetaCons "CreateCloudFormationChangeSetResponse'" PrefixI True) ((S1 (MetaSel (Just "_ccfcsrsSemanticVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ccfcsrsChangeSetId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_ccfcsrsApplicationId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_ccfcsrsStackId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ccfcsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)))))

Response Lenses

ccfcsrsChangeSetId :: Lens' CreateCloudFormationChangeSetResponse (Maybe Text) Source #

The ARN of the change set. Length Constraints: Minimum length of 1. Pattern: Amazon Resource Name (ARN):[-a-zA-Z0-9:/]*

ccfcsrsApplicationId :: Lens' CreateCloudFormationChangeSetResponse (Maybe Text) Source #

The application Amazon Resource Name (ARN).