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

ChimeSDKMeetings

import { ChimeSDKMeetings } from "https://aws-api.deno.dev/v0.3/services/chimesdkmeetings.ts?docs=full";
class ChimeSDKMeetings {
constructor(apiFactory: client.ApiFactory);
async batchCreateAttendee(params: BatchCreateAttendeeRequest, opts?: client.RequestOptions): Promise<BatchCreateAttendeeResponse>;
async createAttendee(params: CreateAttendeeRequest, opts?: client.RequestOptions): Promise<CreateAttendeeResponse>;
async createMeeting(params: CreateMeetingRequest, opts?: client.RequestOptions): Promise<CreateMeetingResponse>;
async createMeetingWithAttendees(params: CreateMeetingWithAttendeesRequest, opts?: client.RequestOptions): Promise<CreateMeetingWithAttendeesResponse>;
async deleteAttendee(params: DeleteAttendeeRequest, opts?: client.RequestOptions): Promise<void>;
async deleteMeeting(params: DeleteMeetingRequest, opts?: client.RequestOptions): Promise<void>;
async getAttendee(params: GetAttendeeRequest, opts?: client.RequestOptions): Promise<GetAttendeeResponse>;
async getMeeting(params: GetMeetingRequest, opts?: client.RequestOptions): Promise<GetMeetingResponse>;
async listAttendees(params: ListAttendeesRequest, opts?: client.RequestOptions): Promise<ListAttendeesResponse>;
async startMeetingTranscription(params: StartMeetingTranscriptionRequest, opts?: client.RequestOptions): Promise<void>;
async stopMeetingTranscription(params: StopMeetingTranscriptionRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new ChimeSDKMeetings(apiFactory: client.ApiFactory)
[src]

§Methods

§

Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§
deleteAttendee(params: DeleteAttendeeRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§
deleteMeeting(params: DeleteMeetingRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§

Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

§
startMeetingTranscription(params: StartMeetingTranscriptionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Starts transcription for the specified meetingId.

§
stopMeetingTranscription(params: StopMeetingTranscriptionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Stops transcription for the specified meetingId.

§Static Properties