ColumnSelector

Selector of a column from a dataset for profile job configuration. One selector includes either a column name or a regular expression.

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Regex object
Name object
View JSON Schema on GitHub

JSON Schema

glue-databrew-column-selector-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-column-selector-schema.json",
  "title": "ColumnSelector",
  "description": "Selector of a column from a dataset for profile job configuration. One selector includes either a column name or a regular expression.",
  "type": "object",
  "properties": {
    "Regex": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnName"
        },
        {
          "description": "A regular expression for selecting a column from a dataset."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnName"
        },
        {
          "description": "The name of a column from a dataset."
        }
      ]
    }
  }
}