Amazon Glue · Schema

GetJobBookmarkRequest

GetJobBookmarkRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

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

JSON Schema

glue-get-job-bookmark-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-bookmark-request-schema.json",
  "title": "GetJobBookmarkRequest",
  "description": "GetJobBookmarkRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobName"
        },
        {
          "description": "The name of the job in question."
        }
      ]
    },
    "RunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RunId"
        },
        {
          "description": "The unique run identifier associated with this job run."
        }
      ]
    }
  },
  "required": [
    "JobName"
  ]
}