List Tags For Resource
| proton_list_tags_for_resource | R Documentation |
List tags for a resource¶
Description¶
List tags for a resource. For more information, see Proton resources and tagging in the Proton User Guide.
Usage¶
proton_list_tags_for_resource(maxResults, nextToken, resourceArn)
Arguments¶
maxResults |
The maximum number of tags to list. |
nextToken |
A token that indicates the location of the next resource tag in the array of resource tags, after the list of resource tags that was previously requested. |
resourceArn |
[required] The Amazon Resource Name (ARN) of the resource for the listed tags. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
maxResults = 123,
nextToken = "string",
resourceArn = "string"
)