Amazon Glue · JSON Structure

Glue Batch Delete Partition Request Structure

BatchDeletePartitionRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName TableName PartitionsToDelete

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-batch-delete-partition-request-structure.json",
  "name": "BatchDeletePartitionRequest",
  "description": "BatchDeletePartitionRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the catalog database in which the table in question resides."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the table that contains the partitions to be deleted."
        }
      ]
    },
    "PartitionsToDelete": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchDeletePartitionValueList"
        },
        {
          "description": "A list of <code>PartitionInput</code> structures that define the partitions to be deleted."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "PartitionsToDelete"
  ]
}