You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudSearch::Types::TextArrayOptions

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TextArrayOptions as input to an Aws::Client method, you can use a vanilla Hash:

{
  default_value: "FieldValue",
  source_fields: "FieldNameCommaList",
  return_enabled: false,
  highlight_enabled: false,
  analysis_scheme: "Word",
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#analysis_schemeString

The name of an analysis scheme for a text-array field.

Returns:

  • (String)

    The name of an analysis scheme for a text-array field.

#default_valueString

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

Returns:

  • (String)

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

#highlight_enabledBoolean

Whether highlights can be returned for the field.

Returns:

  • (Boolean)

    Whether highlights can be returned for the field.

#return_enabledBoolean

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

Returns:

  • (Boolean)

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

#source_fieldsString

A list of source fields to map to the field.

Returns:

  • (String)

    A list of source fields to map to the field.