Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Provides information about a Map Run's configuration, progress, and results. For more information, see Examining Map Run in the Step Functions Developer Guide.
Synopsis
- data DescribeMapRun = DescribeMapRun' {}
- newDescribeMapRun :: Text -> DescribeMapRun
- describeMapRun_mapRunArn :: Lens' DescribeMapRun Text
- data DescribeMapRunResponse = DescribeMapRunResponse' {}
- newDescribeMapRunResponse :: Int -> Text -> Text -> MapRunStatus -> UTCTime -> Natural -> Double -> Natural -> MapRunItemCounts -> MapRunExecutionCounts -> DescribeMapRunResponse
- describeMapRunResponse_stopDate :: Lens' DescribeMapRunResponse (Maybe UTCTime)
- describeMapRunResponse_httpStatus :: Lens' DescribeMapRunResponse Int
- describeMapRunResponse_mapRunArn :: Lens' DescribeMapRunResponse Text
- describeMapRunResponse_executionArn :: Lens' DescribeMapRunResponse Text
- describeMapRunResponse_status :: Lens' DescribeMapRunResponse MapRunStatus
- describeMapRunResponse_startDate :: Lens' DescribeMapRunResponse UTCTime
- describeMapRunResponse_maxConcurrency :: Lens' DescribeMapRunResponse Natural
- describeMapRunResponse_toleratedFailurePercentage :: Lens' DescribeMapRunResponse Double
- describeMapRunResponse_toleratedFailureCount :: Lens' DescribeMapRunResponse Natural
- describeMapRunResponse_itemCounts :: Lens' DescribeMapRunResponse MapRunItemCounts
- describeMapRunResponse_executionCounts :: Lens' DescribeMapRunResponse MapRunExecutionCounts
Creating a Request
data DescribeMapRun Source #
See: newDescribeMapRun
smart constructor.
Instances
Create a value of DescribeMapRun
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:
DescribeMapRun
, describeMapRun_mapRunArn
- The Amazon Resource Name (ARN) that identifies a Map Run.
Request Lenses
describeMapRun_mapRunArn :: Lens' DescribeMapRun Text Source #
The Amazon Resource Name (ARN) that identifies a Map Run.
Destructuring the Response
data DescribeMapRunResponse Source #
See: newDescribeMapRunResponse
smart constructor.
DescribeMapRunResponse' | |
|
Instances
newDescribeMapRunResponse Source #
:: Int | |
-> Text | |
-> Text | |
-> MapRunStatus | |
-> UTCTime | |
-> Natural | |
-> Double | |
-> Natural | |
-> MapRunItemCounts | |
-> MapRunExecutionCounts | |
-> DescribeMapRunResponse |
Create a value of DescribeMapRunResponse
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:
DescribeMapRunResponse
, describeMapRunResponse_stopDate
- The date when the Map Run was stopped.
$sel:httpStatus:DescribeMapRunResponse'
, describeMapRunResponse_httpStatus
- The response's http status code.
DescribeMapRun
, describeMapRunResponse_mapRunArn
- The Amazon Resource Name (ARN) that identifies a Map Run.
DescribeMapRunResponse
, describeMapRunResponse_executionArn
- The Amazon Resource Name (ARN) that identifies the execution in which
the Map Run was started.
DescribeMapRunResponse
, describeMapRunResponse_status
- The current status of the Map Run.
DescribeMapRunResponse
, describeMapRunResponse_startDate
- The date when the Map Run was started.
$sel:maxConcurrency:DescribeMapRunResponse'
, describeMapRunResponse_maxConcurrency
- The maximum number of child workflow executions configured to run in
parallel for the Map Run at the same time.
$sel:toleratedFailurePercentage:DescribeMapRunResponse'
, describeMapRunResponse_toleratedFailurePercentage
- The maximum percentage of failed child workflow executions before the
Map Run fails.
$sel:toleratedFailureCount:DescribeMapRunResponse'
, describeMapRunResponse_toleratedFailureCount
- The maximum number of failed child workflow executions before the Map
Run fails.
$sel:itemCounts:DescribeMapRunResponse'
, describeMapRunResponse_itemCounts
- A JSON object that contains information about the total number of items,
and the item count for each processing status, such as pending
and
failed
.
$sel:executionCounts:DescribeMapRunResponse'
, describeMapRunResponse_executionCounts
- A JSON object that contains information about the total number of child
workflow executions for the Map Run, and the count of child workflow
executions for each status, such as failed
and succeeded
.
Response Lenses
describeMapRunResponse_stopDate :: Lens' DescribeMapRunResponse (Maybe UTCTime) Source #
The date when the Map Run was stopped.
describeMapRunResponse_httpStatus :: Lens' DescribeMapRunResponse Int Source #
The response's http status code.
describeMapRunResponse_mapRunArn :: Lens' DescribeMapRunResponse Text Source #
The Amazon Resource Name (ARN) that identifies a Map Run.
describeMapRunResponse_executionArn :: Lens' DescribeMapRunResponse Text Source #
The Amazon Resource Name (ARN) that identifies the execution in which the Map Run was started.
describeMapRunResponse_status :: Lens' DescribeMapRunResponse MapRunStatus Source #
The current status of the Map Run.
describeMapRunResponse_startDate :: Lens' DescribeMapRunResponse UTCTime Source #
The date when the Map Run was started.
describeMapRunResponse_maxConcurrency :: Lens' DescribeMapRunResponse Natural Source #
The maximum number of child workflow executions configured to run in parallel for the Map Run at the same time.
describeMapRunResponse_toleratedFailurePercentage :: Lens' DescribeMapRunResponse Double Source #
The maximum percentage of failed child workflow executions before the Map Run fails.
describeMapRunResponse_toleratedFailureCount :: Lens' DescribeMapRunResponse Natural Source #
The maximum number of failed child workflow executions before the Map Run fails.
describeMapRunResponse_itemCounts :: Lens' DescribeMapRunResponse MapRunItemCounts Source #
A JSON object that contains information about the total number of items,
and the item count for each processing status, such as pending
and
failed
.
describeMapRunResponse_executionCounts :: Lens' DescribeMapRunResponse MapRunExecutionCounts Source #
A JSON object that contains information about the total number of child
workflow executions for the Map Run, and the count of child workflow
executions for each status, such as failed
and succeeded
.