IntegrationsAwsActions
Add IAM user to group
Add an IAM user to a group. Requires iam:AddUserToGroup.
iam.groups.members.add · AWS · v1
Details
Scopes
iam:AddUserToGroup
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
group_name | string | Yes | minLength 1; maxLength 128; pattern ^[A-Za-z0-9_+=,.@-]+$ |
user_name | string | Yes | minLength 1; maxLength 64; pattern ^[A-Za-z0-9_+=,.@-]+$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"group_name": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
},
"user_name": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
}
},
"required": [
"group_name",
"user_name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {}
}