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

An index field definition for CloudSearch.

Link to this section Summary

Types

t()

Permitted CloudSearch index field types.

Link to this section Types

@type t() :: %ExAws.CloudSearch.IndexField{
  name: String.t(),
  options: nil | ExAws.CloudSearch.IndexField.Options.t(),
  type: types()
}
@type types() ::
  :date
  | :double
  | :int
  | :latlon
  | :literal
  | :text
  | {:array, :date}
  | {:array, :double}
  | {:array, :int}
  | {:array, :literal}
  | {:array, :text}

Permitted CloudSearch index field types.