Amazon Glue · Schema

DeletePartitionIndexRequest

DeletePartitionIndexRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
CatalogId object
DatabaseName object
TableName object
IndexName object
View JSON Schema on GitHub

JSON Schema

glue-delete-partition-index-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-delete-partition-index-request-schema.json",
  "title": "DeletePartitionIndexRequest",
  "description": "DeletePartitionIndexRequest 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 delete a partition index."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "Specifies the name of a table from which you want to delete a partition index."
        }
      ]
    },
    "IndexName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the partition index to be deleted."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "IndexName"
  ]
}