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

Schema

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

A schema is a relation within a collaboration.

interface Schema {
analysisMethod?: AnalysisMethod | null;
analysisRuleTypes: AnalysisRuleType[];
collaborationArn: string;
collaborationId: string;
columns: Column[];
createTime: Date | number;
creatorAccountId: string;
description: string;
name: string;
partitionKeys: Column[];
type: SchemaType;
updateTime: Date | number;
}

§Properties

§
analysisMethod?: AnalysisMethod | null
[src]

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

§
analysisRuleTypes: AnalysisRuleType[]
[src]

The analysis rule types associated with the schema. Valued values are LIST and AGGREGATION. Currently, only one entry is present.

§
collaborationArn: string
[src]

The unique ARN for the collaboration that the schema belongs to.

§
collaborationId: string
[src]

The unique ID for the collaboration that the schema belongs to.

§
columns: Column[]
[src]

The columns for the relation this schema represents.

§
createTime: Date | number
[src]

The time the schema was created.

§
creatorAccountId: string
[src]

The unique account ID for the AWS account that owns the schema.

§
description: string
[src]

A description for the schema.

§
name: string
[src]

A name for the schema. The schema relation is referred to by this name when queried by a protected query.

§
partitionKeys: Column[]
[src]

The partition keys for the data set underlying this schema.

§

The type of schema. The only valid value is currently TABLE.

§
updateTime: Date | number
[src]

The time the schema was last updated.