ListWorkflowTypesInput

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domain object
name object
registrationStatus object
nextPageToken object
maximumPageSize object
reverseOrder object
View JSON Schema on GitHub

JSON Schema

amazon-swf-listworkflowtypesinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "registrationStatus"
  ],
  "title": "ListWorkflowTypesInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain in which the workflow types have been registered."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "If specified, lists the workflow type with this name."
        }
      ]
    },
    "registrationStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegistrationStatus"
        },
        {
          "description": "Specifies the registration status of the workflow types to list."
        }
      ]
    },
    "nextPageToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageToken"
        },
        {
          "description": "<p>If <code>NextPageToken</code> is returned there are more results available. The value of <code>NextPageToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a <code>400</code> error: \"<code>Specified token has exceeded its maximum lifetime</code>\". </p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call. </p>"
        }
      ]
    },
    "maximumPageSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "The maximum number of results that are returned per call. Use <code>nextPageToken</code> to obtain further pages of results. "
        }
      ]
    },
    "reverseOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReverseOrder"
        },
        {
          "description": "When set to <code>true</code>, returns the results in reverse order. By default the results are returned in ascending alphabetical order of the <code>name</code> of the workflow types."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}