Amazon Glue · Schema

GetUnfilteredTableMetadataResponse

GetUnfilteredTableMetadataResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Table object
AuthorizedColumns object
IsRegisteredWithLakeFormation object
CellFilters object
View JSON Schema on GitHub

JSON Schema

glue-get-unfiltered-table-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-table-metadata-response-schema.json",
  "title": "GetUnfilteredTableMetadataResponse",
  "description": "GetUnfilteredTableMetadataResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Table": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Table"
        },
        {
          "description": "A Table object containing the table 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."
        }
      ]
    },
    "CellFilters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnRowFilterList"
        },
        {
          "description": "A list of column row filters."
        }
      ]
    }
  }
}