WorkflowTypeDetail

Contains details about a workflow type.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
typeInfo object
configuration object
View JSON Schema on GitHub

JSON Schema

amazon-swf-workflowtypedetail-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "typeInfo",
    "configuration"
  ],
  "properties": {
    "typeInfo": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTypeInfo"
        },
        {
          "description": "<p>General information about the workflow type.</p> <p>The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.</p> <ul> <li> <p> <code>REGISTERED</code> \u2013 The type is registered and available. Workers supporting this type should be running.</p> </li> <li> <p> <code>DEPRECATED</code> \u2013 The type was deprecated using <a>DeprecateWorkflowType</a>, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.</p> </li> </ul>"
        }
      ]
    },
    "configuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTypeConfiguration"
        },
        {
          "description": "Configuration settings of the workflow type registered through <a>RegisterWorkflowType</a> "
        }
      ]
    }
  },
  "description": "Contains details about a workflow type.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WorkflowTypeDetail"
}