Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Returns information about the specified workflow execution including its type and some statistics.
This operation is eventually consistent. The results are best effort and may not exactly reflect recent updates and changes.
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
- data DescribeWorkflowExecution = DescribeWorkflowExecution' {}
- newDescribeWorkflowExecution :: Text -> WorkflowExecution -> DescribeWorkflowExecution
- describeWorkflowExecution_domain :: Lens' DescribeWorkflowExecution Text
- describeWorkflowExecution_execution :: Lens' DescribeWorkflowExecution WorkflowExecution
- data DescribeWorkflowExecutionResponse = DescribeWorkflowExecutionResponse' {}
- newDescribeWorkflowExecutionResponse :: Int -> WorkflowExecutionInfo -> WorkflowExecutionConfiguration -> WorkflowExecutionOpenCounts -> DescribeWorkflowExecutionResponse
- describeWorkflowExecutionResponse_latestActivityTaskTimestamp :: Lens' DescribeWorkflowExecutionResponse (Maybe UTCTime)
- describeWorkflowExecutionResponse_latestExecutionContext :: Lens' DescribeWorkflowExecutionResponse (Maybe Text)
- describeWorkflowExecutionResponse_httpStatus :: Lens' DescribeWorkflowExecutionResponse Int
- describeWorkflowExecutionResponse_executionInfo :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionInfo
- describeWorkflowExecutionResponse_executionConfiguration :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionConfiguration
- describeWorkflowExecutionResponse_openCounts :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionOpenCounts
Creating a Request
data DescribeWorkflowExecution Source #
See: newDescribeWorkflowExecution
smart constructor.
DescribeWorkflowExecution' | |
|
Instances
newDescribeWorkflowExecution Source #
Create a value of DescribeWorkflowExecution
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:domain:DescribeWorkflowExecution'
, describeWorkflowExecution_domain
- The name of the domain containing the workflow execution.
$sel:execution:DescribeWorkflowExecution'
, describeWorkflowExecution_execution
- The workflow execution to describe.
Request Lenses
describeWorkflowExecution_domain :: Lens' DescribeWorkflowExecution Text Source #
The name of the domain containing the workflow execution.
describeWorkflowExecution_execution :: Lens' DescribeWorkflowExecution WorkflowExecution Source #
The workflow execution to describe.
Destructuring the Response
data DescribeWorkflowExecutionResponse Source #
Contains details about a workflow execution.
See: newDescribeWorkflowExecutionResponse
smart constructor.
DescribeWorkflowExecutionResponse' | |
|
Instances
newDescribeWorkflowExecutionResponse Source #
:: Int | |
-> WorkflowExecutionInfo | |
-> WorkflowExecutionConfiguration |
|
-> WorkflowExecutionOpenCounts | |
-> DescribeWorkflowExecutionResponse |
Create a value of DescribeWorkflowExecutionResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:latestActivityTaskTimestamp:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_latestActivityTaskTimestamp
- 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.
$sel:latestExecutionContext:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_latestExecutionContext
- 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.
$sel:httpStatus:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_httpStatus
- The response's http status code.
$sel:executionInfo:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_executionInfo
- Information about the workflow execution.
$sel:executionConfiguration:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_executionConfiguration
- The configuration settings for this workflow execution including timeout
values, tasklist etc.
$sel:openCounts:DescribeWorkflowExecutionResponse'
, describeWorkflowExecutionResponse_openCounts
- The number of tasks for this workflow execution. This includes open and
closed tasks of all types.
Response Lenses
describeWorkflowExecutionResponse_latestActivityTaskTimestamp :: 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.
describeWorkflowExecutionResponse_latestExecutionContext :: 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.
describeWorkflowExecutionResponse_httpStatus :: Lens' DescribeWorkflowExecutionResponse Int Source #
The response's http status code.
describeWorkflowExecutionResponse_executionInfo :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionInfo Source #
Information about the workflow execution.
describeWorkflowExecutionResponse_executionConfiguration :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionConfiguration Source #
The configuration settings for this workflow execution including timeout values, tasklist etc.
describeWorkflowExecutionResponse_openCounts :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionOpenCounts Source #
The number of tasks for this workflow execution. This includes open and closed tasks of all types.