ExecutionTimeFilter

Used to filter the workflow executions in visibility APIs by various time-based rules. Each parameter, if specified, defines a rule that must be satisfied by each returned query result. The parameter values are in the Unix Time format. For example: "oldestDate": 1325376070.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
oldestDate object
latestDate object
View JSON Schema on GitHub

JSON Schema

amazon-swf-executiontimefilter-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "oldestDate"
  ],
  "properties": {
    "oldestDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Specifies the oldest start or close date and time to return."
        }
      ]
    },
    "latestDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Specifies the latest start or close date and time to return."
        }
      ]
    }
  },
  "description": "Used to filter the workflow executions in visibility APIs by various time-based rules. Each parameter, if specified, defines a rule that must be satisfied by each returned query result. The parameter values are in the <a href=\"https://en.wikipedia.org/wiki/Unix_time\">Unix Time format</a>. For example: <code>\"oldestDate\": 1325376070.</code> ",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExecutionTimeFilter"
}