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

LiteralArrayOptions

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

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

interface LiteralArrayOptions {
DefaultValue?: string | null;
FacetEnabled?: boolean | null;
ReturnEnabled?: boolean | null;
SearchEnabled?: boolean | null;
SourceFields?: string | null;
}

§Properties

§
DefaultValue?: string | null
[src]

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

§
FacetEnabled?: boolean | null
[src]

Whether facet information can be returned for the field.

§
ReturnEnabled?: boolean | null
[src]

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

§
SearchEnabled?: boolean | null
[src]

Whether the contents of the field are searchable.

§
SourceFields?: string | null
[src]

A list of source fields to map to the field.