终止支持通知: AWS 将于 2026 年 2 月 20 日终止对 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);