Amazon Glue · JSON Structure

Glue Update Trigger Request Structure

UpdateTriggerRequest schema from Amazon Glue API

Type: object Properties: 2 Required: 2
AnalyticsData CatalogData IntegrationData PipelineETLServerless

UpdateTriggerRequest is a JSON Structure definition published by Amazon Glue, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name TriggerUpdate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-update-trigger-request-structure.json",
  "name": "UpdateTriggerRequest",
  "description": "UpdateTriggerRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the trigger to update."
        }
      ]
    },
    "TriggerUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TriggerUpdate"
        },
        {
          "description": "The new values with which to update the trigger."
        }
      ]
    }
  },
  "required": [
    "Name",
    "TriggerUpdate"
  ]
}