We are excited to announce our new API Documentation.
Protected
Removes the specified tags from the IAM instance profile. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Use a bare-bones client and the command you need to make an API call.
import { IAMClient, UntagInstanceProfileCommand } from "@aws-sdk/client-iam"; // ES Modules import// const { IAMClient, UntagInstanceProfileCommand } = require("@aws-sdk/client-iam"); // CommonJS importconst client = new IAMClient(config);const input = { // UntagInstanceProfileRequest InstanceProfileName: "STRING_VALUE", // required TagKeys: [ // tagKeyListType // required "STRING_VALUE", ],};const command = new UntagInstanceProfileCommand(input);const response = await client.send(command);// {};
UntagInstanceProfileCommandInput
UntagInstanceProfileCommandOutput
input
response
config
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.
InvalidInputException (client fault)
The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
NoSuchEntityException (client fault)
The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
ServiceFailureException (server fault)
The request processing has failed because of an unknown error, exception or failure.
IAMServiceException
Base exception class for all service exceptions from IAM service.
Readonly
Static
Removes the specified tags from the IAM instance profile. 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
UntagInstanceProfileCommandInput
Returns
UntagInstanceProfileCommandOutput
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
InvalidInputException (client fault)
The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
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.