Method: Aws::CloudSearch::Types::IndexField#date_options
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
#date_options ⇒ Types::DateOptions
Options for a date field. Dates and times are specified in UTC (Coordinated Universal Time) according to IETF RFC3339: yyyy-mm-ddT00:00:00Z. Present if ‘IndexFieldType` specifies the field is of type `date`. 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 |