AWS Step Functions · Schema

MapRunItemCounts

Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.

iPaaSOrchestrationServerless

Properties

Name Type Description
pending object
running object
succeeded object
failed object
timedOut object
aborted object
total object
resultsWritten object
View JSON Schema on GitHub

JSON Schema

step-functions-maprunitemcounts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MapRunItemCounts",
  "type": "object",
  "properties": {
    "pending": {},
    "running": {},
    "succeeded": {},
    "failed": {},
    "timedOut": {},
    "aborted": {},
    "total": {},
    "resultsWritten": {}
  },
  "required": [
    "pending",
    "running",
    "succeeded",
    "failed",
    "timedOut",
    "aborted",
    "total",
    "resultsWritten"
  ],
  "description": "Contains details about items that were processed in all of the child workflow executions that were started by a Map Run."
}