Amazon Glue · JSON Structure

Glue Batch Stop Job Run Request Structure

BatchStopJobRunRequest schema from Amazon Glue API

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

BatchStopJobRunRequest 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 JobRunIds

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-batch-stop-job-run-request-structure.json",
  "name": "BatchStopJobRunRequest",
  "description": "BatchStopJobRunRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the job definition for which to stop job runs."
        }
      ]
    },
    "JobRunIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchStopJobRunJobRunIdList"
        },
        {
          "description": "A list of the <code>JobRunIds</code> that should be stopped for that job definition."
        }
      ]
    }
  },
  "required": [
    "JobName",
    "JobRunIds"
  ]
}