Amazon Glue · JSON Structure

Glue Get Partition Indexes Request Structure

GetPartitionIndexesRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName TableName 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-get-partition-indexes-request-structure.json",
  "name": "GetPartitionIndexesRequest",
  "description": "GetPartitionIndexesRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The catalog ID where the table resides."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "Specifies the name of a database from which you want to retrieve partition indexes."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "Specifies the name of a table for which you want to retrieve the partition indexes."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "A continuation token, included if this is a continuation call."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName"
  ]
}