aws-sdk-cloudsearch 1.37.0 → 1.49.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -38,17 +38,6 @@ module Aws::CloudSearch
38
38
  # Synonyms, stopwords, and stemming options for an analysis scheme.
39
39
  # Includes tokenization dictionary for Japanese.
40
40
  #
41
- # @note When making an API call, you may pass AnalysisOptions
42
- # data as a hash:
43
- #
44
- # {
45
- # synonyms: "String",
46
- # stopwords: "String",
47
- # stemming_dictionary: "String",
48
- # japanese_tokenization_dictionary: "String",
49
- # algorithmic_stemming: "none", # accepts none, minimal, light, full
50
- # }
51
- #
52
41
  # @!attribute [rw] synonyms
53
42
  # A JSON object that defines synonym groups and aliases. A synonym
54
43
  # group is an array of arrays, where each sub-array is a group of
@@ -118,21 +107,6 @@ module Aws::CloudSearch
118
107
  # scheme: `Synonyms`, `Stopwords`, `StemmingDictionary`,
119
108
  # `JapaneseTokenizationDictionary` and `AlgorithmicStemming`.
120
109
  #
121
- # @note When making an API call, you may pass AnalysisScheme
122
- # data as a hash:
123
- #
124
- # {
125
- # analysis_scheme_name: "StandardName", # required
126
- # analysis_scheme_language: "ar", # required, accepts ar, bg, ca, cs, da, de, el, en, es, eu, fa, fi, fr, ga, gl, he, hi, hu, hy, id, it, ja, ko, lv, mul, nl, no, pt, ro, ru, sv, th, tr, zh-Hans, zh-Hant
127
- # analysis_options: {
128
- # synonyms: "String",
129
- # stopwords: "String",
130
- # stemming_dictionary: "String",
131
- # japanese_tokenization_dictionary: "String",
132
- # algorithmic_stemming: "none", # accepts none, minimal, light, full
133
- # },
134
- # }
135
- #
136
110
  # @!attribute [rw] analysis_scheme_name
137
111
  # Names must begin with a letter and can contain the following
138
112
  # characters: a-z (lowercase), 0-9, and \_ (underscore).
@@ -217,13 +191,6 @@ module Aws::CloudSearch
217
191
  # Container for the parameters to the `BuildSuggester` operation.
218
192
  # Specifies the name of the domain you want to update.
219
193
  #
220
- # @note When making an API call, you may pass BuildSuggestersRequest
221
- # data as a hash:
222
- #
223
- # {
224
- # domain_name: "DomainName", # required
225
- # }
226
- #
227
194
  # @!attribute [rw] domain_name
228
195
  # A string that represents the name of a domain. Domain names are
229
196
  # unique across the domains owned by an account within an AWS region.
@@ -253,13 +220,6 @@ module Aws::CloudSearch
253
220
  # Container for the parameters to the `CreateDomain` operation.
254
221
  # Specifies a name for the new search domain.
255
222
  #
256
- # @note When making an API call, you may pass CreateDomainRequest
257
- # data as a hash:
258
- #
259
- # {
260
- # domain_name: "DomainName", # required
261
- # }
262
- #
263
223
  # @!attribute [rw] domain_name
264
224
  # A name for the domain you are creating. Allowed characters are a-z
265
225
  # (lower-case letters), 0-9, and hyphen (-). Domain names must start
@@ -290,17 +250,6 @@ module Aws::CloudSearch
290
250
  # `IndexFieldType` specifies the field is of type `date-array`. All
291
251
  # options are enabled by default.
292
252
  #
293
- # @note When making an API call, you may pass DateArrayOptions
294
- # data as a hash:
295
- #
296
- # {
297
- # default_value: "FieldValue",
298
- # source_fields: "FieldNameCommaList",
299
- # facet_enabled: false,
300
- # search_enabled: false,
301
- # return_enabled: false,
302
- # }
303
- #
304
253
  # @!attribute [rw] default_value
305
254
  # A value to use for the field if the field isn't specified for a
306
255
  # document.
@@ -338,18 +287,6 @@ module Aws::CloudSearch
338
287
  # yyyy-mm-ddT00:00:00Z. Present if `IndexFieldType` specifies the field
339
288
  # is of type `date`. All options are enabled by default.
340
289
  #
341
- # @note When making an API call, you may pass DateOptions
342
- # data as a hash:
343
- #
344
- # {
345
- # default_value: "FieldValue",
346
- # source_field: "FieldName",
347
- # facet_enabled: false,
348
- # search_enabled: false,
349
- # return_enabled: false,
350
- # sort_enabled: false,
351
- # }
352
- #
353
290
  # @!attribute [rw] default_value
354
291
  # A value to use for the field if the field isn't specified for a
355
292
  # document.
@@ -406,24 +343,6 @@ module Aws::CloudSearch
406
343
  # Specifies the name of the domain you want to update and the analysis
407
344
  # scheme configuration.
408
345
  #
409
- # @note When making an API call, you may pass DefineAnalysisSchemeRequest
410
- # data as a hash:
411
- #
412
- # {
413
- # domain_name: "DomainName", # required
414
- # analysis_scheme: { # required
415
- # analysis_scheme_name: "StandardName", # required
416
- # analysis_scheme_language: "ar", # required, accepts ar, bg, ca, cs, da, de, el, en, es, eu, fa, fi, fr, ga, gl, he, hi, hu, hy, id, it, ja, ko, lv, mul, nl, no, pt, ro, ru, sv, th, tr, zh-Hans, zh-Hant
417
- # analysis_options: {
418
- # synonyms: "String",
419
- # stopwords: "String",
420
- # stemming_dictionary: "String",
421
- # japanese_tokenization_dictionary: "String",
422
- # algorithmic_stemming: "none", # accepts none, minimal, light, full
423
- # },
424
- # },
425
- # }
426
- #
427
346
  # @!attribute [rw] domain_name
428
347
  # A string that represents the name of a domain. Domain names are
429
348
  # unique across the domains owned by an account within an AWS region.
@@ -463,17 +382,6 @@ module Aws::CloudSearch
463
382
  # Specifies the name of the domain you want to update and the expression
464
383
  # you want to configure.
465
384
  #
466
- # @note When making an API call, you may pass DefineExpressionRequest
467
- # data as a hash:
468
- #
469
- # {
470
- # domain_name: "DomainName", # required
471
- # expression: { # required
472
- # expression_name: "StandardName", # required
473
- # expression_value: "ExpressionValue", # required
474
- # },
475
- # }
476
- #
477
385
  # @!attribute [rw] domain_name
478
386
  # A string that represents the name of a domain. Domain names are
479
387
  # unique across the domains owned by an account within an AWS region.
@@ -511,100 +419,6 @@ module Aws::CloudSearch
511
419
  # Specifies the name of the domain you want to update and the index
512
420
  # field configuration.
513
421
  #
514
- # @note When making an API call, you may pass DefineIndexFieldRequest
515
- # data as a hash:
516
- #
517
- # {
518
- # domain_name: "DomainName", # required
519
- # index_field: { # required
520
- # index_field_name: "DynamicFieldName", # required
521
- # index_field_type: "int", # required, accepts int, double, literal, text, date, latlon, int-array, double-array, literal-array, text-array, date-array
522
- # int_options: {
523
- # default_value: 1,
524
- # source_field: "FieldName",
525
- # facet_enabled: false,
526
- # search_enabled: false,
527
- # return_enabled: false,
528
- # sort_enabled: false,
529
- # },
530
- # double_options: {
531
- # default_value: 1.0,
532
- # source_field: "FieldName",
533
- # facet_enabled: false,
534
- # search_enabled: false,
535
- # return_enabled: false,
536
- # sort_enabled: false,
537
- # },
538
- # literal_options: {
539
- # default_value: "FieldValue",
540
- # source_field: "FieldName",
541
- # facet_enabled: false,
542
- # search_enabled: false,
543
- # return_enabled: false,
544
- # sort_enabled: false,
545
- # },
546
- # text_options: {
547
- # default_value: "FieldValue",
548
- # source_field: "FieldName",
549
- # return_enabled: false,
550
- # sort_enabled: false,
551
- # highlight_enabled: false,
552
- # analysis_scheme: "Word",
553
- # },
554
- # date_options: {
555
- # default_value: "FieldValue",
556
- # source_field: "FieldName",
557
- # facet_enabled: false,
558
- # search_enabled: false,
559
- # return_enabled: false,
560
- # sort_enabled: false,
561
- # },
562
- # lat_lon_options: {
563
- # default_value: "FieldValue",
564
- # source_field: "FieldName",
565
- # facet_enabled: false,
566
- # search_enabled: false,
567
- # return_enabled: false,
568
- # sort_enabled: false,
569
- # },
570
- # int_array_options: {
571
- # default_value: 1,
572
- # source_fields: "FieldNameCommaList",
573
- # facet_enabled: false,
574
- # search_enabled: false,
575
- # return_enabled: false,
576
- # },
577
- # double_array_options: {
578
- # default_value: 1.0,
579
- # source_fields: "FieldNameCommaList",
580
- # facet_enabled: false,
581
- # search_enabled: false,
582
- # return_enabled: false,
583
- # },
584
- # literal_array_options: {
585
- # default_value: "FieldValue",
586
- # source_fields: "FieldNameCommaList",
587
- # facet_enabled: false,
588
- # search_enabled: false,
589
- # return_enabled: false,
590
- # },
591
- # text_array_options: {
592
- # default_value: "FieldValue",
593
- # source_fields: "FieldNameCommaList",
594
- # return_enabled: false,
595
- # highlight_enabled: false,
596
- # analysis_scheme: "Word",
597
- # },
598
- # date_array_options: {
599
- # default_value: "FieldValue",
600
- # source_fields: "FieldNameCommaList",
601
- # facet_enabled: false,
602
- # search_enabled: false,
603
- # return_enabled: false,
604
- # },
605
- # },
606
- # }
607
- #
608
422
  # @!attribute [rw] domain_name
609
423
  # A string that represents the name of a domain. Domain names are
610
424
  # unique across the domains owned by an account within an AWS region.
@@ -640,21 +454,6 @@ module Aws::CloudSearch
640
454
  # Specifies the name of the domain you want to update and the suggester
641
455
  # configuration.
642
456
  #
643
- # @note When making an API call, you may pass DefineSuggesterRequest
644
- # data as a hash:
645
- #
646
- # {
647
- # domain_name: "DomainName", # required
648
- # suggester: { # required
649
- # suggester_name: "StandardName", # required
650
- # document_suggester_options: { # required
651
- # source_field: "FieldName", # required
652
- # fuzzy_matching: "none", # accepts none, low, high
653
- # sort_expression: "String",
654
- # },
655
- # },
656
- # }
657
- #
658
457
  # @!attribute [rw] domain_name
659
458
  # A string that represents the name of a domain. Domain names are
660
459
  # unique across the domains owned by an account within an AWS region.
@@ -693,14 +492,6 @@ module Aws::CloudSearch
693
492
  # Specifies the name of the domain you want to update and the analysis
694
493
  # scheme you want to delete.
695
494
  #
696
- # @note When making an API call, you may pass DeleteAnalysisSchemeRequest
697
- # data as a hash:
698
- #
699
- # {
700
- # domain_name: "DomainName", # required
701
- # analysis_scheme_name: "StandardName", # required
702
- # }
703
- #
704
495
  # @!attribute [rw] domain_name
705
496
  # A string that represents the name of a domain. Domain names are
706
497
  # unique across the domains owned by an account within an AWS region.
@@ -735,13 +526,6 @@ module Aws::CloudSearch
735
526
  # Container for the parameters to the `DeleteDomain` operation.
736
527
  # Specifies the name of the domain you want to delete.
737
528
  #
738
- # @note When making an API call, you may pass DeleteDomainRequest
739
- # data as a hash:
740
- #
741
- # {
742
- # domain_name: "DomainName", # required
743
- # }
744
- #
745
529
  # @!attribute [rw] domain_name
746
530
  # The name of the domain you want to permanently delete.
747
531
  # @return [String]
@@ -770,14 +554,6 @@ module Aws::CloudSearch
770
554
  # Specifies the name of the domain you want to update and the name of
771
555
  # the expression you want to delete.
772
556
  #
773
- # @note When making an API call, you may pass DeleteExpressionRequest
774
- # data as a hash:
775
- #
776
- # {
777
- # domain_name: "DomainName", # required
778
- # expression_name: "StandardName", # required
779
- # }
780
- #
781
557
  # @!attribute [rw] domain_name
782
558
  # A string that represents the name of a domain. Domain names are
783
559
  # unique across the domains owned by an account within an AWS region.
@@ -813,14 +589,6 @@ module Aws::CloudSearch
813
589
  # Specifies the name of the domain you want to update and the name of
814
590
  # the index field you want to delete.
815
591
  #
816
- # @note When making an API call, you may pass DeleteIndexFieldRequest
817
- # data as a hash:
818
- #
819
- # {
820
- # domain_name: "DomainName", # required
821
- # index_field_name: "DynamicFieldName", # required
822
- # }
823
- #
824
592
  # @!attribute [rw] domain_name
825
593
  # A string that represents the name of a domain. Domain names are
826
594
  # unique across the domains owned by an account within an AWS region.
@@ -856,14 +624,6 @@ module Aws::CloudSearch
856
624
  # Specifies the name of the domain you want to update and name of the
857
625
  # suggester you want to delete.
858
626
  #
859
- # @note When making an API call, you may pass DeleteSuggesterRequest
860
- # data as a hash:
861
- #
862
- # {
863
- # domain_name: "DomainName", # required
864
- # suggester_name: "StandardName", # required
865
- # }
866
- #
867
627
  # @!attribute [rw] domain_name
868
628
  # A string that represents the name of a domain. Domain names are
869
629
  # unique across the domains owned by an account within an AWS region.
@@ -902,15 +662,6 @@ module Aws::CloudSearch
902
662
  # configuration and exclude any pending changes, set the `Deployed`
903
663
  # option to `true`.
904
664
  #
905
- # @note When making an API call, you may pass DescribeAnalysisSchemesRequest
906
- # data as a hash:
907
- #
908
- # {
909
- # domain_name: "DomainName", # required
910
- # analysis_scheme_names: ["StandardName"],
911
- # deployed: false,
912
- # }
913
- #
914
665
  # @!attribute [rw] domain_name
915
666
  # The name of the domain you want to describe.
916
667
  # @return [String]
@@ -950,14 +701,6 @@ module Aws::CloudSearch
950
701
  # show the active configuration and exclude any pending changes, set the
951
702
  # Deployed option to `true`.
952
703
  #
953
- # @note When making an API call, you may pass DescribeAvailabilityOptionsRequest
954
- # data as a hash:
955
- #
956
- # {
957
- # domain_name: "DomainName", # required
958
- # deployed: false,
959
- # }
960
- #
961
704
  # @!attribute [rw] domain_name
962
705
  # The name of the domain you want to describe.
963
706
  # @return [String]
@@ -994,14 +737,6 @@ module Aws::CloudSearch
994
737
  # show the active configuration and exclude any pending changes, set the
995
738
  # Deployed option to `true`.
996
739
  #
997
- # @note When making an API call, you may pass DescribeDomainEndpointOptionsRequest
998
- # data as a hash:
999
- #
1000
- # {
1001
- # domain_name: "DomainName", # required
1002
- # deployed: false,
1003
- # }
1004
- #
1005
740
  # @!attribute [rw] domain_name
1006
741
  # A string that represents the name of a domain.
1007
742
  # @return [String]
@@ -1037,13 +772,6 @@ module Aws::CloudSearch
1037
772
  # particular domains, specify the names of the domains you want to
1038
773
  # describe.
1039
774
  #
1040
- # @note When making an API call, you may pass DescribeDomainsRequest
1041
- # data as a hash:
1042
- #
1043
- # {
1044
- # domain_names: ["DomainName"],
1045
- # }
1046
- #
1047
775
  # @!attribute [rw] domain_names
1048
776
  # The names of the domains you want to include in the response.
1049
777
  # @return [Array<String>]
@@ -1073,15 +801,6 @@ module Aws::CloudSearch
1073
801
  # expressions you want to describe. To show the active configuration and
1074
802
  # exclude any pending changes, set the `Deployed` option to `true`.
1075
803
  #
1076
- # @note When making an API call, you may pass DescribeExpressionsRequest
1077
- # data as a hash:
1078
- #
1079
- # {
1080
- # domain_name: "DomainName", # required
1081
- # expression_names: ["StandardName"],
1082
- # deployed: false,
1083
- # }
1084
- #
1085
804
  # @!attribute [rw] domain_name
1086
805
  # The name of the domain you want to describe.
1087
806
  # @return [String]
@@ -1123,15 +842,6 @@ module Aws::CloudSearch
1123
842
  # fields you want to describe. To show the active configuration and
1124
843
  # exclude any pending changes, set the `Deployed` option to `true`.
1125
844
  #
1126
- # @note When making an API call, you may pass DescribeIndexFieldsRequest
1127
- # data as a hash:
1128
- #
1129
- # {
1130
- # domain_name: "DomainName", # required
1131
- # field_names: ["DynamicFieldName"],
1132
- # deployed: false,
1133
- # }
1134
- #
1135
845
  # @!attribute [rw] domain_name
1136
846
  # The name of the domain you want to describe.
1137
847
  # @return [String]
@@ -1170,13 +880,6 @@ module Aws::CloudSearch
1170
880
  # Container for the parameters to the `DescribeScalingParameters`
1171
881
  # operation. Specifies the name of the domain you want to describe.
1172
882
  #
1173
- # @note When making an API call, you may pass DescribeScalingParametersRequest
1174
- # data as a hash:
1175
- #
1176
- # {
1177
- # domain_name: "DomainName", # required
1178
- # }
1179
- #
1180
883
  # @!attribute [rw] domain_name
1181
884
  # A string that represents the name of a domain. Domain names are
1182
885
  # unique across the domains owned by an account within an AWS region.
@@ -1209,14 +912,6 @@ module Aws::CloudSearch
1209
912
  # show the active configuration and exclude any pending changes, set the
1210
913
  # `Deployed` option to `true`.
1211
914
  #
1212
- # @note When making an API call, you may pass DescribeServiceAccessPoliciesRequest
1213
- # data as a hash:
1214
- #
1215
- # {
1216
- # domain_name: "DomainName", # required
1217
- # deployed: false,
1218
- # }
1219
- #
1220
915
  # @!attribute [rw] domain_name
1221
916
  # The name of the domain you want to describe.
1222
917
  # @return [String]
@@ -1251,15 +946,6 @@ module Aws::CloudSearch
1251
946
  # you want to describe. To show the active configuration and exclude any
1252
947
  # pending changes, set the `Deployed` option to `true`.
1253
948
  #
1254
- # @note When making an API call, you may pass DescribeSuggestersRequest
1255
- # data as a hash:
1256
- #
1257
- # {
1258
- # domain_name: "DomainName", # required
1259
- # suggester_names: ["StandardName"],
1260
- # deployed: false,
1261
- # }
1262
- #
1263
949
  # @!attribute [rw] domain_name
1264
950
  # The name of the domain you want to describe.
1265
951
  # @return [String]
@@ -1300,15 +986,6 @@ module Aws::CloudSearch
1300
986
 
1301
987
  # Options for a search suggester.
1302
988
  #
1303
- # @note When making an API call, you may pass DocumentSuggesterOptions
1304
- # data as a hash:
1305
- #
1306
- # {
1307
- # source_field: "FieldName", # required
1308
- # fuzzy_matching: "none", # accepts none, low, high
1309
- # sort_expression: "String",
1310
- # }
1311
- #
1312
989
  # @!attribute [rw] source_field
1313
990
  # The name of the index field you want to use for suggestions.
1314
991
  # @return [String]
@@ -1342,14 +1019,6 @@ module Aws::CloudSearch
1342
1019
 
1343
1020
  # The domain's endpoint options.
1344
1021
  #
1345
- # @note When making an API call, you may pass DomainEndpointOptions
1346
- # data as a hash:
1347
- #
1348
- # {
1349
- # enforce_https: false,
1350
- # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
1351
- # }
1352
- #
1353
1022
  # @!attribute [rw] enforce_https
1354
1023
  # Whether the domain is HTTPS only enabled.
1355
1024
  # @return [Boolean]
@@ -1477,17 +1146,6 @@ module Aws::CloudSearch
1477
1146
  # floating point values. Present if `IndexFieldType` specifies the field
1478
1147
  # is of type `double-array`. All options are enabled by default.
1479
1148
  #
1480
- # @note When making an API call, you may pass DoubleArrayOptions
1481
- # data as a hash:
1482
- #
1483
- # {
1484
- # default_value: 1.0,
1485
- # source_fields: "FieldNameCommaList",
1486
- # facet_enabled: false,
1487
- # search_enabled: false,
1488
- # return_enabled: false,
1489
- # }
1490
- #
1491
1149
  # @!attribute [rw] default_value
1492
1150
  # A value to use for the field if the field isn't specified for a
1493
1151
  # document.
@@ -1524,18 +1182,6 @@ module Aws::CloudSearch
1524
1182
  # `IndexFieldType` specifies the field is of type `double`. All options
1525
1183
  # are enabled by default.
1526
1184
  #
1527
- # @note When making an API call, you may pass DoubleOptions
1528
- # data as a hash:
1529
- #
1530
- # {
1531
- # default_value: 1.0,
1532
- # source_field: "FieldName",
1533
- # facet_enabled: false,
1534
- # search_enabled: false,
1535
- # return_enabled: false,
1536
- # sort_enabled: false,
1537
- # }
1538
- #
1539
1185
  # @!attribute [rw] default_value
1540
1186
  # A value to use for the field if the field isn't specified for a
1541
1187
  # document. This can be important if you are using the field in an
@@ -1578,14 +1224,6 @@ module Aws::CloudSearch
1578
1224
  # to sort the search results, define other expressions, or return
1579
1225
  # computed information in the search results.
1580
1226
  #
1581
- # @note When making an API call, you may pass Expression
1582
- # data as a hash:
1583
- #
1584
- # {
1585
- # expression_name: "StandardName", # required
1586
- # expression_value: "ExpressionValue", # required
1587
- # }
1588
- #
1589
1227
  # @!attribute [rw] expression_name
1590
1228
  # Names must begin with a letter and can contain the following
1591
1229
  # characters: a-z (lowercase), 0-9, and \_ (underscore).
@@ -1630,13 +1268,6 @@ module Aws::CloudSearch
1630
1268
  # Container for the parameters to the `IndexDocuments` operation.
1631
1269
  # Specifies the name of the domain you want to re-index.
1632
1270
  #
1633
- # @note When making an API call, you may pass IndexDocumentsRequest
1634
- # data as a hash:
1635
- #
1636
- # {
1637
- # domain_name: "DomainName", # required
1638
- # }
1639
- #
1640
1271
  # @!attribute [rw] domain_name
1641
1272
  # A string that represents the name of a domain. Domain names are
1642
1273
  # unique across the domains owned by an account within an AWS region.
@@ -1667,97 +1298,6 @@ module Aws::CloudSearch
1667
1298
  # name, type, and options. The supported options depend on the
1668
1299
  # `IndexFieldType`.
1669
1300
  #
1670
- # @note When making an API call, you may pass IndexField
1671
- # data as a hash:
1672
- #
1673
- # {
1674
- # index_field_name: "DynamicFieldName", # required
1675
- # index_field_type: "int", # required, accepts int, double, literal, text, date, latlon, int-array, double-array, literal-array, text-array, date-array
1676
- # int_options: {
1677
- # default_value: 1,
1678
- # source_field: "FieldName",
1679
- # facet_enabled: false,
1680
- # search_enabled: false,
1681
- # return_enabled: false,
1682
- # sort_enabled: false,
1683
- # },
1684
- # double_options: {
1685
- # default_value: 1.0,
1686
- # source_field: "FieldName",
1687
- # facet_enabled: false,
1688
- # search_enabled: false,
1689
- # return_enabled: false,
1690
- # sort_enabled: false,
1691
- # },
1692
- # literal_options: {
1693
- # default_value: "FieldValue",
1694
- # source_field: "FieldName",
1695
- # facet_enabled: false,
1696
- # search_enabled: false,
1697
- # return_enabled: false,
1698
- # sort_enabled: false,
1699
- # },
1700
- # text_options: {
1701
- # default_value: "FieldValue",
1702
- # source_field: "FieldName",
1703
- # return_enabled: false,
1704
- # sort_enabled: false,
1705
- # highlight_enabled: false,
1706
- # analysis_scheme: "Word",
1707
- # },
1708
- # date_options: {
1709
- # default_value: "FieldValue",
1710
- # source_field: "FieldName",
1711
- # facet_enabled: false,
1712
- # search_enabled: false,
1713
- # return_enabled: false,
1714
- # sort_enabled: false,
1715
- # },
1716
- # lat_lon_options: {
1717
- # default_value: "FieldValue",
1718
- # source_field: "FieldName",
1719
- # facet_enabled: false,
1720
- # search_enabled: false,
1721
- # return_enabled: false,
1722
- # sort_enabled: false,
1723
- # },
1724
- # int_array_options: {
1725
- # default_value: 1,
1726
- # source_fields: "FieldNameCommaList",
1727
- # facet_enabled: false,
1728
- # search_enabled: false,
1729
- # return_enabled: false,
1730
- # },
1731
- # double_array_options: {
1732
- # default_value: 1.0,
1733
- # source_fields: "FieldNameCommaList",
1734
- # facet_enabled: false,
1735
- # search_enabled: false,
1736
- # return_enabled: false,
1737
- # },
1738
- # literal_array_options: {
1739
- # default_value: "FieldValue",
1740
- # source_fields: "FieldNameCommaList",
1741
- # facet_enabled: false,
1742
- # search_enabled: false,
1743
- # return_enabled: false,
1744
- # },
1745
- # text_array_options: {
1746
- # default_value: "FieldValue",
1747
- # source_fields: "FieldNameCommaList",
1748
- # return_enabled: false,
1749
- # highlight_enabled: false,
1750
- # analysis_scheme: "Word",
1751
- # },
1752
- # date_array_options: {
1753
- # default_value: "FieldValue",
1754
- # source_fields: "FieldNameCommaList",
1755
- # facet_enabled: false,
1756
- # search_enabled: false,
1757
- # return_enabled: false,
1758
- # },
1759
- # }
1760
- #
1761
1301
  # @!attribute [rw] index_field_name
1762
1302
  # A string that represents the name of an index field. CloudSearch
1763
1303
  # supports regular index fields as well as dynamic fields. A dynamic
@@ -1898,17 +1438,6 @@ module Aws::CloudSearch
1898
1438
  # Present if `IndexFieldType` specifies the field is of type
1899
1439
  # `int-array`. All options are enabled by default.
1900
1440
  #
1901
- # @note When making an API call, you may pass IntArrayOptions
1902
- # data as a hash:
1903
- #
1904
- # {
1905
- # default_value: 1,
1906
- # source_fields: "FieldNameCommaList",
1907
- # facet_enabled: false,
1908
- # search_enabled: false,
1909
- # return_enabled: false,
1910
- # }
1911
- #
1912
1441
  # @!attribute [rw] default_value
1913
1442
  # A value to use for the field if the field isn't specified for a
1914
1443
  # document.
@@ -1945,18 +1474,6 @@ module Aws::CloudSearch
1945
1474
  # specifies the field is of type `int`. All options are enabled by
1946
1475
  # default.
1947
1476
  #
1948
- # @note When making an API call, you may pass IntOptions
1949
- # data as a hash:
1950
- #
1951
- # {
1952
- # default_value: 1,
1953
- # source_field: "FieldName",
1954
- # facet_enabled: false,
1955
- # search_enabled: false,
1956
- # return_enabled: false,
1957
- # sort_enabled: false,
1958
- # }
1959
- #
1960
1477
  # @!attribute [rw] default_value
1961
1478
  # A value to use for the field if the field isn't specified for a
1962
1479
  # document. This can be important if you are using the field in an
@@ -2015,18 +1532,6 @@ module Aws::CloudSearch
2015
1532
  # specifies the field is of type `latlon`. All options are enabled by
2016
1533
  # default.
2017
1534
  #
2018
- # @note When making an API call, you may pass LatLonOptions
2019
- # data as a hash:
2020
- #
2021
- # {
2022
- # default_value: "FieldValue",
2023
- # source_field: "FieldName",
2024
- # facet_enabled: false,
2025
- # search_enabled: false,
2026
- # return_enabled: false,
2027
- # sort_enabled: false,
2028
- # }
2029
- #
2030
1535
  # @!attribute [rw] default_value
2031
1536
  # A value to use for the field if the field isn't specified for a
2032
1537
  # document.
@@ -2114,17 +1619,6 @@ module Aws::CloudSearch
2114
1619
  # if `IndexFieldType` specifies the field is of type `literal-array`.
2115
1620
  # All options are enabled by default.
2116
1621
  #
2117
- # @note When making an API call, you may pass LiteralArrayOptions
2118
- # data as a hash:
2119
- #
2120
- # {
2121
- # default_value: "FieldValue",
2122
- # source_fields: "FieldNameCommaList",
2123
- # facet_enabled: false,
2124
- # search_enabled: false,
2125
- # return_enabled: false,
2126
- # }
2127
- #
2128
1622
  # @!attribute [rw] default_value
2129
1623
  # A value to use for the field if the field isn't specified for a
2130
1624
  # document.
@@ -2160,18 +1654,6 @@ module Aws::CloudSearch
2160
1654
  # Options for literal field. Present if `IndexFieldType` specifies the
2161
1655
  # field is of type `literal`. All options are enabled by default.
2162
1656
  #
2163
- # @note When making an API call, you may pass LiteralOptions
2164
- # data as a hash:
2165
- #
2166
- # {
2167
- # default_value: "FieldValue",
2168
- # source_field: "FieldName",
2169
- # facet_enabled: false,
2170
- # search_enabled: false,
2171
- # return_enabled: false,
2172
- # sort_enabled: false,
2173
- # }
2174
- #
2175
1657
  # @!attribute [rw] default_value
2176
1658
  # A value to use for the field if the field isn't specified for a
2177
1659
  # document.
@@ -2241,13 +1723,13 @@ module Aws::CloudSearch
2241
1723
  # @!attribute [rw] state
2242
1724
  # The state of processing a change to an option. Possible values:
2243
1725
  #
2244
- # * `RequiresIndexDocuments`\: the option's latest value will not be
1726
+ # * `RequiresIndexDocuments`: the option's latest value will not be
2245
1727
  # deployed until IndexDocuments has been called and indexing is
2246
1728
  # complete.
2247
- # * `Processing`\: the option's latest value is in the process of
1729
+ # * `Processing`: the option's latest value is in the process of
2248
1730
  # being activated.
2249
- # * `Active`\: the option's latest value is completely deployed.
2250
- # * `FailedToValidate`\: the option value is not compatible with the
1731
+ # * `Active`: the option's latest value is completely deployed.
1732
+ # * `FailedToValidate`: the option value is not compatible with the
2251
1733
  # domain's data and cannot be used to index the data. You must
2252
1734
  # either modify the option value or update or remove the
2253
1735
  # incompatible documents.
@@ -2281,15 +1763,6 @@ module Aws::CloudSearch
2281
1763
  # The desired instance type and desired number of replicas of each index
2282
1764
  # partition.
2283
1765
  #
2284
- # @note When making an API call, you may pass ScalingParameters
2285
- # data as a hash:
2286
- #
2287
- # {
2288
- # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
2289
- # desired_replication_count: 1,
2290
- # desired_partition_count: 1,
2291
- # }
2292
- #
2293
1766
  # @!attribute [rw] desired_instance_type
2294
1767
  # The instance type that you want to preconfigure for your domain. For
2295
1768
  # example, `search.m1.small`.
@@ -2353,18 +1826,6 @@ module Aws::CloudSearch
2353
1826
  # suggestions. The following options can be configured for a suggester:
2354
1827
  # `FuzzyMatching`, `SortExpression`.
2355
1828
  #
2356
- # @note When making an API call, you may pass Suggester
2357
- # data as a hash:
2358
- #
2359
- # {
2360
- # suggester_name: "StandardName", # required
2361
- # document_suggester_options: { # required
2362
- # source_field: "FieldName", # required
2363
- # fuzzy_matching: "none", # accepts none, low, high
2364
- # sort_expression: "String",
2365
- # },
2366
- # }
2367
- #
2368
1829
  # @!attribute [rw] suggester_name
2369
1830
  # Names must begin with a letter and can contain the following
2370
1831
  # characters: a-z (lowercase), 0-9, and \_ (underscore).
@@ -2406,17 +1867,6 @@ module Aws::CloudSearch
2406
1867
  # `text-array` field is always searchable. All options are enabled by
2407
1868
  # default.
2408
1869
  #
2409
- # @note When making an API call, you may pass TextArrayOptions
2410
- # data as a hash:
2411
- #
2412
- # {
2413
- # default_value: "FieldValue",
2414
- # source_fields: "FieldNameCommaList",
2415
- # return_enabled: false,
2416
- # highlight_enabled: false,
2417
- # analysis_scheme: "Word",
2418
- # }
2419
- #
2420
1870
  # @!attribute [rw] default_value
2421
1871
  # A value to use for the field if the field isn't specified for a
2422
1872
  # document.
@@ -2453,18 +1903,6 @@ module Aws::CloudSearch
2453
1903
  # field is of type `text`. A `text` field is always searchable. All
2454
1904
  # options are enabled by default.
2455
1905
  #
2456
- # @note When making an API call, you may pass TextOptions
2457
- # data as a hash:
2458
- #
2459
- # {
2460
- # default_value: "FieldValue",
2461
- # source_field: "FieldName",
2462
- # return_enabled: false,
2463
- # sort_enabled: false,
2464
- # highlight_enabled: false,
2465
- # analysis_scheme: "Word",
2466
- # }
2467
- #
2468
1906
  # @!attribute [rw] default_value
2469
1907
  # A value to use for the field if the field isn't specified for a
2470
1908
  # document.
@@ -2521,14 +1959,6 @@ module Aws::CloudSearch
2521
1959
  # operation. Specifies the name of the domain you want to update and the
2522
1960
  # Multi-AZ availability option.
2523
1961
  #
2524
- # @note When making an API call, you may pass UpdateAvailabilityOptionsRequest
2525
- # data as a hash:
2526
- #
2527
- # {
2528
- # domain_name: "DomainName", # required
2529
- # multi_az: false, # required
2530
- # }
2531
- #
2532
1962
  # @!attribute [rw] domain_name
2533
1963
  # A string that represents the name of a domain. Domain names are
2534
1964
  # unique across the domains owned by an account within an AWS region.
@@ -2568,17 +1998,6 @@ module Aws::CloudSearch
2568
1998
  # operation. Specifies the name of the domain you want to update and the
2569
1999
  # domain endpoint options.
2570
2000
  #
2571
- # @note When making an API call, you may pass UpdateDomainEndpointOptionsRequest
2572
- # data as a hash:
2573
- #
2574
- # {
2575
- # domain_name: "DomainName", # required
2576
- # domain_endpoint_options: { # required
2577
- # enforce_https: false,
2578
- # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
2579
- # },
2580
- # }
2581
- #
2582
2001
  # @!attribute [rw] domain_name
2583
2002
  # A string that represents the name of a domain.
2584
2003
  # @return [String]
@@ -2614,18 +2033,6 @@ module Aws::CloudSearch
2614
2033
  # operation. Specifies the name of the domain you want to update and the
2615
2034
  # scaling parameters you want to configure.
2616
2035
  #
2617
- # @note When making an API call, you may pass UpdateScalingParametersRequest
2618
- # data as a hash:
2619
- #
2620
- # {
2621
- # domain_name: "DomainName", # required
2622
- # scaling_parameters: { # required
2623
- # desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge, search.previousgeneration.small, search.previousgeneration.large, search.previousgeneration.xlarge, search.previousgeneration.2xlarge
2624
- # desired_replication_count: 1,
2625
- # desired_partition_count: 1,
2626
- # },
2627
- # }
2628
- #
2629
2036
  # @!attribute [rw] domain_name
2630
2037
  # A string that represents the name of a domain. Domain names are
2631
2038
  # unique across the domains owned by an account within an AWS region.
@@ -2663,14 +2070,6 @@ module Aws::CloudSearch
2663
2070
  # operation. Specifies the name of the domain you want to update and the
2664
2071
  # access rules you want to configure.
2665
2072
  #
2666
- # @note When making an API call, you may pass UpdateServiceAccessPoliciesRequest
2667
- # data as a hash:
2668
- #
2669
- # {
2670
- # domain_name: "DomainName", # required
2671
- # access_policies: "PolicyDocument", # required
2672
- # }
2673
- #
2674
2073
  # @!attribute [rw] domain_name
2675
2074
  # A string that represents the name of a domain. Domain names are
2676
2075
  # unique across the domains owned by an account within an AWS region.