Amazon Glue · Schema

BasicCatalogTarget

Specifies a target that uses a Glue Data Catalog table.

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Name object
Inputs object
Database object
Table object
View JSON Schema on GitHub

JSON Schema

glue-basic-catalog-target-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-basic-catalog-target-schema.json",
  "title": "BasicCatalogTarget",
  "description": "Specifies a target that uses a Glue Data Catalog table.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeName"
        },
        {
          "description": "The name of your data target."
        }
      ]
    },
    "Inputs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OneInput"
        },
        {
          "description": "The nodes that are inputs to the data target."
        }
      ]
    },
    "Database": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnclosedInStringProperty"
        },
        {
          "description": "The database that contains the table you want to use as the target. This database must already exist in the Data Catalog."
        }
      ]
    },
    "Table": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnclosedInStringProperty"
        },
        {
          "description": "The table that defines the schema of your output data. This table must already exist in the Data Catalog."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Inputs",
    "Database",
    "Table"
  ]
}