Amazon Glue · JSON Structure

Glue Run Statement Request Structure

RunStatementRequest schema from Amazon Glue API

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

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

Properties

SessionId Code RequestOrigin

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-run-statement-request-structure.json",
  "name": "RunStatementRequest",
  "description": "RunStatementRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "SessionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The Session Id of the statement to be run."
        }
      ]
    },
    "Code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationStatementCodeString"
        },
        {
          "description": "The statement code to be run."
        }
      ]
    },
    "RequestOrigin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The origin of the request."
        }
      ]
    }
  },
  "required": [
    "SessionId",
    "Code"
  ]
}