Skip to main content
FuseFuse
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.

Agent markdown

iam.users.access_keys.deactivate · AWS · v1

Details

Risk
Destructive
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=false, destructive=true, idempotent=true, openWorld=true

Scopes

  • iam:UpdateAccessKey

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_namestringYesminLength 1; maxLength 64; pattern ^[A-Za-z0-9_+=,.@-]+$
access_key_idstringYesminLength 16; maxLength 128; pattern ^[A-Z0-9]+$

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties 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": {}
}