Example usage for com.amazonaws.services.identitymanagement.model CreateGroupRequest setPath

List of usage examples for com.amazonaws.services.identitymanagement.model CreateGroupRequest setPath

Introduction

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

Prototype


public void setPath(String path) 

Source Link

Document

The path to the group.

Usage

From source file:org.cloudfoundry.community.servicebroker.s3.service.Iam.java

License:Apache License

public Group createGroup(String groupName) {
    CreateGroupRequest request = new CreateGroupRequest(groupName);
    request.setPath(groupPath);
    CreateGroupResult result = iam.createGroup(request);
    return result.getGroup();
}