Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class UntagOpenIDConnectProviderCommandProtected

Removes the specified tags from the specified OpenID Connect (OIDC)-compatible identity provider in IAM. For more information about OIDC 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, UntagOpenIDConnectProviderCommand } from "@aws-sdk/client-iam"; // ES Modules import
// const { IAMClient, UntagOpenIDConnectProviderCommand } = require("@aws-sdk/client-iam"); // CommonJS import
const client = new IAMClient(config);
const input = { // UntagOpenIDConnectProviderRequest
OpenIDConnectProviderArn: "STRING_VALUE", // required
TagKeys: [ // tagKeyListType // required
"STRING_VALUE",
],
};
const command = new UntagOpenIDConnectProviderCommand(input);
const response = await client.send(command);
// {};

Param

UntagOpenIDConnectProviderCommandInput

Returns

UntagOpenIDConnectProviderCommandOutput

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