[[ApplicationMetadata]] contains application metadata such as application name and version. Amazon Chime SDK for JavaScript allows builders to provide application metadata in the meeting session configuration. This field is optional. Amazon Chime uses application metadata to analyze meeting health trends or identify common failures to improve your meeting experience.

Do not pass any Personal Identifiable Information (PII).

import { MeetingSessionConfiguration, ApplicationMetadata } from 'amazon-chime-sdk-js';

const createMeetingResponse = // CreateMeeting API response.
const createAttendeeResponse = // CreateAttendee API response.
const meetingSessionConfiguration = new MeetingSessionConfiguration(
createMeetingResponse,
createAttendeeResponse
);

meetingSessionConfiguration.applicationMetadata = ApplicationMetadata.create({
appName: 'AppName',
appVersion: '1.0.0'
});

Properties

Methods

Properties

appName: string
appVersion: string

Methods