| 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 |
Amazonka.StepFunctions.Types.MapRunItemCounts
Description
Synopsis
- data MapRunItemCounts = MapRunItemCounts' {}
- newMapRunItemCounts :: Natural -> Natural -> Natural -> Natural -> Natural -> Natural -> Natural -> Natural -> MapRunItemCounts
- mapRunItemCounts_pending :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_running :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_succeeded :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_failed :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_timedOut :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_aborted :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_total :: Lens' MapRunItemCounts Natural
- mapRunItemCounts_resultsWritten :: Lens' MapRunItemCounts Natural
Documentation
data MapRunItemCounts Source #
Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.
See: newMapRunItemCounts smart constructor.
Constructors
| MapRunItemCounts' | |
Fields
| |
Instances
Arguments
| :: Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural | |
| -> Natural | |
| -> MapRunItemCounts |
Create a value of MapRunItemCounts 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:pending:MapRunItemCounts', mapRunItemCounts_pending - The total number of items to process in child workflow executions that
haven't started running yet.
$sel:running:MapRunItemCounts', mapRunItemCounts_running - The total number of items being processed in child workflow executions
that are currently in-progress.
$sel:succeeded:MapRunItemCounts', mapRunItemCounts_succeeded - The total number of items processed in child workflow executions that
have completed successfully.
$sel:failed:MapRunItemCounts', mapRunItemCounts_failed - The total number of items processed in child workflow executions that
have failed.
$sel:timedOut:MapRunItemCounts', mapRunItemCounts_timedOut - The total number of items processed in child workflow executions that
have timed out.
$sel:aborted:MapRunItemCounts', mapRunItemCounts_aborted - The total number of items processed in child workflow executions that
were either stopped by the user or by Step Functions, because the Map
Run failed.
$sel:total:MapRunItemCounts', mapRunItemCounts_total - The total number of items processed in all the child workflow executions
started by a Map Run.
$sel:resultsWritten:MapRunItemCounts', mapRunItemCounts_resultsWritten - Returns the count of items whose results were written by ResultWriter.
For more information, see
ResultWriter
in the Step Functions Developer Guide.
mapRunItemCounts_pending :: Lens' MapRunItemCounts Natural Source #
The total number of items to process in child workflow executions that haven't started running yet.
mapRunItemCounts_running :: Lens' MapRunItemCounts Natural Source #
The total number of items being processed in child workflow executions that are currently in-progress.
mapRunItemCounts_succeeded :: Lens' MapRunItemCounts Natural Source #
The total number of items processed in child workflow executions that have completed successfully.
mapRunItemCounts_failed :: Lens' MapRunItemCounts Natural Source #
The total number of items processed in child workflow executions that have failed.
mapRunItemCounts_timedOut :: Lens' MapRunItemCounts Natural Source #
The total number of items processed in child workflow executions that have timed out.
mapRunItemCounts_aborted :: Lens' MapRunItemCounts Natural Source #
The total number of items processed in child workflow executions that were either stopped by the user or by Step Functions, because the Map Run failed.
mapRunItemCounts_total :: Lens' MapRunItemCounts Natural Source #
The total number of items processed in all the child workflow executions started by a Map Run.
mapRunItemCounts_resultsWritten :: Lens' MapRunItemCounts Natural Source #
Returns the count of items whose results were written by ResultWriter.
For more information, see
ResultWriter
in the Step Functions Developer Guide.