diff --git a/src/pages/gen1/[platform]/tools/cli-legacy/overwrite-customize-resolvers/index.mdx b/src/pages/gen1/[platform]/tools/cli-legacy/overwrite-customize-resolvers/index.mdx index 3c8387239b7..c55c5e18c75 100644 --- a/src/pages/gen1/[platform]/tools/cli-legacy/overwrite-customize-resolvers/index.mdx +++ b/src/pages/gen1/[platform]/tools/cli-legacy/overwrite-customize-resolvers/index.mdx @@ -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. diff --git a/src/pages/gen1/[platform]/tools/cli-legacy/searchable-directive/index.mdx b/src/pages/gen1/[platform]/tools/cli-legacy/searchable-directive/index.mdx index 20e3ac3c14f..32608ae0776 100644 --- a/src/pages/gen1/[platform]/tools/cli-legacy/searchable-directive/index.mdx +++ b/src/pages/gen1/[platform]/tools/cli-legacy/searchable-directive/index.mdx @@ -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.