AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value.

To add tags to a certificate, use the AddTagsToCertificate action. To view all of the tags that have been applied to a specific ACM certificate, use the ListTagsForCertificate action.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to RemoveTagsFromCertificateAsync.

Namespace: Amazon.CertificateManager
Assembly: AWSSDK.CertificateManager.dll
Version: 3.x.y.z

Syntax

C#
public abstract RemoveTagsFromCertificateResponse RemoveTagsFromCertificate(
         RemoveTagsFromCertificateRequest request
)

Parameters

request
Type: Amazon.CertificateManager.Model.RemoveTagsFromCertificateRequest

Container for the necessary parameters to execute the RemoveTagsFromCertificate service method.

Return Value


The response from the RemoveTagsFromCertificate service method, as returned by CertificateManager.

Exceptions

ExceptionCondition
InvalidArnException The requested Amazon Resource Name (ARN) does not refer to an existing resource.
InvalidParameterException An input parameter was invalid.
InvalidTagException One or both of the values that make up the key-value pair is not valid. For example, you cannot specify a tag value that begins with aws:.
ResourceNotFoundException The specified certificate cannot be found in the caller's account or the caller's account cannot be found.
TagPolicyException A specified tag did not comply with an existing tag policy and was rejected.
ThrottlingException The request was denied because it exceeded a quota.

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also