Amazon Web Services Bootcamp
上QQ阅读APP看书,第一时间看更新

Create Group

Create a new group under your AWS account using the following code:

String groupName = "Developer";

createGroup(groupName); ........ public void createGroup(
String groupName) {
CreateGroupRequest createGroupRequest =
new CreateGroupRequest()
.withGroupName(groupName);

CreateGroupResult createGroupResult =
amazonIdentityManagement.
createGroup(createGroupRequest);
}