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

ConfiguredTableAssociation

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

A configured table association links a configured table to a collaboration.

interface ConfiguredTableAssociation {
arn: string;
configuredTableArn: string;
configuredTableId: string;
createTime: Date | number;
description?: string | null;
id: string;
membershipArn: string;
membershipId: string;
name: string;
roleArn: string;
updateTime: Date | number;
}

§Properties

§
arn: string
[src]

The unique ARN for the configured table association.

§
configuredTableArn: string
[src]

The unique ARN for the configured table that the association refers to.

§
configuredTableId: string
[src]

The unique ID for the configured table that the association refers to.

§
createTime: Date | number
[src]

The time the configured table association was created.

§
description?: string | null
[src]

A description of the configured table association.

§
id: string
[src]

The unique ID for the configured table association.

§
membershipArn: string
[src]

The unique ARN for the membership this configured table association belongs to.

§
membershipId: string
[src]

The unique ID for the membership this configured table association belongs to.

§
name: string
[src]

The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.

§
roleArn: string
[src]

The service will assume this role to access catalog metadata and query the table.

§
updateTime: Date | number
[src]

The time the configured table association was last updated.