Amazon Glue · JSON Structure

Glue List Statements Request Structure

ListStatementsRequest schema from Amazon Glue API

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

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

Properties

SessionId RequestOrigin NextToken

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-list-statements-request-structure.json",
  "name": "ListStatementsRequest",
  "description": "ListStatementsRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "SessionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The Session ID of the statements."
        }
      ]
    },
    "RequestOrigin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The origin of the request to list statements."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationToken"
        },
        {
          "description": "A continuation token, if this is a continuation call."
        }
      ]
    }
  },
  "required": [
    "SessionId"
  ]
}