将 AddUserToGroup
与 AWS SDK 或 CLI 配合使用
以下代码示例演示如何使用 AddUserToGroup
。
操作示例是大型程序的代码摘录,必须在上下文中运行。在以下代码示例中,您可以查看此操作的上下文:
- .NET
-
- AWS SDK for .NET
-
注意
查看 GitHub,了解更多信息。查找完整示例,学习如何在 AWS 代码示例存储库
中进行设置和运行。 /// <summary> /// Add an existing IAM user to an existing IAM group. /// </summary> /// <param name="userName">The username of the user to add.</param> /// <param name="groupName">The name of the group to add the user to.</param> /// <returns>A Boolean value indicating the success of the action.</returns> public async Task<bool> AddUserToGroupAsync(string userName, string groupName) { var response = await _IAMService.AddUserToGroupAsync(new AddUserToGroupRequest { GroupName = groupName, UserName = userName, }); return response.HttpStatusCode == HttpStatusCode.OK; }
-
有关 API 详细信息,请参阅《AWS SDK for .NET API 参考》中的 AddUserToGroup。
-
- CLI
-
- AWS CLI
-
要将用户添加到 IAM 组
以下
add-user-to-group
命令可将名为Bob
的 IAM 用户添加到名为Admins
的 IAM 组。aws iam add-user-to-group \ --user-name
Bob
\ --group-nameAdmins
此命令不生成任何输出。
有关更多信息,请参阅《AWS IAM 用户指南》中的在 IAM 用户组中添加和删除用户。
-
有关 API 详细信息,请参阅《AWS CLI 命令参考》中的 AddUserToGroup
。
-
- PowerShell
-
- 适用于 PowerShell 的工具
-
示例 1:此命令将名为
Bob
的用户添加到名为Admins
的组中。Add-IAMUserToGroup -UserName "Bob" -GroupName "Admins"
-
有关 API 详细信息,请参阅《AWS Tools for PowerShell Cmdlet 参考》中的 AddUserToGroup。
-
有关 AWS SDK 开发人员指南和代码示例的完整列表,请参阅 将此服务与 AWS SDK 结合使用。本主题还包括有关入门的信息以及有关先前的 SDK 版本的详细信息。
AddRoleToInstanceProfile
AttachGroupPolicy