paws.security.identity (version 0.1.0)

iam_create_group: Creates a new group

Description

Creates a new group.

Usage

iam_create_group(Path, GroupName)

Arguments

Path

The path to the group. For more information about paths, see IAM Identifiers in the IAM User Guide.

This parameter is optional. If it is not included, it defaults to a slash (/).

This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (U+0021) through the DEL character (U+007F), including most punctuation characters, digits, and upper and lowercased letters.

GroupName

[required] The name of the group to create. Do not include the path in this value.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: \_+=,.@-. The group name must be unique within the account. Group names are not distinguished by case. For example, you cannot create groups named both "ADMINS" and "admins".

Request syntax

svc$create_group(
  Path = "string",
  GroupName = "string"
)

Details

For information about the number of groups you can create, see Limitations on IAM Entities in the IAM User Guide.

Examples

Run this code
# NOT RUN {
# The following command creates an IAM group named Admins.
# }
# NOT RUN {
svc$create_group(
  GroupName = "Admins"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab