Amazon Glue · Schema

GetUnfilteredPartitionMetadataResponse

GetUnfilteredPartitionMetadataResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Partition object
AuthorizedColumns object
IsRegisteredWithLakeFormation object
View JSON Schema on GitHub

JSON Schema

glue-get-unfiltered-partition-metadata-response-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-get-unfiltered-partition-metadata-response-schema.json",
  "title": "GetUnfilteredPartitionMetadataResponse",
  "description": "GetUnfilteredPartitionMetadataResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Partition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Partition"
        },
        {
          "description": "A Partition object containing the partition metadata."
        }
      ]
    },
    "AuthorizedColumns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameStringList"
        },
        {
          "description": "A list of column names that the user has been granted access to."
        }
      ]
    },
    "IsRegisteredWithLakeFormation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "A Boolean value that indicates whether the partition location is registered with Lake Formation."
        }
      ]
    }
  }
}