interface MapRunItemCountsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.StepFunctions.CfnMapRunPropsMixin.MapRunItemCountsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstepfunctions#CfnMapRunPropsMixin_MapRunItemCountsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.CfnMapRunPropsMixin.MapRunItemCountsProperty |
Python | aws_cdk.cfn_property_mixins.aws_stepfunctions.CfnMapRunPropsMixin.MapRunItemCountsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_stepfunctions » CfnMapRunPropsMixin » MapRunItemCountsProperty |
Contains details about items processed in all child workflow executions started by a Map Run.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from '@aws-cdk/cfn-property-mixins';
const mapRunItemCountsProperty: stepfunctions.CfnMapRunPropsMixin.MapRunItemCountsProperty = {
aborted: 123,
failed: 123,
failuresNotRedrivable: 123,
pending: 123,
pendingRedrive: 123,
resultsWritten: 123,
running: 123,
succeeded: 123,
timedOut: 123,
total: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| aborted? | number | The total number of items processed in child workflow executions that were stopped. |
| failed? | number | The total number of items processed in child workflow executions that have failed. |
| failures | number | The number of items in child workflow executions that cannot be redriven. |
| pending? | number | The total number of items to process in child workflow executions that haven't started running yet. |
| pending | number | The number of unsuccessful items currently waiting to be redriven. |
| results | number | The count of items whose results were written by ResultWriter. |
| running? | number | The total number of items being processed in child workflow executions that are currently in-progress. |
| succeeded? | number | The total number of items processed in child workflow executions that have completed successfully. |
| timed | number | The total number of items processed in child workflow executions that have timed out. |
| total? | number | The total number of items processed in all the child workflow executions started by a Map Run. |
aborted?
Type:
number
(optional)
The total number of items processed in child workflow executions that were stopped.
failed?
Type:
number
(optional)
The total number of items processed in child workflow executions that have failed.
failuresNotRedrivable?
Type:
number
(optional)
The number of items in child workflow executions that cannot be redriven.
pending?
Type:
number
(optional)
The total number of items to process in child workflow executions that haven't started running yet.
pendingRedrive?
Type:
number
(optional)
The number of unsuccessful items currently waiting to be redriven.
resultsWritten?
Type:
number
(optional)
The count of items whose results were written by ResultWriter.
running?
Type:
number
(optional)
The total number of items being processed in child workflow executions that are currently in-progress.
succeeded?
Type:
number
(optional)
The total number of items processed in child workflow executions that have completed successfully.
timedOut?
Type:
number
(optional)
The total number of items processed in child workflow executions that have timed out.
total?
Type:
number
(optional)
The total number of items processed in all the child workflow executions started by a Map Run.

.NET
Go
Java
Python
TypeScript