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

CreateRulesetRequest

import type { CreateRulesetRequest } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";
interface CreateRulesetRequest {
Description?: string | null;
Name: string;
Rules: Rule[];
Tags?: {
[key: string]: string | null | undefined;
}
| null;
TargetArn: string;
}

§Properties

§
Description?: string | null
[src]

The description of the ruleset.

§
Name: string
[src]

The name of the ruleset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

§
Rules: Rule[]
[src]

A list of rules that are defined with the ruleset. A rule includes one or more checks to be validated on a DataBrew dataset.

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

Metadata tags to apply to the ruleset.

§
TargetArn: string
[src]

The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.