Amazon Glue · JSON Structure

Glue Update Job Request Structure

UpdateJobRequest schema from Amazon Glue API

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

UpdateJobRequest 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

JobName JobUpdate

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-job-request-structure.json",
  "name": "UpdateJobRequest",
  "description": "UpdateJobRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the job definition to update."
        }
      ]
    },
    "JobUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobUpdate"
        },
        {
          "description": "Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values."
        }
      ]
    }
  },
  "required": [
    "JobName",
    "JobUpdate"
  ]
}