Amazon Glue · JSON Structure

Glue Delete Table Version Request Structure

DeleteTableVersionRequest schema from Amazon Glue API

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

DeleteTableVersionRequest 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 VersionId

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-delete-table-version-request-structure.json",
  "name": "DeleteTableVersionRequest",
  "description": "DeleteTableVersionRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the table. For Hive compatibility, this name is entirely lowercase."
        }
      ]
    },
    "VersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VersionString"
        },
        {
          "description": "The ID of the table version to be deleted. A <code>VersionID</code> is a string representation of an integer. Each version is incremented by 1."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "VersionId"
  ]
}