DescribeWorkflowTypeInput

AutomationTask CoordinationWorkflow

Properties

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

JSON Schema

amazon-swf-describeworkflowtypeinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "workflowType"
  ],
  "title": "DescribeWorkflowTypeInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain in which this workflow type is registered."
        }
      ]
    },
    "workflowType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowType"
        },
        {
          "description": "The workflow type to describe."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}