Sample

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

Data AnalyticsData PreparationETLMachine Learning

Properties

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

JSON Schema

glue-databrew-sample-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-sample-schema.json",
  "title": "Sample",
  "description": "Represents the sample size and sampling type for DataBrew to use for interactive data analysis.",
  "type": "object",
  "properties": {
    "Size": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SampleSize"
        },
        {
          "description": "The number of rows in the sample."
        }
      ]
    },
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SampleType"
        },
        {
          "description": "The way in which DataBrew obtains rows from a dataset."
        }
      ]
    }
  },
  "required": [
    "Type"
  ]
}