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

StartDataQualityRulesetEvaluationRunRequest

import type { StartDataQualityRulesetEvaluationRunRequest } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";
interface StartDataQualityRulesetEvaluationRunRequest {
AdditionalRunOptions?: DataQualityEvaluationRunAdditionalRunOptions | null;
ClientToken?: string | null;
DataSource: DataSource;
NumberOfWorkers?: number | null;
Role: string;
RulesetNames: string[];
Timeout?: number | null;
}

§Properties

§

Additional run options you can specify for an evaluation run.

§
ClientToken?: string | null
[src]

Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.

§
DataSource: DataSource
[src]

The data source (Glue table) associated with this run.

§
NumberOfWorkers?: number | null
[src]

The number of G.1X workers to be used in the run. The default is 5.

§
Role: string
[src]

An IAM role supplied to encrypt the results of the run.

§
RulesetNames: string[]
[src]

A list of ruleset names.

§
Timeout?: number | null
[src]

The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).