Amazon Glue · Schema

GetJobRunRequest

GetJobRunRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
JobName object
RunId object
PredecessorsIncluded object
View JSON Schema on GitHub

JSON Schema

glue-get-job-run-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-get-job-run-request-schema.json",
  "title": "GetJobRunRequest",
  "description": "GetJobRunRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "Name of the job definition being run."
        }
      ]
    },
    "RunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdString"
        },
        {
          "description": "The ID of the job run."
        }
      ]
    },
    "PredecessorsIncluded": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanValue"
        },
        {
          "description": "True if a list of predecessor runs should be returned."
        }
      ]
    }
  },
  "required": [
    "JobName",
    "RunId"
  ]
}