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

CreateChannelRequest

import type { CreateChannelRequest } from "https://aws-api.deno.dev/v0.3/services/chimesdkmessaging.ts?docs=full";
interface CreateChannelRequest {
AppInstanceArn: string;
ChimeBearer: string;
ClientRequestToken: string;
Metadata?: string | null;
Mode?: ChannelMode | null;
Name: string;
Privacy?: ChannelPrivacy | null;
Tags?: Tag[] | null;
}

§Properties

§
AppInstanceArn: string
[src]

The ARN of the channel request.

§
ChimeBearer: string
[src]

The AppInstanceUserArn of the user that makes the API call.

§
ClientRequestToken: string
[src]

The client token for the request. An Idempotency token.

§
Metadata?: string | null
[src]

The metadata of the creation request. Limited to 1KB and UTF-8.

§
Mode?: ChannelMode | null
[src]

The channel mode: UNRESTRICTED or RESTRICTED. Administrators, moderators, and channel members can add themselves and other members to unrestricted channels. Only administrators and moderators can add members to restricted channels.

§
Name: string
[src]

The name of the channel.

§
Privacy?: ChannelPrivacy | null
[src]

The channel's privacy level: PUBLIC or PRIVATE. Private channels aren't discoverable by users outside the channel. Public channels are discoverable by anyone in the AppInstance.

§
Tags?: Tag[] | null
[src]

The tags for the creation request.