Method: Aws::CloudSearch::Types::IndexField#index_field_type

Defined in:
lib/aws-sdk-cloudsearch/types.rb

#index_field_typeString

The type of field. The valid options for a field depend on the field type. For more information about the supported field types, see

Configuring Index Fields][1

in the *Amazon CloudSearch Developer

Guide*.

[1]: docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html

Returns:

  • (String)


1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1400

class IndexField < Struct.new(
  :index_field_name,
  :index_field_type,
  :int_options,
  :double_options,
  :literal_options,
  :text_options,
  :date_options,
  :lat_lon_options,
  :int_array_options,
  :double_array_options,
  :literal_array_options,
  :text_array_options,
  :date_array_options)
  SENSITIVE = []
  include Aws::Structure
end