CountClosedWorkflowExecutionsInput

AutomationTask CoordinationWorkflow

Properties

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

JSON Schema

amazon-swf-countclosedworkflowexecutionsinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain"
  ],
  "title": "CountClosedWorkflowExecutionsInput",
  "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": "<p>If specified, only workflow executions that meet the start time criteria of the filter are counted.</p> <note> <p> <code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</p> </note>"
        }
      ]
    },
    "closeTimeFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecutionTimeFilter"
        },
        {
          "description": "<p>If specified, only workflow executions that meet the close time criteria of the filter are counted.</p> <note> <p> <code>startTimeFilter</code> and <code>closeTimeFilter</code> are mutually exclusive. You must specify one of these in a request but not both.</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>closeStatusFilter</code>, <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>"
        }
      ]
    },
    "typeFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowTypeFilter"
        },
        {
          "description": "<p>If specified, indicates the type of the workflow executions to be counted.</p> <note> <p> <code>closeStatusFilter</code>, <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>closeStatusFilter</code>, <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>"
        }
      ]
    },
    "closeStatusFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CloseStatusFilter"
        },
        {
          "description": "<p>If specified, only workflow executions that match this close status are counted. This filter has an affect only if <code>executionStatus</code> is specified as <code>CLOSED</code>.</p> <note> <p> <code>closeStatusFilter</code>, <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#"
}