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

Threshold

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

The threshold used with a non-aggregate check expression. The non-aggregate check expression will be applied to each row in a specific column. Then the threshold will be used to determine whether the validation succeeds.

interface Threshold {
Type?: ThresholdType | null;
Unit?: ThresholdUnit | null;
Value: number;
}

§Properties

§
Type?: ThresholdType | null
[src]

The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.

§
Unit?: ThresholdUnit | null
[src]

Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.

§
Value: number
[src]

The value of a threshold.