List Tags For Resource
| wafv2_list_tags_for_resource | R Documentation |
Retrieves the TagInfoForResource for the specified resource¶
Description¶
Retrieves the TagInfoForResource for the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't manage or view tags through the WAF console.
Usage¶
wafv2_list_tags_for_resource(NextMarker, Limit, ResourceARN)
Arguments¶
NextMarker |
When you request a list of objects with a |
Limit |
The maximum number of objects that you want WAF to return for
this request. If more objects are available, in the response, WAF
provides a |
ResourceARN |
[required] The Amazon Resource Name (ARN) of the resource. |
Value¶
A list with the following syntax:
list(
NextMarker = "string",
TagInfoForResource = list(
ResourceARN = "string",
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)
)
Request syntax¶
svc$list_tags_for_resource(
NextMarker = "string",
Limit = 123,
ResourceARN = "string"
)