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

Collaboration

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

The multi-party data share environment. The collaboration contains metadata about its purpose and participants.

interface Collaboration {
arn: string;
createTime: Date | number;
creatorAccountId: string;
creatorDisplayName: string;
dataEncryptionMetadata?: DataEncryptionMetadata | null;
description?: string | null;
id: string;
membershipArn?: string | null;
membershipId?: string | null;
memberStatus: MemberStatus;
name: string;
updateTime: Date | number;
}

§Properties

§
arn: string
[src]

The unique ARN for the collaboration.

§
createTime: Date | number
[src]

The time when the collaboration was created.

§
creatorAccountId: string
[src]

The identifier used to reference members of the collaboration. Currently only supports AWS account ID.

§
creatorDisplayName: string
[src]

A display name of the collaboration creator.

§
dataEncryptionMetadata?: DataEncryptionMetadata | null
[src]

The settings for client-side encryption for cryptographic computing.

§
description?: string | null
[src]

A description of the collaboration provided by the collaboration owner.

§
id: string
[src]

The unique ID for the collaboration.

§
membershipArn?: string | null
[src]

The unique ARN for your membership within the collaboration.

§
membershipId?: string | null
[src]

The unique ID for your membership within the collaboration.

§
memberStatus: MemberStatus
[src]

The status of a member in a collaboration.

§
name: string
[src]

A human-readable identifier provided by the collaboration owner. Display names are not unique.

§

An indicator as to whether query logging has been enabled or disabled for the collaboration.

§
updateTime: Date | number
[src]

The time the collaboration metadata was last updated.