IntegrationsAwsActions
Deactivate IAM user access key
Set an IAM user access key status to Inactive. Rejects the connection's own access key id. Requires iam:UpdateAccessKey.
iam.users.access_keys.deactivate · AWS · v1
Details
Scopes
iam:UpdateAccessKey
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_name | string | Yes | minLength 1; maxLength 64; pattern ^[A-Za-z0-9_+=,.@-]+$ |
access_key_id | string | Yes | minLength 16; maxLength 128; pattern ^[A-Z0-9]+$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_name": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
},
"access_key_id": {
"type": "string",
"minLength": 16,
"maxLength": 128,
"pattern": "^[A-Z0-9]+$"
}
},
"required": [
"user_name",
"access_key_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {}
}