amazonka-swf-1.6.1: Amazon Simple Workflow Service 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.SWF.DescribeWorkflowExecution

Contents

Description

Returns information about the specified workflow execution including its type and some statistics.

Access Control

You can use IAM policies to control this action's access to Amazon SWF resources as follows:

  • Use a Resource element with the domain name to limit the action to only specified domains.
  • Use an Action element to allow or deny permission to call this action.
  • You cannot use an IAM policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED . For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide .

Synopsis

Creating a Request

describeWorkflowExecution Source #

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

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

  • dweDomain - The name of the domain containing the workflow execution.
  • dweExecution - The workflow execution to describe.

data DescribeWorkflowExecution Source #

See: describeWorkflowExecution smart constructor.

Instances
Eq DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Data DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Methods

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

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

toConstr :: DescribeWorkflowExecution -> Constr #

dataTypeOf :: DescribeWorkflowExecution -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Show DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Generic DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Associated Types

type Rep DescribeWorkflowExecution :: Type -> Type #

Hashable DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

ToJSON DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

AWSRequest DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Associated Types

type Rs DescribeWorkflowExecution :: Type #

ToHeaders DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

ToPath DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

ToQuery DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

NFData DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

type Rep DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

type Rep DescribeWorkflowExecution = D1 (MetaData "DescribeWorkflowExecution" "Network.AWS.SWF.DescribeWorkflowExecution" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "DescribeWorkflowExecution'" PrefixI True) (S1 (MetaSel (Just "_dweDomain") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_dweExecution") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 WorkflowExecution)))
type Rs DescribeWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Request Lenses

dweDomain :: Lens' DescribeWorkflowExecution Text Source #

The name of the domain containing the workflow execution.

Destructuring the Response

describeWorkflowExecutionResponse Source #

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

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

  • dwersLatestActivityTaskTimestamp - The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.
  • dwersLatestExecutionContext - The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using RespondDecisionTaskCompleted .
  • dwersResponseStatus - -- | The response status code.
  • dwersExecutionInfo - Information about the workflow execution.
  • dwersExecutionConfiguration - The configuration settings for this workflow execution including timeout values, tasklist etc.
  • dwersOpenCounts - The number of tasks for this workflow execution. This includes open and closed tasks of all types.

data DescribeWorkflowExecutionResponse Source #

Contains details about a workflow execution.

See: describeWorkflowExecutionResponse smart constructor.

Instances
Eq DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Data DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Methods

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

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

toConstr :: DescribeWorkflowExecutionResponse -> Constr #

dataTypeOf :: DescribeWorkflowExecutionResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Show DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Generic DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

Associated Types

type Rep DescribeWorkflowExecutionResponse :: Type -> Type #

NFData DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

type Rep DescribeWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.DescribeWorkflowExecution

type Rep DescribeWorkflowExecutionResponse = D1 (MetaData "DescribeWorkflowExecutionResponse" "Network.AWS.SWF.DescribeWorkflowExecution" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "DescribeWorkflowExecutionResponse'" PrefixI True) ((S1 (MetaSel (Just "_dwersLatestActivityTaskTimestamp") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 (MetaSel (Just "_dwersLatestExecutionContext") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_dwersResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))) :*: (S1 (MetaSel (Just "_dwersExecutionInfo") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 WorkflowExecutionInfo) :*: (S1 (MetaSel (Just "_dwersExecutionConfiguration") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 WorkflowExecutionConfiguration) :*: S1 (MetaSel (Just "_dwersOpenCounts") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 WorkflowExecutionOpenCounts)))))

Response Lenses

dwersLatestActivityTaskTimestamp :: Lens' DescribeWorkflowExecutionResponse (Maybe UTCTime) Source #

The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.

dwersLatestExecutionContext :: Lens' DescribeWorkflowExecutionResponse (Maybe Text) Source #

The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using RespondDecisionTaskCompleted .

dwersExecutionConfiguration :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionConfiguration Source #

The configuration settings for this workflow execution including timeout values, tasklist etc.

dwersOpenCounts :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionOpenCounts Source #

The number of tasks for this workflow execution. This includes open and closed tasks of all types.