The request was rejected because multiple requests to change this object were submitted
simultaneously. Wait a few minutes and submit your request again.
Base exception class for all service exceptions from IAM service.
Example
To remove a tag from an IAM user
// The following example shows how to remove tags that are attached to a user named 'anika'. constinput = { "TagKeys": [ "Dept" ], "UserName":"anika" }; constcommand = newUntagUserCommand(input); awaitclient.send(command); // example id: to-remove-a-tag-from-an-iam-user-1506719725554
Removes the specified tags from the user. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Example
Use a bare-bones client and the command you need to make an API call.
Param
UntagUserCommandInput
Returns
UntagUserCommandOutput
See
input
shape.response
shape.config
shape.Throws
ConcurrentModificationException (client fault)
The request was rejected because multiple requests to change this object were submitted simultaneously. Wait a few minutes and submit your request again.
Throws
NoSuchEntityException (client fault)
The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
Throws
ServiceFailureException (server fault)
The request processing has failed because of an unknown error, exception or failure.
Throws
IAMServiceException
Base exception class for all service exceptions from IAM service.
Example
To remove a tag from an IAM user