amazonka-codepipeline-1.4.5: Amazon CodePipeline 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.CodePipeline.EnableStageTransition

Contents

Description

Enables artifacts in a pipeline to transition to a stage in a pipeline.

Synopsis

Creating a Request

enableStageTransition #

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

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

  • estPipelineName - The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
  • estStageName - The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
  • estTransitionType - Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).

data EnableStageTransition #

Represents the input of an enable stage transition action.

See: enableStageTransition smart constructor.

Instances

Eq EnableStageTransition # 
Data EnableStageTransition # 

Methods

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

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

toConstr :: EnableStageTransition -> Constr #

dataTypeOf :: EnableStageTransition -> DataType #

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

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

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

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

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

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

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

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

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

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

Read EnableStageTransition # 
Show EnableStageTransition # 
Generic EnableStageTransition # 
Hashable EnableStageTransition # 
ToJSON EnableStageTransition # 
NFData EnableStageTransition # 

Methods

rnf :: EnableStageTransition -> () #

AWSRequest EnableStageTransition # 
ToQuery EnableStageTransition # 
ToPath EnableStageTransition # 
ToHeaders EnableStageTransition # 
type Rep EnableStageTransition # 
type Rep EnableStageTransition = D1 (MetaData "EnableStageTransition" "Network.AWS.CodePipeline.EnableStageTransition" "amazonka-codepipeline-1.4.5-7l6xH8NU5nx4wRSql2Kh3c" False) (C1 (MetaCons "EnableStageTransition'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_estPipelineName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_estStageName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_estTransitionType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 StageTransitionType)))))
type Rs EnableStageTransition # 

Request Lenses

estPipelineName :: Lens' EnableStageTransition Text #

The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.

estStageName :: Lens' EnableStageTransition Text #

The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).

estTransitionType :: Lens' EnableStageTransition StageTransitionType #

Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).

Destructuring the Response

enableStageTransitionResponse :: EnableStageTransitionResponse #

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

data EnableStageTransitionResponse #

See: enableStageTransitionResponse smart constructor.

Instances

Eq EnableStageTransitionResponse # 
Data EnableStageTransitionResponse # 

Methods

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

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

toConstr :: EnableStageTransitionResponse -> Constr #

dataTypeOf :: EnableStageTransitionResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read EnableStageTransitionResponse # 
Show EnableStageTransitionResponse # 
Generic EnableStageTransitionResponse # 
NFData EnableStageTransitionResponse # 
type Rep EnableStageTransitionResponse # 
type Rep EnableStageTransitionResponse = D1 (MetaData "EnableStageTransitionResponse" "Network.AWS.CodePipeline.EnableStageTransition" "amazonka-codepipeline-1.4.5-7l6xH8NU5nx4wRSql2Kh3c" False) (C1 (MetaCons "EnableStageTransitionResponse'" PrefixI False) U1)