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