List Tags For Resource
frauddetector_list_tags_for_resource | R Documentation |
Lists all tags associated with the resource¶
Description¶
Lists all tags associated with the resource. This is a paginated API. To get the next page results, provide the pagination token from the response as part of your request. A null pagination token fetches the records from the beginning.
Usage¶
frauddetector_list_tags_for_resource(resourceARN, nextToken, maxResults)
Arguments¶
resourceARN |
[required] The ARN that specifies the resource whose tags you want to list. |
nextToken |
The next token from the previous results. |
maxResults |
The maximum number of objects to return for the request. |
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
)