mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
662 B
Plaintext
34 lines
662 B
Plaintext
---
|
|
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/>.
|
|
|
|
- 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}}`
|