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

BatchCreateChannelMembershipRequest

import type { BatchCreateChannelMembershipRequest } from "https://aws-api.deno.dev/v0.3/services/chimesdkmessaging.ts?docs=full";
interface BatchCreateChannelMembershipRequest {
ChannelArn: string;
ChimeBearer: string;
MemberArns: string[];
Type?: ChannelMembershipType | null;
}

§Properties

§
ChannelArn: string
[src]

The ARN of the channel to which you're adding users.

§
ChimeBearer: string
[src]

The AppInstanceUserArn of the user that makes the API call.

§
MemberArns: string[]
[src]

The AppInstanceUserArns of the members you want to add to the channel.

§

The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned. This is only supported by moderators.