amazonka-stepfunctions-1.4.5: Amazon Step Functions 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.StepFunctions.DescribeExecution

Contents

Description

Describes an execution.

Synopsis

Creating a Request

describeExecution Source #

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

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

  • deExecutionARN - The Amazon Resource Name (ARN) of the execution to describe.

data DescribeExecution Source #

See: describeExecution smart constructor.

Instances

Eq DescribeExecution Source # 
Data DescribeExecution Source # 

Methods

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

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

toConstr :: DescribeExecution -> Constr #

dataTypeOf :: DescribeExecution -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeExecution Source # 
Show DescribeExecution Source # 
Generic DescribeExecution Source # 
Hashable DescribeExecution Source # 
ToJSON DescribeExecution Source # 
NFData DescribeExecution Source # 

Methods

rnf :: DescribeExecution -> () #

AWSRequest DescribeExecution Source # 
ToPath DescribeExecution Source # 
ToHeaders DescribeExecution Source # 
ToQuery DescribeExecution Source # 
type Rep DescribeExecution Source # 
type Rep DescribeExecution = D1 (MetaData "DescribeExecution" "Network.AWS.StepFunctions.DescribeExecution" "amazonka-stepfunctions-1.4.5-WXy4AxO2hM72RNEOsME5O" True) (C1 (MetaCons "DescribeExecution'" PrefixI True) (S1 (MetaSel (Just Symbol "_deExecutionARN") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Text)))
type Rs DescribeExecution Source # 

Request Lenses

deExecutionARN :: Lens' DescribeExecution Text Source #

The Amazon Resource Name (ARN) of the execution to describe.

Destructuring the Response

describeExecutionResponse Source #

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

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

data DescribeExecutionResponse Source #

See: describeExecutionResponse smart constructor.

Instances

Eq DescribeExecutionResponse Source # 
Data DescribeExecutionResponse Source # 

Methods

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

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

toConstr :: DescribeExecutionResponse -> Constr #

dataTypeOf :: DescribeExecutionResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeExecutionResponse Source # 
Show DescribeExecutionResponse Source # 
Generic DescribeExecutionResponse Source # 
NFData DescribeExecutionResponse Source # 
type Rep DescribeExecutionResponse Source # 

Response Lenses

dersStopDate :: Lens' DescribeExecutionResponse (Maybe UTCTime) Source #

If the execution has already ended, the date the execution stopped.

dersName :: Lens' DescribeExecutionResponse (Maybe Text) Source #

The name of the execution.

dersOutput :: Lens' DescribeExecutionResponse (Maybe Text) Source #

The JSON output data of the execution.

dersExecutionARN :: Lens' DescribeExecutionResponse Text Source #

The Amazon Resource Name (ARN) that identifies the execution.

dersStateMachineARN :: Lens' DescribeExecutionResponse Text Source #

The Amazon Resource Name (ARN) of the executed stated machine.

dersStatus :: Lens' DescribeExecutionResponse ExecutionStatus Source #

The current status of the execution.

dersStartDate :: Lens' DescribeExecutionResponse UTCTime Source #

The date the execution was started.

dersInput :: Lens' DescribeExecutionResponse Text Source #

The JSON input data of the execution.