DescribeWorkflowExecutionInput

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domain object
execution object
View JSON Schema on GitHub

JSON Schema

amazon-swf-describeworkflowexecutioninput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "execution"
  ],
  "title": "DescribeWorkflowExecutionInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain containing the workflow execution."
        }
      ]
    },
    "execution": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowExecution"
        },
        {
          "description": "The workflow execution to describe."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}