List Tags For Resource
appmesh_list_tags_for_resource | R Documentation |
List the tags for an App Mesh resource¶
Description¶
List the tags for an App Mesh resource.
Usage¶
appmesh_list_tags_for_resource(limit, nextToken, resourceArn)
Arguments¶
limit |
The maximum number of tag results returned by
|
nextToken |
The |
resourceArn |
[required] The Amazon Resource Name (ARN) that identifies the resource to list the tags for. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
limit = 123,
nextToken = "string",
resourceArn = "string"
)