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

TextOptions

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

Options for text field. Present if IndexFieldType specifies the field is of type text. A text field is always searchable. All options are enabled by default.

interface TextOptions {
AnalysisScheme?: string | null;
DefaultValue?: string | null;
HighlightEnabled?: boolean | null;
ReturnEnabled?: boolean | null;
SortEnabled?: boolean | null;
SourceField?: string | null;
}

§Properties

§
AnalysisScheme?: string | null
[src]

The name of an analysis scheme for a text field.

§
DefaultValue?: string | null
[src]

A value to use for the field if the field isn't specified for a document.

§
HighlightEnabled?: boolean | null
[src]

Whether highlights can be returned for the field.

§
ReturnEnabled?: boolean | null
[src]

Whether the contents of the field can be returned in the search results.

§
SortEnabled?: boolean | null
[src]

Whether the field can be used to sort the search results.

§
SourceField?: string | null
[src]