CountOpenWorkflowExecutionsInput

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domain object
startTimeFilter object
typeFilter object
tagFilter object
executionFilter object
View JSON Schema on GitHub

JSON Schema

amazon-swf-countopenworkflowexecutionsinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "startTimeFilter"
  ],
  "title": "CountOpenWorkflowExecutionsInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain containing the workflow executions to count."
        }
      ]
    },
    "startTimeFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutionTimeFilter"
        },
        {
          "description": "Specifies the start time criteria that workflow executions must meet in order to be counted."
        }
      ]
    },
    "typeFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTypeFilter"
        },
        {
          "description": "<p>Specifies the type of the workflow executions to be counted.</p> <note> <p> <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</p> </note>"
        }
      ]
    },
    "tagFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagFilter"
        },
        {
          "description": "<p>If specified, only executions that have a tag that matches the filter are counted.</p> <note> <p> <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</p> </note>"
        }
      ]
    },
    "executionFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowExecutionFilter"
        },
        {
          "description": "<p>If specified, only workflow executions matching the <code>WorkflowId</code> in the filter are counted.</p> <note> <p> <code>executionFilter</code>, <code>typeFilter</code> and <code>tagFilter</code> are mutually exclusive. You can specify at most one of these in a request.</p> </note>"
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}