Amazon Glue · JSON Structure

Glue Update Partition Request Structure

UpdatePartitionRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName TableName PartitionValueList PartitionInput

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-update-partition-request-structure.json",
  "name": "UpdatePartitionRequest",
  "description": "UpdatePartitionRequest 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 updated 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 in which the partition to be updated is located."
        }
      ]
    },
    "PartitionValueList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BoundedPartitionValueList"
        },
        {
          "description": "List of partition key values that define the partition to update."
        }
      ]
    },
    "PartitionInput": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PartitionInput"
        },
        {
          "description": "<p>The new partition object to update the partition to.</p> <p>The <code>Values</code> property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.</p>"
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "PartitionValueList",
    "PartitionInput"
  ]
}