paws.security.identity (version 0.1.0)

iam_update_group: Updates the name and/or the path of the specified IAM group

Description

Updates the name and/or the path of the specified IAM group.

Usage

iam_update_group(GroupName, NewPath, NewGroupName)

Arguments

GroupName

[required] Name of the IAM group to update. If you're changing the name of the group, this is the original name.

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: \_+=,.@-

NewPath

New path for the IAM group. Only include this if changing the group's path.

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.

NewGroupName

New name for the IAM group. Only include this if changing the group's name.

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: \_+=,.@-

Request syntax

svc$update_group(
  GroupName = "string",
  NewPath = "string",
  NewGroupName = "string"
)

Details

You should understand the implications of changing a group's path or name. For more information, see Renaming Users and Groups in the IAM User Guide.

The person making the request (the principal), must have permission to change the role group with the old name and the new name. For example, to change the group named Managers to MGRs, the principal must have a policy that allows them to update both groups. If the principal has permission to update the Managers group, but not the MGRs group, then the update fails. For more information about permissions, see Access Management.

Examples

Run this code
# NOT RUN {
# The following command changes the name of the IAM group Test to Test-1.
# }
# NOT RUN {
svc$update_group(
  GroupName = "Test",
  NewGroupName = "Test-1"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab