Amazon Glue · JSON Structure

Glue Get Unfiltered Table Metadata Request Structure

GetUnfilteredTableMetadataRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName Name 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-table-metadata-request-structure.json",
  "name": "GetUnfilteredTableMetadataRequest",
  "description": "GetUnfilteredTableMetadataRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The catalog ID where the table resides."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "(Required) Specifies the name of a database that contains the table."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "(Required) Specifies the name of a table for which you are requesting metadata."
        }
      ]
    },
    "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",
    "Name",
    "SupportedPermissionTypes"
  ]
}