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

EvaluateDataQuality

import type { EvaluateDataQuality } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";

Specifies your data quality evaluation criteria.

interface EvaluateDataQuality {
Inputs: string[];
Name: string;
Output?: DQTransformOutput | null;
PublishingOptions?: DQResultsPublishingOptions | null;
Ruleset: string;
StopJobOnFailureOptions?: DQStopJobOnFailureOptions | null;
}

§Properties

§
Inputs: string[]
[src]

The inputs of your data quality evaluation.

§
Name: string
[src]

The name of the data quality evaluation.

§
Output?: DQTransformOutput | null
[src]

The output of your data quality evaluation.

§
PublishingOptions?: DQResultsPublishingOptions | null
[src]

Options to configure how your results are published.

§
Ruleset: string
[src]

The ruleset for your data quality evaluation.

§
StopJobOnFailureOptions?: DQStopJobOnFailureOptions | null
[src]

Options to configure how your job will stop if your data quality evaluation fails.