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

CreateChannelMembershipRequest

import type { CreateChannelMembershipRequest } from "https://aws-api.deno.dev/v0.3/services/chimesdkmessaging.ts?docs=full";
interface CreateChannelMembershipRequest {
ChannelArn: string;
ChimeBearer: string;
MemberArn: string;
}

§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.

§
MemberArn: string
[src]

The AppInstanceUserArn of the member 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.