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

ColumnSelector

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

Selector of a column from a dataset for profile job configuration. One selector includes either a column name or a regular expression.

interface ColumnSelector {
Name?: string | null;
Regex?: string | null;
}

§Properties

§
Name?: string | null
[src]

The name of a column from a dataset.

§
Regex?: string | null
[src]

A regular expression for selecting a column from a dataset.