List Tags For Resource
| inspector_list_tags_for_resource | R Documentation |
Lists all tags associated with an assessment template¶
Description¶
Lists all tags associated with an assessment template.
Usage¶
inspector_list_tags_for_resource(resourceArn)
Arguments¶
resourceArn |
[required] The ARN that specifies the assessment template whose tags you want to list. |
Value¶
A list with the following syntax:
list(
tags = list(
list(
key = "string",
value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
resourceArn = "string"
)
Examples¶
## Not run:
# Lists all tags associated with an assessment template.
svc$list_tags_for_resource(
resourceArn = "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq..."
)
## End(Not run)