View Source ExAws.CloudSearch.IndexField.Options (ex_aws_cloud_search v0.3.0)

Options for a CloudSearch index field.

  • scheme: The name of an analysis scheme. Used only for fields of type text or text-array.
  • default: The value to use if not specified.
  • facet: If true, facet information can be returned from the field.
  • highlight: If true, highlights can be returned from the field.
  • return: If true, the contents may be returned in search results.
  • search: If true, the contents are searchable.
  • sort: If true, the contents are usable for sort.
  • source: A source field name or a list of source field names that are mapped to the field.

Link to this section Summary

Link to this section Types

@type t() :: %ExAws.CloudSearch.IndexField.Options{
  default: nil | String.t(),
  facet: boolean(),
  highlight: boolean(),
  return: boolean(),
  scheme: nil | String.t(),
  search: boolean(),
  sort: boolean(),
  source: nil | String.t() | [String.t()]
}