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

CreateDataQualityRulesetRequest

import type { CreateDataQualityRulesetRequest } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";
interface CreateDataQualityRulesetRequest {
ClientToken?: string | null;
Description?: string | null;
Name: string;
Ruleset: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
TargetTable?: DataQualityTargetTable | 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.

§
Description?: string | null
[src]

A description of the data quality ruleset.

§
Name: string
[src]

A unique name for the data quality ruleset.

§
Ruleset: string
[src]

A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags applied to the data quality ruleset.

§
TargetTable?: DataQualityTargetTable | null
[src]

A target table associated with the data quality ruleset.