{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-update-partition-request-schema.json", "title": "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": "
The new partition object to update the partition to.
The Values property can't be changed. If you want to change the partition key values for a partition, delete and recreate the partition.