Amazon Glue · Schema

ListTriggersRequest

ListTriggersRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
NextToken object
DependentJobName object
MaxResults object
Tags object
View JSON Schema on GitHub

JSON Schema

glue-list-triggers-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-list-triggers-request-schema.json",
  "title": "ListTriggersRequest",
  "description": "ListTriggersRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "A continuation token, if this is a continuation request."
        }
      ]
    },
    "DependentJobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": " The name of the job for which to retrieve triggers. The trigger that can start this job is returned. If there is no such trigger, all triggers are returned."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "The maximum size of a list to return."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "Specifies to return only these tagged resources."
        }
      ]
    }
  }
}