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

CollaborationSummary

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

The metadata of the collaboration.

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

§Properties

§
arn: string
[src]

The ARN of 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]

The display name of the collaboration creator.

§
id: string
[src]

The identifier for the collaboration.

§
membershipArn?: string | null
[src]

The ARN of a member in a collaboration.

§
membershipId?: string | null
[src]

The identifier of a member in a 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.

§
updateTime: Date | number
[src]

The time the collaboration metadata was last updated.