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

MemberSummary

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

The member object listed by the request.

interface MemberSummary {
abilities: MemberAbility[];
accountId: string;
createTime: Date | number;
displayName: string;
membershipArn?: string | null;
membershipId?: string | null;
status: MemberStatus;
updateTime: Date | number;
}

§Properties

§
abilities: MemberAbility[]
[src]

The abilities granted to the collaboration member.

§
accountId: string
[src]

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

§
createTime: Date | number
[src]

The time when the member was created.

§
displayName: string
[src]

The member's display name.

§
membershipArn?: string | null
[src]

The unique ARN for the member's associated membership, if present.

§
membershipId?: string | null
[src]

The unique ID for the member's associated membership, if present.

§

The status of the member. Valid values are INVITED, ACTIVE, LEFT, and REMOVED.

§
updateTime: Date | number
[src]

The time the member metadata was last updated.