Example usage for com.amazonaws.services.identitymanagement.model ListGroupsResult getMarker

List of usage examples for com.amazonaws.services.identitymanagement.model ListGroupsResult getMarker

Introduction

In this page you can find the example usage for com.amazonaws.services.identitymanagement.model ListGroupsResult getMarker.

Prototype


public String getMarker() 

Source Link

Document

When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

Usage

From source file:com.denismo.aws.iam.LDAPIAMPoller.java

License:Apache License

private void populateGroupsFromIAM() {
    AmazonIdentityManagementClient client = new AmazonIdentityManagementClient(credentials);

    try {/*from   w  w  w .j  a va  2s  . com*/
        ListGroupsResult res = client.listGroups();
        Set<String> groupNames = new HashSet<String>();
        while (true) {
            for (Group group : res.getGroups()) {
                try {
                    addGroup(group);
                    groupNames.add(group.getGroupName());
                    LOG.info("Added group " + group.getGroupName() + " at " + groupsDN);
                } catch (Throwable e) {
                    LOG.error("Exception processing group " + group.getGroupName(), e);
                }
            }
            if (res.isTruncated()) {
                res = client.listGroups(new ListGroupsRequest().withMarker(res.getMarker()));
            } else {
                break;
            }
        }
        removeDeletedGroups(groupNames);
    } finally {
        client.shutdown();
    }
}