Amazon Glue · JSON Structure

Glue Create Script Request Structure

CreateScriptRequest schema from Amazon Glue API

Type: object Properties: 3
AnalyticsData CatalogData IntegrationData PipelineETLServerless

CreateScriptRequest is a JSON Structure definition published by Amazon Glue, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DagNodes DagEdges Language

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-create-script-request-structure.json",
  "name": "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."
        }
      ]
    }
  }
}