List Tags For Certificate
| acm_list_tags_for_certificate | R Documentation |
Lists the tags that have been applied to the ACM certificate¶
Description¶
Lists the tags that have been applied to the ACM certificate. Use the
certificate's Amazon Resource Name (ARN) to specify the certificate. To
add a tag to an ACM certificate, use the add_tags_to_certificate
action. To delete a tag, use the remove_tags_from_certificate action.
Usage¶
acm_list_tags_for_certificate(CertificateArn)
Arguments¶
CertificateArn |
[required] String that contains the ARN of the ACM certificate for which you want to list the tags. This must have the following form:
For more information about ARNs, see Amazon Resource Names (ARNs). |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_certificate(
CertificateArn = "string"
)