WorkflowExecution

Represents a workflow execution.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
workflowId object
runId object
View JSON Schema on GitHub

JSON Schema

amazon-swf-workflowexecution-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "workflowId",
    "runId"
  ],
  "properties": {
    "workflowId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowId"
        },
        {
          "description": "The user defined identifier associated with the workflow execution."
        }
      ]
    },
    "runId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowRunId"
        },
        {
          "description": "A system-generated unique identifier for the workflow execution."
        }
      ]
    }
  },
  "description": "Represents a workflow execution.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WorkflowExecution"
}