ACMPCA / Client / untag_certificate_authority

untag_certificate_authority#

ACMPCA.Client.untag_certificate_authority(**kwargs)#

Remove one or more tags from your private CA. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this action, 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 private CA, use the TagCertificateAuthority. Call the ListTags action to see what tags are associated with your CA.

See also: AWS API Documentation

Request Syntax

response = client.untag_certificate_authority(
    CertificateAuthorityArn='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters:
  • CertificateAuthorityArn (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:

    arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

  • Tags (list) –

    [REQUIRED]

    List of tags to be removed from the CA.

    • (dict) –

      Tags are labels that you can use to identify and organize your private CAs. Each tag consists of a key and an optional value. You can associate up to 50 tags with a private CA. To add one or more tags to a private CA, call the TagCertificateAuthority action. To remove a tag, call the UntagCertificateAuthority action.

      • Key (string) – [REQUIRED]

        Key (name) of the tag.

      • Value (string) –

        Value of the tag.

Returns:

None

Exceptions