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

Membership

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

The membership object.

interface Membership {
arn: string;
collaborationArn: string;
collaborationCreatorAccountId: string;
collaborationCreatorDisplayName: string;
collaborationId: string;
collaborationName: string;
createTime: Date | number;
id: string;
memberAbilities: MemberAbility[];
queryLogStatus: MembershipQueryLogStatus;
updateTime: Date | number;
}

§Properties

§
arn: string
[src]

The unique ARN for the membership.

§
collaborationArn: string
[src]

The unique ARN for the membership's associated collaboration.

§
collaborationCreatorAccountId: string
[src]

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

§
collaborationCreatorDisplayName: string
[src]

The display name of the collaboration creator.

§
collaborationId: string
[src]

The unique ID for the membership's collaboration.

§
collaborationName: string
[src]

The name of the membership's collaboration.

§
createTime: Date | number
[src]

The time when the membership was created.

§
id: string
[src]

The unique ID of the membership.

§
memberAbilities: MemberAbility[]
[src]

The abilities granted to the collaboration member.

§

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

§

The status of the membership. Valid values are ACTIVE, REMOVED, and COLLABORATION_DELETED.

§
updateTime: Date | number
[src]

The time the membership metadata was last updated.