Update cheatsheets

This commit is contained in:
ivuorinen
2024-07-30 00:15:32 +00:00
parent c870654af4
commit 6e7fb9e4e8

33
tldr/aws-kendra Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# aws kendra
> CLI for AWS Kendra.
> More information: <https://docs.aws.amazon.com/cli/latest/reference/kendra/index.html>.
- Create an index:
`aws kendra create-index --name {{name}} --role-arn {{role-arn}}`
- List indexes:
`aws kendra list-indexes`
- Describe an index:
`aws kendra describe-index --id {{index-id}}`
- List data sources:
`aws kendra list-data-sources`
- Describe a data source:
`aws kendra describe-data-source --id {{data-source-id}}`
- List search queries:
`aws kendra list-query-suggestions --index-id {{index-id}} --query-text {{query-text}}`