List Tags For Resource
athena_list_tags_for_resource | R Documentation |
Lists the tags associated with an Athena resource¶
Description¶
Lists the tags associated with an Athena resource.
Usage¶
athena_list_tags_for_resource(ResourceARN, NextToken, MaxResults)
Arguments¶
ResourceARN |
[required] Lists the tags for the resource with the specified ARN. |
NextToken |
The token for the next set of results, or null if there are no additional results for this request, where the request lists the tags for the resource with the specified ARN. |
MaxResults |
The maximum number of results to be returned per request that lists the tags for the resource. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tags_for_resource(
ResourceARN = "string",
NextToken = "string",
MaxResults = 123
)