List Tags For Resource
ssmcontacts_list_tags_for_resource | R Documentation |
Lists the tags of an escalation plan or contact¶
Description¶
Lists the tags of an escalation plan or contact.
Usage¶
ssmcontacts_list_tags_for_resource(ResourceARN)
Arguments¶
ResourceARN |
[required] The Amazon Resource Name (ARN) of the contact or escalation plan. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
ResourceARN = "string"
)
Examples¶
## Not run:
# The following list-tags-for-resource example lists the tags of the
# specified contact.
svc$list_tags_for_resource(
ResourceARN = "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam"
)
## End(Not run)