TaskList

Represents a task list.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

amazon-swf-tasklist-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the task list."
        }
      ]
    }
  },
  "description": "Represents a task list.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TaskList"
}