There are more AWS SDK examples available in the AWS Doc SDK Examples
Use ListGroupsForUser
with a CLI
The following code examples show how to use ListGroupsForUser
.
- CLI
-
- AWS CLI
-
To list the groups that an IAM user belongs to
The following
list-groups-for-user
command displays the groups that the IAM user namedBob
belongs to.aws iam list-groups-for-user \ --user-name
Bob
Output:
{ "Groups": [ { "Path": "/", "CreateDate": "2013-05-06T01:18:08Z", "GroupId": "AKIAIOSFODNN7EXAMPLE", "Arn": "arn:aws:iam::123456789012:group/Admin", "GroupName": "Admin" }, { "Path": "/", "CreateDate": "2013-05-06T01:37:28Z", "GroupId": "AKIAI44QH8DHBEXAMPLE", "Arn": "arn:aws:iam::123456789012:group/s3-Users", "GroupName": "s3-Users" } ] }
For more information, see Managing IAM user groups in the AWS IAM User Guide.
-
For API details, see ListGroupsForUser
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example returns the list of IAM groups that the IAM user
David
belongs to.Get-IAMGroupForUser -UserName David
Output:
Arn : arn:aws:iam::123456789012:group/Administrators CreateDate : 10/20/2014 10:06:24 AM GroupId : 6WCH4TRY3KIHIEXAMPLE1 GroupName : Administrators Path : / Arn : arn:aws:iam::123456789012:group/Testers CreateDate : 12/10/2014 3:39:11 PM GroupId : RHNZZGQJ7QHMAEXAMPLE2 GroupName : Testers Path : / Arn : arn:aws:iam::123456789012:group/Developers CreateDate : 12/10/2014 3:38:55 PM GroupId : ZU2EOWMK6WBZOEXAMPLE3 GroupName : Developers Path : /
-
For API details, see ListGroupsForUser in AWS Tools for PowerShell Cmdlet Reference.
-