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

Class: Aws::CloudSearch::Types::LatLonOptions

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

Overview

Note:

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

{
  default_value: "FieldValue",
  source_field: "FieldName",
  facet_enabled: false,
  search_enabled: false,
  return_enabled: false,
  sort_enabled: false,
}

Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if IndexFieldType specifies the field is of type latlon. All options are enabled by default.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#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.

#facet_enabledBoolean

Whether facet information can be returned for the field.

Returns:

  • (Boolean)

    Whether facet information 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.

#search_enabledBoolean

Whether the contents of the field are searchable.

Returns:

  • (Boolean)

    Whether the contents of the field are searchable.

#sort_enabledBoolean

Whether the field can be used to sort the search results.

Returns:

  • (Boolean)

    Whether the field can be used to sort the search results.

#source_fieldString

A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields. A dynamic field's name defines a pattern that begins or ends with a wildcard. Any document fields that don't map to a regular index field but do match a dynamic field's pattern are configured with the dynamic field's indexing options.

Regular field names begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore). Dynamic field names must begin or end with a wildcard (*). The wildcard can also be the only character in a dynamic field name. Multiple wildcards, and wildcards embedded within a string are not supported.

The name score is reserved and cannot be used as a field name. To reference a document's ID, you can use the name _id.

Returns:

  • (String)

    A string that represents the name of an index field.