Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class UntagSAMLProviderCommandProtected

Removes the specified tags from the specified Security Assertion Markup Language (SAML) identity provider in IAM. For more information about these providers, see About web identity federation. 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.

import { IAMClient, UntagSAMLProviderCommand } from "@aws-sdk/client-iam"; // ES Modules import
// const { IAMClient, UntagSAMLProviderCommand } = require("@aws-sdk/client-iam"); // CommonJS import
const client = new IAMClient(config);
const input = { // UntagSAMLProviderRequest
SAMLProviderArn: "STRING_VALUE", // required
TagKeys: [ // tagKeyListType // required
"STRING_VALUE",
],
};
const command = new UntagSAMLProviderCommand(input);
const response = await client.send(command);
// {};

Param

UntagSAMLProviderCommandInput

Returns

UntagSAMLProviderCommandOutput

See

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.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods