Amazon Glue · Schema

CreateScriptRequest

CreateScriptRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
DagNodes object
DagEdges object
Language object
View JSON Schema on GitHub

JSON Schema

glue-create-script-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-create-script-request-schema.json",
  "title": "CreateScriptRequest",
  "description": "CreateScriptRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "DagNodes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DagNodes"
        },
        {
          "description": "A list of the nodes in the DAG."
        }
      ]
    },
    "DagEdges": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DagEdges"
        },
        {
          "description": "A list of the edges in the DAG."
        }
      ]
    },
    "Language": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Language"
        },
        {
          "description": "The programming language of the resulting code from the DAG."
        }
      ]
    }
  }
}