The Amazon Chime SDK endpoints and
quotas page lists the service quotas, API rates, and whether you can adjust them. Use
the AWS Console Service
Quota
Fine tuning your API rates
Applications that exceed their API rates receive HTTP Status Code 429 and
ThrottledClientException
messages. You can adjust your API rates, but before you
do, check your application for bugs that may exhaust those rates. For example, you may create
meetings in a loop, or create meetings and not clean up.
Depending on how you create meetings, you might need to modify your code. For example, you
can replace CreateMeeting
and CreateAttendee
with:
-
CreateMeetingWithAttendees – Creates up to 10 attendees per meeting.
-
BatchCreateAttendee – Creates up to 100 attendees per meeting.
You can store created attendees in a database, pull attendee information as invitees join the meeting, and then associate them with the pre-created attendees.