Amazon Glue · JSON Structure

Glue Get Unfiltered Partition Metadata Request Structure

GetUnfilteredPartitionMetadataRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName TableName PartitionValues AuditContext SupportedPermissionTypes

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-get-unfiltered-partition-metadata-request-structure.json",
  "name": "GetUnfilteredPartitionMetadataRequest",
  "description": "GetUnfilteredPartitionMetadataRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The catalog ID where the partition resides."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "(Required) Specifies the name of a database that contains the partition."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "(Required) Specifies the name of a table that contains the partition."
        }
      ]
    },
    "PartitionValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ValueStringList"
        },
        {
          "description": "(Required) A list of partition key values."
        }
      ]
    },
    "AuditContext": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuditContext"
        },
        {
          "description": "A structure containing Lake Formation audit context information."
        }
      ]
    },
    "SupportedPermissionTypes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PermissionTypeList"
        },
        {
          "description": "(Required) A list of supported permission types. "
        }
      ]
    }
  },
  "required": [
    "CatalogId",
    "DatabaseName",
    "TableName",
    "PartitionValues",
    "SupportedPermissionTypes"
  ]
}