Amazon Glue DataBrew · JSON Structure

Glue Databrew Create Dataset Request Structure

CreateDatasetRequest schema from Amazon Glue DataBrew API

Type: object Properties: 6 Required: 2
Data AnalyticsData PreparationETLMachine Learning

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

Properties

Name Format FormatOptions Input PathOptions Tags

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-create-dataset-request-structure.json",
  "name": "CreateDatasetRequest",
  "description": "CreateDatasetRequest schema from Amazon Glue DataBrew API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DatasetName"
        },
        {
          "description": "The name of the dataset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space."
        }
      ]
    },
    "Format": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputFormat"
        },
        {
          "description": "The file format of a dataset that is created from an Amazon S3 file or folder."
        }
      ]
    },
    "FormatOptions": {
      "$ref": "#/components/schemas/FormatOptions"
    },
    "Input": {
      "$ref": "#/components/schemas/Input"
    },
    "PathOptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PathOptions"
        },
        {
          "description": "A set of options that defines how DataBrew interprets an Amazon S3 path of the dataset."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Metadata tags to apply to this dataset."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Input"
  ]
}