Method: Aws::CloudSearch::Types::IndexField#date_array_options
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
#date_array_options ⇒ Types::DateArrayOptions
Options for a field that contains an array of dates. Present if ‘IndexFieldType` specifies the field is of type `date-array`. All options are enabled by default.
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 |