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

DatasetParameter

import type { DatasetParameter } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";

Represents a dataset paramater that defines type and conditions for a parameter in the Amazon S3 path of the dataset.

interface DatasetParameter {
CreateColumn?: boolean | null;
DatetimeOptions?: DatetimeOptions | null;
Filter?: FilterExpression | null;
Name: string;
}

§Properties

§
CreateColumn?: boolean | null
[src]

Optional boolean value that defines whether the captured value of this parameter should be used to create a new column in a dataset.

§
DatetimeOptions?: DatetimeOptions | null
[src]

Additional parameter options such as a format and a timezone. Required for datetime parameters.

§
Filter?: FilterExpression | null
[src]

The optional filter expression structure to apply additional matching criteria to the parameter.

§
Name: string
[src]

The name of the parameter that is used in the dataset's Amazon S3 path.

§

The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.