AWS Step Functions · Schema

MapRunExecutionCounts

Contains details about all of the child workflow executions 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-maprunexecutioncounts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MapRunExecutionCounts",
  "type": "object",
  "properties": {
    "pending": {},
    "running": {},
    "succeeded": {},
    "failed": {},
    "timedOut": {},
    "aborted": {},
    "total": {},
    "resultsWritten": {}
  },
  "required": [
    "pending",
    "running",
    "succeeded",
    "failed",
    "timedOut",
    "aborted",
    "total",
    "resultsWritten"
  ],
  "description": "Contains details about all of the child workflow executions started by a Map Run."
}