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

ConfiguredTable

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

A table that has been configured for use in a collaboration.

interface ConfiguredTable {
allowedColumns: string[];
analysisMethod: AnalysisMethod;
analysisRuleTypes: ConfiguredTableAnalysisRuleType[];
arn: string;
createTime: Date | number;
description?: string | null;
id: string;
name: string;
tableReference: TableReference;
updateTime: Date | number;
}

§Properties

§
allowedColumns: string[]
[src]

The columns within the underlying AWS Glue table that can be utilized within collaborations.

§
analysisMethod: AnalysisMethod
[src]

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

§

The types of analysis rules associated with this configured table. Valid values are AGGREGATION and LIST. Currently, only one analysis rule may be associated with a configured table.

§
arn: string
[src]

The unique ARN for the configured table.

§
createTime: Date | number
[src]

The time the configured table was created.

§
description?: string | null
[src]

A description for the configured table.

§
id: string
[src]

The unique ID for the configured table.

§
name: string
[src]

A name for the configured table.

§
tableReference: TableReference
[src]

The AWS Glue table that this configured table represents.

§
updateTime: Date | number
[src]

The time the configured table was last updated