IntegrationsAwsActions
List IAM groups for user
List IAM groups for a user with opaque cursor pagination. Requires iam:ListGroupsForUser.
iam.users.groups.list · AWS · v1
Details
Scopes
iam:ListGroupsForUser
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_name | string | Yes | minLength 1; maxLength 64; pattern ^[A-Za-z0-9_+=,.@-]+$ |
page_size | integer | No | minimum 1; maximum 1000 |
cursor | string | No | minLength 1; maxLength 16384; pattern ^(?!.*://)[^\x00-\x1f\x7f]+$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
groups | array<object> | Yes | maxItems 1000 |
groups[] | object | Yes | additionalProperties false |
groups[].name | string | Yes | minLength 1; maxLength 128; pattern ^[A-Za-z0-9_+=,.@-]+$ |
groups[].id | string | Yes | minLength 1; maxLength 128 |
groups[].arn | string | Yes | minLength 20; maxLength 2048; pattern ^arn:aws:.+$ |
groups[].path | string | Yes | minLength 1; maxLength 512; pattern ^/$|^/[\x21-\x7e]+/$ |
groups[].created_at | string | Yes | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 16384; pattern ^(?!.*://)[^\x00-\x1f\x7f]+$ |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_name": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 1000
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 16384,
"pattern": "^(?!.*://)[^\\x00-\\x1f\\x7f]+$"
}
},
"required": [
"user_name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"groups": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
},
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"arn": {
"type": "string",
"minLength": 20,
"maxLength": 2048,
"pattern": "^arn:aws:.+$"
},
"path": {
"type": "string",
"minLength": 1,
"maxLength": 512,
"pattern": "^/$|^/[\\x21-\\x7e]+/$"
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"name",
"id",
"arn",
"path",
"created_at"
]
},
"maxItems": 1000
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 16384,
"pattern": "^(?!.*://)[^\\x00-\\x1f\\x7f]+$"
}
},
"required": [
"groups"
]
}