I'm building the back-end of a meeting app that will use AWS Chime Messaging SDK for JavaScript. The idea is that when a user enters a meeting, an AppInstanceUser
is created and associated with the Channel
of that meeting.
Creating the channel and associating the user with it looks quite simple with the JavaScript SDK, however I can't find a way to create the user other than through the CLI, which I don't think is the correct way, because I need to create a new AppInstanceUser
for each new user.
How should I do this? Is there a method to create the AppInstanceUser
using the SDK that I didn't find? Or is there a way to add the new user to the channel without creating a new AppInstanceUser
?