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

CreateConfiguredTableInput

import type { CreateConfiguredTableInput } from "https://aws-api.deno.dev/v0.4/services/cleanrooms.ts?docs=full";
interface CreateConfiguredTableInput {
allowedColumns: string[];
analysisMethod: AnalysisMethod;
description?: string | null;
name: string;
tableReference: TableReference;
}

§Properties

§
allowedColumns: string[]
[src]

The columns of the underlying table that can be used by collaborations or analysis rules.

§
analysisMethod: AnalysisMethod
[src]

The analysis method for the configured tables. The only valid value is currently DIRECT_QUERY.

§
description?: string | null
[src]

A description for the configured table.

§
name: string
[src]

The name of the configured table.

§
tableReference: TableReference
[src]

A reference to the AWS Glue table being configured.