Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListGroups C# (CSharp) Method

ListGroups() public method

Lists the IAM groups that have the specified path prefix.

You can paginate the results using the MaxItems and Marker parameters.

/// The request processing has failed because of an unknown error, exception or failure. ///
public ListGroups ( ) : ListGroupsResponse
return ListGroupsResponse
        public ListGroupsResponse ListGroups()
        {
            return ListGroups(new ListGroupsRequest());
        }

Same methods

AmazonIdentityManagementServiceClient::ListGroups ( ListGroupsRequest request ) : ListGroupsResponse

Usage Example

示例#1
0
        public static void DeleteUsersAndGroupsInTestNameSpace(AmazonIdentityManagementServiceClient client)
        {
            ListGroupsResponse lgRes = client.ListGroups(new ListGroupsRequest() { PathPrefix = TEST_PATH });
            foreach (Group g in lgRes.Groups)
            {
                GetGroupResponse ggRes = client.GetGroup(new GetGroupRequest() { GroupName = g.GroupName });
                foreach (User u in ggRes.Users)
                {
                    client.RemoveUserFromGroup(new RemoveUserFromGroupRequest() { GroupName = g.GroupName, UserName = u.UserName });
                }
                client.DeleteGroup(new DeleteGroupRequest() { GroupName = g.GroupName });
            }

            ListUsersResponse luRes = client.ListUsers(new ListUsersRequest() { PathPrefix = TEST_PATH });
            foreach (User u in luRes.Users)
            {
                DeleteTestUsers(client, u.UserName);
            }
        }
All Usage Examples Of Amazon.IdentityManagement.AmazonIdentityManagementServiceClient::ListGroups
AmazonIdentityManagementServiceClient