Deletes the specified role. Unlike the Amazon Web Services Management Console, when you delete a role
programmatically, you must delete the items attached to the role manually, or the
deletion fails. For more information, see Deleting an IAM role. Before attempting to delete a role, remove the
following attached items:
Optional – Delete instance profile after detaching from role for
resource clean up (DeleteInstanceProfile)
Make sure that you do not have any Amazon EC2 instances running with the role you
are about to delete. Deleting a role or instance profile that is associated with a
running instance will break any applications running on the instance.
Example
Use a bare-bones client and the command you need to make an API call.
The request was rejected because multiple requests to change this object were submitted
simultaneously. Wait a few minutes and submit your request again.
The request was rejected because it attempted to create resources beyond the current
Amazon Web Services account limits. The error message describes the limit exceeded.
The request was rejected because service-linked roles are protected Amazon Web Services resources. Only
the service that depends on the service-linked role can modify or delete the role on your
behalf. The error message includes the name of the service that depends on this service-linked
role. You must request the change through that service.
Example
To delete an IAM role
// The following command removes the role named Test-Role. constinput = { "RoleName":"Test-Role" }; constcommand = newDeleteRoleCommand(input); awaitclient.send(command); // example id: 053cdf74-9bda-44b8-bdbb-140fd5a32603
Deletes the specified role. Unlike the Amazon Web Services Management Console, when you delete a role programmatically, you must delete the items attached to the role manually, or the deletion fails. For more information, see Deleting an IAM role. Before attempting to delete a role, remove the following attached items:
Inline policies (DeleteRolePolicy)
Attached managed policies (DetachRolePolicy)
Instance profile (RemoveRoleFromInstanceProfile)
Optional – Delete instance profile after detaching from role for resource clean up (DeleteInstanceProfile)
Make sure that you do not have any Amazon EC2 instances running with the role you are about to delete. Deleting a role or instance profile that is associated with a running instance will break any applications running on the instance.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DeleteRoleCommandInput
Returns
DeleteRoleCommandOutput
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
DeleteConflictException (client fault)
The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.
Throws
LimitExceededException (client fault)
The request was rejected because it attempted to create resources beyond the current Amazon Web Services account limits. The error message describes the limit exceeded.
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
UnmodifiableEntityException (client fault)
The request was rejected because service-linked roles are protected Amazon Web Services resources. Only the service that depends on the service-linked role can modify or delete the role on your behalf. The error message includes the name of the service that depends on this service-linked role. You must request the change through that service.
Example
To delete an IAM role