Amazon Glue · Schema

ListStatementsResponse

ListStatementsResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Statements object
NextToken object
View JSON Schema on GitHub

JSON Schema

glue-list-statements-response-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-list-statements-response-schema.json",
  "title": "ListStatementsResponse",
  "description": "ListStatementsResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Statements": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StatementList"
        },
        {
          "description": "Returns the list of statements."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationToken"
        },
        {
          "description": "A continuation token, if not all statements have yet been returned."
        }
      ]
    }
  }
}