Amazon Glue · Schema

ListSessionsRequest

ListSessionsRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
NextToken object
MaxResults object
Tags object
RequestOrigin object
View JSON Schema on GitHub

JSON Schema

glue-list-sessions-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-list-sessions-request-schema.json",
  "title": "ListSessionsRequest",
  "description": "ListSessionsRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationToken"
        },
        {
          "description": "The token for the next set of results, or null if there are no more result. "
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "The maximum number of results. "
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "Tags belonging to the session. "
        }
      ]
    },
    "RequestOrigin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The origin of the request. "
        }
      ]
    }
  }
}