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

Channel

import type { Channel } from "https://aws-api.deno.dev/v0.3/services/chimesdkmessaging.ts?docs=full";

The details of a channel.

interface Channel {
ChannelArn?: string | null;
ChannelFlowArn?: string | null;
CreatedBy?: Identity | null;
CreatedTimestamp?: Date | number | null;
LastMessageTimestamp?: Date | number | null;
LastUpdatedTimestamp?: Date | number | null;
Metadata?: string | null;
Mode?: ChannelMode | null;
Name?: string | null;
Privacy?: ChannelPrivacy | null;
}

§Properties

§
ChannelArn?: string | null
[src]

The ARN of a channel.

§
ChannelFlowArn?: string | null
[src]

The ARN of the channel flow.

§
CreatedBy?: Identity | null
[src]

The AppInstanceUser who created the channel.

§
CreatedTimestamp?: Date | number | null
[src]

The time at which the AppInstanceUser created the channel.

§
LastMessageTimestamp?: Date | number | null
[src]

The time at which a member sent the last message in the channel.

§
LastUpdatedTimestamp?: Date | number | null
[src]

The time at which a channel was last updated.

§
Metadata?: string | null
[src]

The channel's metadata.

§
Mode?: ChannelMode | null
[src]

The mode of the channel.

§
Name?: string | null
[src]

The name of a channel.

§
Privacy?: ChannelPrivacy | null
[src]

The channel's privacy setting.