支援終止通知:在 2026 年 2 月 20 日, AWS 將終止對 Amazon Chime 服務的支援。2026 年 2 月 20 日之後,您將無法再存取 Amazon Chime 主控台或 Amazon Chime 應用程式資源。如需詳細資訊,請造訪部落格文章
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
下列範例示範如何邀請多個使用者加入 Amazon Chime Team
帳戶。
List<String> emails = new ArrayList<>();
emails.add("janedoe@example.com
");
emails.add("richardroe@example.net
");
InviteUsersRequest inviteUsersRequest = new InviteUsersRequest()
.withAccountId("chimeAccountId
")
.withUserEmailList(emails);
chime.inviteUsers(inviteUsersRequest);