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

StartDataQualityRuleRecommendationRunRequest

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

§Properties

§
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.

§
CreatedRulesetName?: string | null
[src]

A name for the ruleset.

§
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.

§
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).