DatabaseTableOutputOptions

Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
TempDirectory object
TableName object
View JSON Schema on GitHub

JSON Schema

glue-databrew-database-table-output-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-database-table-output-options-schema.json",
  "title": "DatabaseTableOutputOptions",
  "description": "Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.",
  "type": "object",
  "properties": {
    "TempDirectory": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": "Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DatabaseTableName"
        },
        {
          "description": "A prefix for the name of a table DataBrew will create in the database."
        }
      ]
    }
  },
  "required": [
    "TableName"
  ]
}