Properties
| Name | Type | Description |
|---|---|---|
| GroupName | object | |
| UserName | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AddUserToGroupRequest",
"title": "AddUserToGroupRequest",
"type": "object",
"required": [
"GroupName",
"UserName"
],
"properties": {
"GroupName": {
"allOf": [
{
"$ref": "#/components/schemas/groupNameType"
},
{
"description": "<p>The name of the group to update.</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>"
}
]
},
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/existingUserNameType"
},
{
"description": "<p>The name of the user to add.</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>"
}
]
}
}
}