Amazon Glue · JSON Structure

Glue Batch Update Partition Request Structure

BatchUpdatePartitionRequest schema from Amazon Glue API

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

BatchUpdatePartitionRequest 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 Entries

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-update-partition-request-structure.json",
  "name": "BatchUpdatePartitionRequest",
  "description": "BatchUpdatePartitionRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The ID of the catalog in which the partition is to be updated. Currently, this should be the Amazon Web Services account ID."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the metadata database in which the partition is to be updated."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the metadata table in which the partition is to be updated."
        }
      ]
    },
    "Entries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchUpdatePartitionRequestEntryList"
        },
        {
          "description": "A list of up to 100 <code>BatchUpdatePartitionRequestEntry</code> objects to update."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "Entries"
  ]
}