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

Creating a group

The following command creates a new group under your AWS account:

    aws iam create-group ^
    --group-name "Developer" ^
    --path "/"  

The following are the options, which can be used with create-group:

Parameters

Optional

Description

--group-name

False

This is a friendly name for the group.

--path

True

This is the path of the group. If the path is not provided, the default / (slash) is considered.