Amazon Glue DataBrew · JSON Structure

Glue Databrew Database Input Definition Structure

Connection information for dataset input files stored in a database.

Type: object Properties: 4 Required: 1
Data AnalyticsData PreparationETLMachine Learning

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

Properties

GlueConnectionName DatabaseTableName TempDirectory QueryString

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-databrew/refs/heads/main/json-structure/glue-databrew-database-input-definition-structure.json",
  "name": "DatabaseInputDefinition",
  "description": "Connection information for dataset input files stored in a database.",
  "type": "object",
  "properties": {
    "GlueConnectionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueConnectionName"
        },
        {
          "description": "The Glue Connection that stores the connection information for the target database."
        }
      ]
    },
    "DatabaseTableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DatabaseTableName"
        },
        {
          "description": "The table within the target database."
        }
      ]
    },
    "TempDirectory": {
      "$ref": "#/components/schemas/S3Location"
    },
    "QueryString": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryString"
        },
        {
          "description": "Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs."
        }
      ]
    }
  },
  "required": [
    "GlueConnectionName"
  ]
}