Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProfileConfiguration

import type { ProfileConfiguration } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";

Configuration for profile jobs. Configuration can be used to select columns, do evaluations, and override default parameters of evaluations. When configuration is undefined, the profile job will apply default settings to all supported columns.

interface ProfileConfiguration {
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[] | null;
DatasetStatisticsConfiguration?: StatisticsConfiguration | null;
EntityDetectorConfiguration?: EntityDetectorConfiguration | null;
ProfileColumns?: ColumnSelector[] | null;
}

§Properties

§
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[] | null
[src]

List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

§
DatasetStatisticsConfiguration?: StatisticsConfiguration | null
[src]

Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

§
EntityDetectorConfiguration?: EntityDetectorConfiguration | null
[src]

Configuration of entity detection for a profile job. When undefined, entity detection is disabled.

§
ProfileColumns?: ColumnSelector[] | null
[src]

List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.