Skip to main content
FuseFuse
IntegrationsAwsActions

Remove IAM user from group

Remove an IAM user from a group. Requires iam:RemoveUserFromGroup.

Agent markdown

iam.groups.members.remove · AWS · v1

Details

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

Scopes

  • iam:RemoveUserFromGroup

Input

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

Output

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