Amazon Glue · Schema

UpdatePartitionRequest

UpdatePartitionRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

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

JSON Schema

glue-update-partition-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-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": "<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"
  ]
}