Example usage for com.amazonaws.services.identitymanagement.model Group Group

List of usage examples for com.amazonaws.services.identitymanagement.model Group Group

Introduction

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

Prototype

public Group(String path, String groupName, String groupId, String arn, java.util.Date createDate) 

Source Link

Document

Constructs a new Group object.

Usage

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

License:Apache License

private Entry getOrCreateRoleGroup(Role role) throws Exception {
    Group group = new Group(role.getPath(), role.getRoleName(), role.getRoleId(), role.getArn(),
            role.getCreateDate());/*from w  w  w .java2s .  c o m*/
    return addGroup(group);
}