CloseStatusFilter

Used to filter the closed workflow executions in visibility APIs by their close status.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
status object
View JSON Schema on GitHub

JSON Schema

amazon-swf-closestatusfilter-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CloseStatus"
        },
        {
          "description": " The close status that must match the close status of an execution for it to meet the criteria of this filter."
        }
      ]
    }
  },
  "description": "Used to filter the closed workflow executions in visibility APIs by their close status.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CloseStatusFilter"
}