S3TableOutputOptions

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

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Location object
View JSON Schema on GitHub

JSON Schema

glue-databrew-s3-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-s3-table-output-options-schema.json",
  "title": "S3TableOutputOptions",
  "description": "Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.",
  "type": "object",
  "properties": {
    "Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": "Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job."
        }
      ]
    }
  },
  "required": [
    "Location"
  ]
}