We send the Amazon Chime SDK meeting events to the Amazon Chime backend to analyze meeting health trends or identify common failures. This helps us to improve your meeting experience.
The Amazon Chime SDK for Android will not send below sensitive attributes to the Amazon Chime backend.
Attribute | Description |
---|---|
externalMeetingId |
The Amazon Chime SDK external meeting ID. |
externalUserId |
The Amazon Chime SDK external user ID that can indicate an identity managed by your application. |
To opt out of event ingestion, provide NoopEventReporterFactory
to DefaultMeetingSession
while creating the
meeting session.
See following example code:
DefaultMeetingSession(
meetingSessionConfiguration,
logger,
applicationContext,
DefaultEglCoreFactory(),
NoopEventReporterFactory()
)