List Tags For Resource
| kendra_list_tags_for_resource | R Documentation |
Gets a list of tags associated with a resource¶
Description¶
Gets a list of tags associated with a resource. Indexes, FAQs, data sources, and other resources can have tags associated with them.
Usage¶
kendra_list_tags_for_resource(ResourceARN)
Arguments¶
ResourceARN |
[required] The Amazon Resource Name (ARN) of the index, FAQ, data source, or other resource to get a list of tags for. For example, the ARN of an index is constructed as follows: arn:aws:kendra:your-region:your-account-id:index/index-id For information on how to construct an ARN for all types of Amazon Kendra resources, see Resource types. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
ResourceARN = "string"
)