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

ElasticChannelConfiguration

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

The attributes required to configure and create an elastic channel. An elastic channel can support a maximum of 1-million members.

interface ElasticChannelConfiguration {
MaximumSubChannels: number;
MinimumMembershipPercentage: number;
TargetMembershipsPerSubChannel: number;
}

§Properties

§
MaximumSubChannels: number
[src]

The maximum number of SubChannels that you want to allow in the elastic channel.

§
MinimumMembershipPercentage: number
[src]

The minimum allowed percentage of TargetMembershipsPerSubChannel users. Ceil of the calculated value is used in balancing members among SubChannels of the elastic channel.

§
TargetMembershipsPerSubChannel: number
[src]

The maximum number of members allowed in a SubChannel.