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

TextArrayOptions

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

Options for a field that contains an array of text strings. Present if IndexFieldType specifies the field is of type text-array. A text-array field is always searchable. All options are enabled by default.

interface TextArrayOptions {
AnalysisScheme?: string | null;
DefaultValue?: string | null;
HighlightEnabled?: boolean | null;
ReturnEnabled?: boolean | null;
SourceFields?: string | null;
}

§Properties

§
AnalysisScheme?: string | null
[src]

The name of an analysis scheme for a text-array 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.

§
SourceFields?: string | null
[src]

A list of source fields to map to the field.