PendingTaskCount

Contains the count of tasks in a task list.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
count object
truncated object
View JSON Schema on GitHub

JSON Schema

amazon-swf-pendingtaskcount-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "count"
  ],
  "properties": {
    "count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Count"
        },
        {
          "description": "The number of tasks in the task list."
        }
      ]
    },
    "truncated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Truncated"
        },
        {
          "description": "If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value."
        }
      ]
    }
  },
  "description": "Contains the count of tasks in a task list.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PendingTaskCount"
}