Skip to content

fix(cli): update stale links #8401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ $util.toJson({

Amazon OpenSearch domains can take a while to deploy. Take this time to read up on OpenSearch to see what capabilities you are about to unlock.

[Getting Started with OpenSearch](https://opensearch.org/docs/opensearch/index/)
[Getting Started with OpenSearch](https://docs.opensearch.org/latest/)

- After the update is complete but before creating any objects, update your OpenSearch index mapping.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ The `filter` parameter in the search query has a searchable type field that corr

- `eq` - which uses the OpenSearch keyword type to match for the exact term.
- `ne` - this is the inverse operation of `eq`.
- `matchPhrase` - searches using OpenSearch's [Match Phrase Query](https://opensearch.org/docs/opensearch/query-dsl/full-text/#match-phrase) to filter the documents in the search query.
- `matchPhrasePrefix` - This uses OpenSearch's [Match Phrase Prefix Query](https://opensearch.org/docs/opensearch/query-dsl/full-text/#match-phrase-prefix) to filter the documents in the search query.
- `multiMatch` - Corresponds to the OpenSearch [Multi Match Query](https://opensearch.org/docs/opensearch/query-dsl/full-text/#multi-match).
- `exists` - Corresponds to the OpenSearch [Exists Query](https://opensearch.org/docs/opensearch/query-dsl/term/#exists).
- `wildcard` - Corresponds to the OpenSearch [Wildcard Query](https://opensearch.org/docs/opensearch/query-dsl/term/#wildcards).
- `regexp` - Corresponds to the OpenSearch [Regexp Query](https://opensearch.org/docs/opensearch/query-dsl/term/#regex).
- `matchPhrase` - searches using OpenSearch's [Match Phrase Query](https://docs.opensearch.org/latest/query-dsl/full-text/match-phrase/) to filter the documents in the search query.
- `matchPhrasePrefix` - This uses OpenSearch's [Match Phrase Prefix Query](https://docs.opensearch.org/latest/query-dsl/full-text/match-phrase-prefix/) to filter the documents in the search query.
- `multiMatch` - Corresponds to the OpenSearch [Multi Match Query](https://docs.opensearch.org/latest/query-dsl/full-text/multi-match/).
- `exists` - Corresponds to the OpenSearch [Exists Query](https://docs.opensearch.org/latest/query-dsl/term/exists/).
- `wildcard` - Corresponds to the OpenSearch [Wildcard Query](https://docs.opensearch.org/latest/query-dsl/term/wildcard/).
- `regexp` - Corresponds to the OpenSearch [Regexp Query](https://docs.opensearch.org/latest/query-dsl/term/regexp/).

The `sort` parameter can be used to specify the order of the search results, can be ascending (`asc`) or descending (`desc`), if not specified ascending order is used.

Expand Down