AllowedStatistics

Configuration of statistics that are allowed to be run on columns that contain detected entities. When undefined, no statistics will be computed on columns that contain detected entities.

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Statistics object
View JSON Schema on GitHub

JSON Schema

glue-databrew-allowed-statistics-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-allowed-statistics-schema.json",
  "title": "AllowedStatistics",
  "description": "Configuration of statistics that are allowed to be run on columns that contain detected entities. When undefined, no statistics will be computed on columns that contain detected entities.",
  "type": "object",
  "properties": {
    "Statistics": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StatisticList"
        },
        {
          "description": "One or more column statistics to allow for columns that contain detected entities."
        }
      ]
    }
  },
  "required": [
    "Statistics"
  ]
}