Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SuggestionMatch

import type { SuggestionMatch } from "https://aws-api.deno.dev/v0.3/services/cloudsearchdomain.ts?docs=full";

An autocomplete suggestion that matches the query string specified in a SuggestRequest.

interface SuggestionMatch {
id?: string | null;
score?: number | null;
suggestion?: string | null;
}

§Properties

§
id?: string | null
[src]

The document ID of the suggested document.

§
score?: number | null
[src]

The relevance score of a suggested match.

§
suggestion?: string | null
[src]

The string that matches the query string specified in the SuggestRequest.