Properties
| Name | Type | Description |
|---|---|---|
| GroupName | object | |
| NewPath | object | |
| NewGroupName | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateGroupRequest",
"title": "UpdateGroupRequest",
"type": "object",
"required": [
"GroupName"
],
"properties": {
"GroupName": {
"allOf": [
{
"$ref": "#/components/schemas/groupNameType"
},
{
"description": "<p>Name of the IAM group to update. If you're changing the name of the group, this is the original name.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p>"
}
]
},
"NewPath": {
"allOf": [
{
"$ref": "#/components/schemas/pathType"
},
{
"description": "<p>New path for the IAM group. Only include this if changing the group's path.</p> <p>This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) 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 ! (<code>\\u0021</code>) through the DEL character (<code>\\u007F</code>), including most punctuation characters, digits, and upper and lowercased letters.</p>"
}
]
},
"NewGroupName": {
"allOf": [
{
"$ref": "#/components/schemas/groupNameType"
},
{
"description": "<p>New name for the IAM group. Only include this if changing the group's name.</p> <p>IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both \"MyResource\" and \"myresource\".</p>"
}
]
}
}
}