List Tags For Resource
servicediscovery_list_tags_for_resource | R Documentation |
Lists tags for the specified resource¶
Description¶
Lists tags for the specified resource.
Usage¶
servicediscovery_list_tags_for_resource(ResourceARN)
Arguments¶
ResourceARN |
[required] The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for. |
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:
# This example lists the tags of a resource.
svc$list_tags_for_resource(
ResourceARN = "arn:aws:servicediscovery:us-east-1:123456789012:namespace/ns-ylexjili4cdxy3xm"
)
## End(Not run)