@aws-sdk/client-cloudsearch 3.50.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/CloudSearchServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +123 -2
  5. package/dist-cjs/protocols/Aws_query.js +247 -1002
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/CloudSearchServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +114 -1
  9. package/dist-es/protocols/Aws_query.js +573 -1091
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/CloudSearchServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -25
  13. package/dist-types/ts3.4/CloudSearch.d.ts +135 -0
  14. package/dist-types/ts3.4/CloudSearchClient.d.ts +99 -0
  15. package/dist-types/ts3.4/commands/BuildSuggestersCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DefineAnalysisSchemeCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DefineExpressionCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DefineIndexFieldCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DefineSuggesterCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteAnalysisSchemeCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeleteExpressionCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DeleteIndexFieldCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DeleteSuggesterCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DescribeAnalysisSchemesCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/DescribeAvailabilityOptionsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/DescribeDomainEndpointOptionsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/DescribeDomainsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/DescribeExpressionsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/DescribeIndexFieldsCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/DescribeScalingParametersCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/DescribeServiceAccessPoliciesCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/DescribeSuggestersCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/IndexDocumentsCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UpdateAvailabilityOptionsCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/UpdateDomainEndpointOptionsCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UpdateScalingParametersCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateServiceAccessPoliciesCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  43. package/dist-types/ts3.4/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/CloudSearchServiceException.d.ts +6 -0
  45. package/dist-types/ts3.4/models/index.d.ts +1 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +1082 -0
  47. package/dist-types/ts3.4/protocols/Aws_query.d.ts +80 -0
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  52. package/package.json +33 -33
@@ -0,0 +1,1082 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CloudSearchServiceException as __BaseException } from "./CloudSearchServiceException";
3
+
4
+ export declare class BaseException extends __BaseException {
5
+ readonly name: "BaseException";
6
+ readonly $fault: "client";
7
+
8
+ Code?: string;
9
+
10
+ Message?: string;
11
+
12
+ constructor(opts: __ExceptionOptionType<BaseException, __BaseException>);
13
+ }
14
+
15
+ export interface BuildSuggestersRequest {
16
+
17
+ DomainName: string | undefined;
18
+ }
19
+ export declare namespace BuildSuggestersRequest {
20
+
21
+ const filterSensitiveLog: (obj: BuildSuggestersRequest) => any;
22
+ }
23
+
24
+ export interface BuildSuggestersResponse {
25
+
26
+ FieldNames?: string[];
27
+ }
28
+ export declare namespace BuildSuggestersResponse {
29
+
30
+ const filterSensitiveLog: (obj: BuildSuggestersResponse) => any;
31
+ }
32
+
33
+ export declare class InternalException extends __BaseException {
34
+ readonly name: "InternalException";
35
+ readonly $fault: "server";
36
+
37
+ Code?: string;
38
+
39
+ Message?: string;
40
+
41
+ constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
42
+ }
43
+
44
+ export declare class ResourceNotFoundException extends __BaseException {
45
+ readonly name: "ResourceNotFoundException";
46
+ readonly $fault: "client";
47
+
48
+ Code?: string;
49
+
50
+ Message?: string;
51
+
52
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
53
+ }
54
+
55
+ export declare class ValidationException extends __BaseException {
56
+ readonly name: "ValidationException";
57
+ readonly $fault: "client";
58
+
59
+ Code?: string;
60
+
61
+ Message?: string;
62
+
63
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
64
+ }
65
+
66
+ export interface CreateDomainRequest {
67
+
68
+ DomainName: string | undefined;
69
+ }
70
+ export declare namespace CreateDomainRequest {
71
+
72
+ const filterSensitiveLog: (obj: CreateDomainRequest) => any;
73
+ }
74
+
75
+ export interface ServiceEndpoint {
76
+
77
+ Endpoint?: string;
78
+ }
79
+ export declare namespace ServiceEndpoint {
80
+
81
+ const filterSensitiveLog: (obj: ServiceEndpoint) => any;
82
+ }
83
+ export interface Limits {
84
+ MaximumReplicationCount: number | undefined;
85
+ MaximumPartitionCount: number | undefined;
86
+ }
87
+ export declare namespace Limits {
88
+
89
+ const filterSensitiveLog: (obj: Limits) => any;
90
+ }
91
+
92
+ export interface DomainStatus {
93
+
94
+ DomainId: string | undefined;
95
+
96
+ DomainName: string | undefined;
97
+
98
+ ARN?: string;
99
+
100
+ Created?: boolean;
101
+
102
+ Deleted?: boolean;
103
+
104
+ DocService?: ServiceEndpoint;
105
+
106
+ SearchService?: ServiceEndpoint;
107
+
108
+ RequiresIndexDocuments: boolean | undefined;
109
+
110
+ Processing?: boolean;
111
+
112
+ SearchInstanceType?: string;
113
+
114
+ SearchPartitionCount?: number;
115
+
116
+ SearchInstanceCount?: number;
117
+ Limits?: Limits;
118
+ }
119
+ export declare namespace DomainStatus {
120
+
121
+ const filterSensitiveLog: (obj: DomainStatus) => any;
122
+ }
123
+
124
+ export interface CreateDomainResponse {
125
+
126
+ DomainStatus?: DomainStatus;
127
+ }
128
+ export declare namespace CreateDomainResponse {
129
+
130
+ const filterSensitiveLog: (obj: CreateDomainResponse) => any;
131
+ }
132
+
133
+ export declare class LimitExceededException extends __BaseException {
134
+ readonly name: "LimitExceededException";
135
+ readonly $fault: "client";
136
+
137
+ Code?: string;
138
+
139
+ Message?: string;
140
+
141
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
142
+ }
143
+
144
+ export declare class ResourceAlreadyExistsException extends __BaseException {
145
+ readonly name: "ResourceAlreadyExistsException";
146
+ readonly $fault: "client";
147
+
148
+ Code?: string;
149
+
150
+ Message?: string;
151
+
152
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
153
+ }
154
+ export declare type AlgorithmicStemming = "full" | "light" | "minimal" | "none";
155
+
156
+ export interface AnalysisOptions {
157
+
158
+ Synonyms?: string;
159
+
160
+ Stopwords?: string;
161
+
162
+ StemmingDictionary?: string;
163
+
164
+ JapaneseTokenizationDictionary?: string;
165
+
166
+ AlgorithmicStemming?: AlgorithmicStemming | string;
167
+ }
168
+ export declare namespace AnalysisOptions {
169
+
170
+ const filterSensitiveLog: (obj: AnalysisOptions) => any;
171
+ }
172
+ export declare type AnalysisSchemeLanguage = "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";
173
+
174
+ export interface AnalysisScheme {
175
+
176
+ AnalysisSchemeName: string | undefined;
177
+
178
+ AnalysisSchemeLanguage: AnalysisSchemeLanguage | string | undefined;
179
+
180
+ AnalysisOptions?: AnalysisOptions;
181
+ }
182
+ export declare namespace AnalysisScheme {
183
+
184
+ const filterSensitiveLog: (obj: AnalysisScheme) => any;
185
+ }
186
+
187
+ export interface DefineAnalysisSchemeRequest {
188
+
189
+ DomainName: string | undefined;
190
+
191
+ AnalysisScheme: AnalysisScheme | undefined;
192
+ }
193
+ export declare namespace DefineAnalysisSchemeRequest {
194
+
195
+ const filterSensitiveLog: (obj: DefineAnalysisSchemeRequest) => any;
196
+ }
197
+ export declare type OptionState = "Active" | "FailedToValidate" | "Processing" | "RequiresIndexDocuments";
198
+
199
+ export interface OptionStatus {
200
+
201
+ CreationDate: Date | undefined;
202
+
203
+ UpdateDate: Date | undefined;
204
+
205
+ UpdateVersion?: number;
206
+
207
+ State: OptionState | string | undefined;
208
+
209
+ PendingDeletion?: boolean;
210
+ }
211
+ export declare namespace OptionStatus {
212
+
213
+ const filterSensitiveLog: (obj: OptionStatus) => any;
214
+ }
215
+
216
+ export interface AnalysisSchemeStatus {
217
+
218
+ Options: AnalysisScheme | undefined;
219
+
220
+ Status: OptionStatus | undefined;
221
+ }
222
+ export declare namespace AnalysisSchemeStatus {
223
+
224
+ const filterSensitiveLog: (obj: AnalysisSchemeStatus) => any;
225
+ }
226
+
227
+ export interface DefineAnalysisSchemeResponse {
228
+
229
+ AnalysisScheme: AnalysisSchemeStatus | undefined;
230
+ }
231
+ export declare namespace DefineAnalysisSchemeResponse {
232
+
233
+ const filterSensitiveLog: (obj: DefineAnalysisSchemeResponse) => any;
234
+ }
235
+
236
+ export declare class InvalidTypeException extends __BaseException {
237
+ readonly name: "InvalidTypeException";
238
+ readonly $fault: "client";
239
+
240
+ Code?: string;
241
+
242
+ Message?: string;
243
+
244
+ constructor(opts: __ExceptionOptionType<InvalidTypeException, __BaseException>);
245
+ }
246
+
247
+ export interface Expression {
248
+
249
+ ExpressionName: string | undefined;
250
+
251
+ ExpressionValue: string | undefined;
252
+ }
253
+ export declare namespace Expression {
254
+
255
+ const filterSensitiveLog: (obj: Expression) => any;
256
+ }
257
+
258
+ export interface DefineExpressionRequest {
259
+
260
+ DomainName: string | undefined;
261
+
262
+ Expression: Expression | undefined;
263
+ }
264
+ export declare namespace DefineExpressionRequest {
265
+
266
+ const filterSensitiveLog: (obj: DefineExpressionRequest) => any;
267
+ }
268
+
269
+ export interface ExpressionStatus {
270
+
271
+ Options: Expression | undefined;
272
+
273
+ Status: OptionStatus | undefined;
274
+ }
275
+ export declare namespace ExpressionStatus {
276
+
277
+ const filterSensitiveLog: (obj: ExpressionStatus) => any;
278
+ }
279
+
280
+ export interface DefineExpressionResponse {
281
+
282
+ Expression: ExpressionStatus | undefined;
283
+ }
284
+ export declare namespace DefineExpressionResponse {
285
+
286
+ const filterSensitiveLog: (obj: DefineExpressionResponse) => any;
287
+ }
288
+
289
+ export interface DateArrayOptions {
290
+
291
+ DefaultValue?: string;
292
+
293
+ SourceFields?: string;
294
+
295
+ FacetEnabled?: boolean;
296
+
297
+ SearchEnabled?: boolean;
298
+
299
+ ReturnEnabled?: boolean;
300
+ }
301
+ export declare namespace DateArrayOptions {
302
+
303
+ const filterSensitiveLog: (obj: DateArrayOptions) => any;
304
+ }
305
+
306
+ export interface DateOptions {
307
+
308
+ DefaultValue?: string;
309
+
310
+ SourceField?: string;
311
+
312
+ FacetEnabled?: boolean;
313
+
314
+ SearchEnabled?: boolean;
315
+
316
+ ReturnEnabled?: boolean;
317
+
318
+ SortEnabled?: boolean;
319
+ }
320
+ export declare namespace DateOptions {
321
+
322
+ const filterSensitiveLog: (obj: DateOptions) => any;
323
+ }
324
+
325
+ export interface DoubleArrayOptions {
326
+
327
+ DefaultValue?: number;
328
+
329
+ SourceFields?: string;
330
+
331
+ FacetEnabled?: boolean;
332
+
333
+ SearchEnabled?: boolean;
334
+
335
+ ReturnEnabled?: boolean;
336
+ }
337
+ export declare namespace DoubleArrayOptions {
338
+
339
+ const filterSensitiveLog: (obj: DoubleArrayOptions) => any;
340
+ }
341
+
342
+ export interface DoubleOptions {
343
+
344
+ DefaultValue?: number;
345
+
346
+ SourceField?: string;
347
+
348
+ FacetEnabled?: boolean;
349
+
350
+ SearchEnabled?: boolean;
351
+
352
+ ReturnEnabled?: boolean;
353
+
354
+ SortEnabled?: boolean;
355
+ }
356
+ export declare namespace DoubleOptions {
357
+
358
+ const filterSensitiveLog: (obj: DoubleOptions) => any;
359
+ }
360
+ export declare type IndexFieldType = "date" | "date-array" | "double" | "double-array" | "int" | "int-array" | "latlon" | "literal" | "literal-array" | "text" | "text-array";
361
+
362
+ export interface IntArrayOptions {
363
+
364
+ DefaultValue?: number;
365
+
366
+ SourceFields?: string;
367
+
368
+ FacetEnabled?: boolean;
369
+
370
+ SearchEnabled?: boolean;
371
+
372
+ ReturnEnabled?: boolean;
373
+ }
374
+ export declare namespace IntArrayOptions {
375
+
376
+ const filterSensitiveLog: (obj: IntArrayOptions) => any;
377
+ }
378
+
379
+ export interface IntOptions {
380
+
381
+ DefaultValue?: number;
382
+
383
+ SourceField?: string;
384
+
385
+ FacetEnabled?: boolean;
386
+
387
+ SearchEnabled?: boolean;
388
+
389
+ ReturnEnabled?: boolean;
390
+
391
+ SortEnabled?: boolean;
392
+ }
393
+ export declare namespace IntOptions {
394
+
395
+ const filterSensitiveLog: (obj: IntOptions) => any;
396
+ }
397
+
398
+ export interface LatLonOptions {
399
+
400
+ DefaultValue?: string;
401
+
402
+ SourceField?: string;
403
+
404
+ FacetEnabled?: boolean;
405
+
406
+ SearchEnabled?: boolean;
407
+
408
+ ReturnEnabled?: boolean;
409
+
410
+ SortEnabled?: boolean;
411
+ }
412
+ export declare namespace LatLonOptions {
413
+
414
+ const filterSensitiveLog: (obj: LatLonOptions) => any;
415
+ }
416
+
417
+ export interface LiteralArrayOptions {
418
+
419
+ DefaultValue?: string;
420
+
421
+ SourceFields?: string;
422
+
423
+ FacetEnabled?: boolean;
424
+
425
+ SearchEnabled?: boolean;
426
+
427
+ ReturnEnabled?: boolean;
428
+ }
429
+ export declare namespace LiteralArrayOptions {
430
+
431
+ const filterSensitiveLog: (obj: LiteralArrayOptions) => any;
432
+ }
433
+
434
+ export interface LiteralOptions {
435
+
436
+ DefaultValue?: string;
437
+
438
+ SourceField?: string;
439
+
440
+ FacetEnabled?: boolean;
441
+
442
+ SearchEnabled?: boolean;
443
+
444
+ ReturnEnabled?: boolean;
445
+
446
+ SortEnabled?: boolean;
447
+ }
448
+ export declare namespace LiteralOptions {
449
+
450
+ const filterSensitiveLog: (obj: LiteralOptions) => any;
451
+ }
452
+
453
+ export interface TextArrayOptions {
454
+
455
+ DefaultValue?: string;
456
+
457
+ SourceFields?: string;
458
+
459
+ ReturnEnabled?: boolean;
460
+
461
+ HighlightEnabled?: boolean;
462
+
463
+ AnalysisScheme?: string;
464
+ }
465
+ export declare namespace TextArrayOptions {
466
+
467
+ const filterSensitiveLog: (obj: TextArrayOptions) => any;
468
+ }
469
+
470
+ export interface TextOptions {
471
+
472
+ DefaultValue?: string;
473
+
474
+ SourceField?: string;
475
+
476
+ ReturnEnabled?: boolean;
477
+
478
+ SortEnabled?: boolean;
479
+
480
+ HighlightEnabled?: boolean;
481
+
482
+ AnalysisScheme?: string;
483
+ }
484
+ export declare namespace TextOptions {
485
+
486
+ const filterSensitiveLog: (obj: TextOptions) => any;
487
+ }
488
+
489
+ export interface IndexField {
490
+
491
+ IndexFieldName: string | undefined;
492
+
493
+ IndexFieldType: IndexFieldType | string | undefined;
494
+
495
+ IntOptions?: IntOptions;
496
+
497
+ DoubleOptions?: DoubleOptions;
498
+
499
+ LiteralOptions?: LiteralOptions;
500
+
501
+ TextOptions?: TextOptions;
502
+
503
+ DateOptions?: DateOptions;
504
+
505
+ LatLonOptions?: LatLonOptions;
506
+
507
+ IntArrayOptions?: IntArrayOptions;
508
+
509
+ DoubleArrayOptions?: DoubleArrayOptions;
510
+
511
+ LiteralArrayOptions?: LiteralArrayOptions;
512
+
513
+ TextArrayOptions?: TextArrayOptions;
514
+
515
+ DateArrayOptions?: DateArrayOptions;
516
+ }
517
+ export declare namespace IndexField {
518
+
519
+ const filterSensitiveLog: (obj: IndexField) => any;
520
+ }
521
+
522
+ export interface DefineIndexFieldRequest {
523
+
524
+ DomainName: string | undefined;
525
+
526
+ IndexField: IndexField | undefined;
527
+ }
528
+ export declare namespace DefineIndexFieldRequest {
529
+
530
+ const filterSensitiveLog: (obj: DefineIndexFieldRequest) => any;
531
+ }
532
+
533
+ export interface IndexFieldStatus {
534
+
535
+ Options: IndexField | undefined;
536
+
537
+ Status: OptionStatus | undefined;
538
+ }
539
+ export declare namespace IndexFieldStatus {
540
+
541
+ const filterSensitiveLog: (obj: IndexFieldStatus) => any;
542
+ }
543
+
544
+ export interface DefineIndexFieldResponse {
545
+
546
+ IndexField: IndexFieldStatus | undefined;
547
+ }
548
+ export declare namespace DefineIndexFieldResponse {
549
+
550
+ const filterSensitiveLog: (obj: DefineIndexFieldResponse) => any;
551
+ }
552
+ export declare type SuggesterFuzzyMatching = "high" | "low" | "none";
553
+
554
+ export interface DocumentSuggesterOptions {
555
+
556
+ SourceField: string | undefined;
557
+
558
+ FuzzyMatching?: SuggesterFuzzyMatching | string;
559
+
560
+ SortExpression?: string;
561
+ }
562
+ export declare namespace DocumentSuggesterOptions {
563
+
564
+ const filterSensitiveLog: (obj: DocumentSuggesterOptions) => any;
565
+ }
566
+
567
+ export interface Suggester {
568
+
569
+ SuggesterName: string | undefined;
570
+
571
+ DocumentSuggesterOptions: DocumentSuggesterOptions | undefined;
572
+ }
573
+ export declare namespace Suggester {
574
+
575
+ const filterSensitiveLog: (obj: Suggester) => any;
576
+ }
577
+
578
+ export interface DefineSuggesterRequest {
579
+
580
+ DomainName: string | undefined;
581
+
582
+ Suggester: Suggester | undefined;
583
+ }
584
+ export declare namespace DefineSuggesterRequest {
585
+
586
+ const filterSensitiveLog: (obj: DefineSuggesterRequest) => any;
587
+ }
588
+
589
+ export interface SuggesterStatus {
590
+
591
+ Options: Suggester | undefined;
592
+
593
+ Status: OptionStatus | undefined;
594
+ }
595
+ export declare namespace SuggesterStatus {
596
+
597
+ const filterSensitiveLog: (obj: SuggesterStatus) => any;
598
+ }
599
+
600
+ export interface DefineSuggesterResponse {
601
+
602
+ Suggester: SuggesterStatus | undefined;
603
+ }
604
+ export declare namespace DefineSuggesterResponse {
605
+
606
+ const filterSensitiveLog: (obj: DefineSuggesterResponse) => any;
607
+ }
608
+
609
+ export interface DeleteAnalysisSchemeRequest {
610
+
611
+ DomainName: string | undefined;
612
+
613
+ AnalysisSchemeName: string | undefined;
614
+ }
615
+ export declare namespace DeleteAnalysisSchemeRequest {
616
+
617
+ const filterSensitiveLog: (obj: DeleteAnalysisSchemeRequest) => any;
618
+ }
619
+
620
+ export interface DeleteAnalysisSchemeResponse {
621
+
622
+ AnalysisScheme: AnalysisSchemeStatus | undefined;
623
+ }
624
+ export declare namespace DeleteAnalysisSchemeResponse {
625
+
626
+ const filterSensitiveLog: (obj: DeleteAnalysisSchemeResponse) => any;
627
+ }
628
+
629
+ export interface DeleteDomainRequest {
630
+
631
+ DomainName: string | undefined;
632
+ }
633
+ export declare namespace DeleteDomainRequest {
634
+
635
+ const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
636
+ }
637
+
638
+ export interface DeleteDomainResponse {
639
+
640
+ DomainStatus?: DomainStatus;
641
+ }
642
+ export declare namespace DeleteDomainResponse {
643
+
644
+ const filterSensitiveLog: (obj: DeleteDomainResponse) => any;
645
+ }
646
+
647
+ export interface DeleteExpressionRequest {
648
+
649
+ DomainName: string | undefined;
650
+
651
+ ExpressionName: string | undefined;
652
+ }
653
+ export declare namespace DeleteExpressionRequest {
654
+
655
+ const filterSensitiveLog: (obj: DeleteExpressionRequest) => any;
656
+ }
657
+
658
+ export interface DeleteExpressionResponse {
659
+
660
+ Expression: ExpressionStatus | undefined;
661
+ }
662
+ export declare namespace DeleteExpressionResponse {
663
+
664
+ const filterSensitiveLog: (obj: DeleteExpressionResponse) => any;
665
+ }
666
+
667
+ export interface DeleteIndexFieldRequest {
668
+
669
+ DomainName: string | undefined;
670
+
671
+ IndexFieldName: string | undefined;
672
+ }
673
+ export declare namespace DeleteIndexFieldRequest {
674
+
675
+ const filterSensitiveLog: (obj: DeleteIndexFieldRequest) => any;
676
+ }
677
+
678
+ export interface DeleteIndexFieldResponse {
679
+
680
+ IndexField: IndexFieldStatus | undefined;
681
+ }
682
+ export declare namespace DeleteIndexFieldResponse {
683
+
684
+ const filterSensitiveLog: (obj: DeleteIndexFieldResponse) => any;
685
+ }
686
+
687
+ export interface DeleteSuggesterRequest {
688
+
689
+ DomainName: string | undefined;
690
+
691
+ SuggesterName: string | undefined;
692
+ }
693
+ export declare namespace DeleteSuggesterRequest {
694
+
695
+ const filterSensitiveLog: (obj: DeleteSuggesterRequest) => any;
696
+ }
697
+
698
+ export interface DeleteSuggesterResponse {
699
+
700
+ Suggester: SuggesterStatus | undefined;
701
+ }
702
+ export declare namespace DeleteSuggesterResponse {
703
+
704
+ const filterSensitiveLog: (obj: DeleteSuggesterResponse) => any;
705
+ }
706
+
707
+ export interface DescribeAnalysisSchemesRequest {
708
+
709
+ DomainName: string | undefined;
710
+
711
+ AnalysisSchemeNames?: string[];
712
+
713
+ Deployed?: boolean;
714
+ }
715
+ export declare namespace DescribeAnalysisSchemesRequest {
716
+
717
+ const filterSensitiveLog: (obj: DescribeAnalysisSchemesRequest) => any;
718
+ }
719
+
720
+ export interface DescribeAnalysisSchemesResponse {
721
+
722
+ AnalysisSchemes: AnalysisSchemeStatus[] | undefined;
723
+ }
724
+ export declare namespace DescribeAnalysisSchemesResponse {
725
+
726
+ const filterSensitiveLog: (obj: DescribeAnalysisSchemesResponse) => any;
727
+ }
728
+
729
+ export interface DescribeAvailabilityOptionsRequest {
730
+
731
+ DomainName: string | undefined;
732
+
733
+ Deployed?: boolean;
734
+ }
735
+ export declare namespace DescribeAvailabilityOptionsRequest {
736
+
737
+ const filterSensitiveLog: (obj: DescribeAvailabilityOptionsRequest) => any;
738
+ }
739
+
740
+ export interface AvailabilityOptionsStatus {
741
+
742
+ Options: boolean | undefined;
743
+
744
+ Status: OptionStatus | undefined;
745
+ }
746
+ export declare namespace AvailabilityOptionsStatus {
747
+
748
+ const filterSensitiveLog: (obj: AvailabilityOptionsStatus) => any;
749
+ }
750
+
751
+ export interface DescribeAvailabilityOptionsResponse {
752
+
753
+ AvailabilityOptions?: AvailabilityOptionsStatus;
754
+ }
755
+ export declare namespace DescribeAvailabilityOptionsResponse {
756
+
757
+ const filterSensitiveLog: (obj: DescribeAvailabilityOptionsResponse) => any;
758
+ }
759
+
760
+ export declare class DisabledOperationException extends __BaseException {
761
+ readonly name: "DisabledOperationException";
762
+ readonly $fault: "client";
763
+
764
+ Code?: string;
765
+
766
+ Message?: string;
767
+
768
+ constructor(opts: __ExceptionOptionType<DisabledOperationException, __BaseException>);
769
+ }
770
+
771
+ export interface DescribeDomainEndpointOptionsRequest {
772
+
773
+ DomainName: string | undefined;
774
+
775
+ Deployed?: boolean;
776
+ }
777
+ export declare namespace DescribeDomainEndpointOptionsRequest {
778
+
779
+ const filterSensitiveLog: (obj: DescribeDomainEndpointOptionsRequest) => any;
780
+ }
781
+ export declare enum TLSSecurityPolicy {
782
+ POLICY_MIN_TLS_1_0_2019_07 = "Policy-Min-TLS-1-0-2019-07",
783
+ POLICY_MIN_TLS_1_2_2019_07 = "Policy-Min-TLS-1-2-2019-07"
784
+ }
785
+
786
+ export interface DomainEndpointOptions {
787
+
788
+ EnforceHTTPS?: boolean;
789
+
790
+ TLSSecurityPolicy?: TLSSecurityPolicy | string;
791
+ }
792
+ export declare namespace DomainEndpointOptions {
793
+
794
+ const filterSensitiveLog: (obj: DomainEndpointOptions) => any;
795
+ }
796
+
797
+ export interface DomainEndpointOptionsStatus {
798
+
799
+ Options: DomainEndpointOptions | undefined;
800
+
801
+ Status: OptionStatus | undefined;
802
+ }
803
+ export declare namespace DomainEndpointOptionsStatus {
804
+
805
+ const filterSensitiveLog: (obj: DomainEndpointOptionsStatus) => any;
806
+ }
807
+
808
+ export interface DescribeDomainEndpointOptionsResponse {
809
+
810
+ DomainEndpointOptions?: DomainEndpointOptionsStatus;
811
+ }
812
+ export declare namespace DescribeDomainEndpointOptionsResponse {
813
+
814
+ const filterSensitiveLog: (obj: DescribeDomainEndpointOptionsResponse) => any;
815
+ }
816
+
817
+ export interface DescribeDomainsRequest {
818
+
819
+ DomainNames?: string[];
820
+ }
821
+ export declare namespace DescribeDomainsRequest {
822
+
823
+ const filterSensitiveLog: (obj: DescribeDomainsRequest) => any;
824
+ }
825
+
826
+ export interface DescribeDomainsResponse {
827
+
828
+ DomainStatusList: DomainStatus[] | undefined;
829
+ }
830
+ export declare namespace DescribeDomainsResponse {
831
+
832
+ const filterSensitiveLog: (obj: DescribeDomainsResponse) => any;
833
+ }
834
+
835
+ export interface DescribeExpressionsRequest {
836
+
837
+ DomainName: string | undefined;
838
+
839
+ ExpressionNames?: string[];
840
+
841
+ Deployed?: boolean;
842
+ }
843
+ export declare namespace DescribeExpressionsRequest {
844
+
845
+ const filterSensitiveLog: (obj: DescribeExpressionsRequest) => any;
846
+ }
847
+
848
+ export interface DescribeExpressionsResponse {
849
+
850
+ Expressions: ExpressionStatus[] | undefined;
851
+ }
852
+ export declare namespace DescribeExpressionsResponse {
853
+
854
+ const filterSensitiveLog: (obj: DescribeExpressionsResponse) => any;
855
+ }
856
+
857
+ export interface DescribeIndexFieldsRequest {
858
+
859
+ DomainName: string | undefined;
860
+
861
+ FieldNames?: string[];
862
+
863
+ Deployed?: boolean;
864
+ }
865
+ export declare namespace DescribeIndexFieldsRequest {
866
+
867
+ const filterSensitiveLog: (obj: DescribeIndexFieldsRequest) => any;
868
+ }
869
+
870
+ export interface DescribeIndexFieldsResponse {
871
+
872
+ IndexFields: IndexFieldStatus[] | undefined;
873
+ }
874
+ export declare namespace DescribeIndexFieldsResponse {
875
+
876
+ const filterSensitiveLog: (obj: DescribeIndexFieldsResponse) => any;
877
+ }
878
+
879
+ export interface DescribeScalingParametersRequest {
880
+
881
+ DomainName: string | undefined;
882
+ }
883
+ export declare namespace DescribeScalingParametersRequest {
884
+
885
+ const filterSensitiveLog: (obj: DescribeScalingParametersRequest) => any;
886
+ }
887
+ export declare type PartitionInstanceType = "search.2xlarge" | "search.large" | "search.m1.large" | "search.m1.small" | "search.m2.2xlarge" | "search.m2.xlarge" | "search.m3.2xlarge" | "search.m3.large" | "search.m3.medium" | "search.m3.xlarge" | "search.medium" | "search.previousgeneration.2xlarge" | "search.previousgeneration.large" | "search.previousgeneration.small" | "search.previousgeneration.xlarge" | "search.small" | "search.xlarge";
888
+
889
+ export interface ScalingParameters {
890
+
891
+ DesiredInstanceType?: PartitionInstanceType | string;
892
+
893
+ DesiredReplicationCount?: number;
894
+
895
+ DesiredPartitionCount?: number;
896
+ }
897
+ export declare namespace ScalingParameters {
898
+
899
+ const filterSensitiveLog: (obj: ScalingParameters) => any;
900
+ }
901
+
902
+ export interface ScalingParametersStatus {
903
+
904
+ Options: ScalingParameters | undefined;
905
+
906
+ Status: OptionStatus | undefined;
907
+ }
908
+ export declare namespace ScalingParametersStatus {
909
+
910
+ const filterSensitiveLog: (obj: ScalingParametersStatus) => any;
911
+ }
912
+
913
+ export interface DescribeScalingParametersResponse {
914
+
915
+ ScalingParameters: ScalingParametersStatus | undefined;
916
+ }
917
+ export declare namespace DescribeScalingParametersResponse {
918
+
919
+ const filterSensitiveLog: (obj: DescribeScalingParametersResponse) => any;
920
+ }
921
+
922
+ export interface DescribeServiceAccessPoliciesRequest {
923
+
924
+ DomainName: string | undefined;
925
+
926
+ Deployed?: boolean;
927
+ }
928
+ export declare namespace DescribeServiceAccessPoliciesRequest {
929
+
930
+ const filterSensitiveLog: (obj: DescribeServiceAccessPoliciesRequest) => any;
931
+ }
932
+
933
+ export interface AccessPoliciesStatus {
934
+
935
+ Options: string | undefined;
936
+
937
+ Status: OptionStatus | undefined;
938
+ }
939
+ export declare namespace AccessPoliciesStatus {
940
+
941
+ const filterSensitiveLog: (obj: AccessPoliciesStatus) => any;
942
+ }
943
+
944
+ export interface DescribeServiceAccessPoliciesResponse {
945
+
946
+ AccessPolicies: AccessPoliciesStatus | undefined;
947
+ }
948
+ export declare namespace DescribeServiceAccessPoliciesResponse {
949
+
950
+ const filterSensitiveLog: (obj: DescribeServiceAccessPoliciesResponse) => any;
951
+ }
952
+
953
+ export interface DescribeSuggestersRequest {
954
+
955
+ DomainName: string | undefined;
956
+
957
+ SuggesterNames?: string[];
958
+
959
+ Deployed?: boolean;
960
+ }
961
+ export declare namespace DescribeSuggestersRequest {
962
+
963
+ const filterSensitiveLog: (obj: DescribeSuggestersRequest) => any;
964
+ }
965
+
966
+ export interface DescribeSuggestersResponse {
967
+
968
+ Suggesters: SuggesterStatus[] | undefined;
969
+ }
970
+ export declare namespace DescribeSuggestersResponse {
971
+
972
+ const filterSensitiveLog: (obj: DescribeSuggestersResponse) => any;
973
+ }
974
+
975
+ export interface IndexDocumentsRequest {
976
+
977
+ DomainName: string | undefined;
978
+ }
979
+ export declare namespace IndexDocumentsRequest {
980
+
981
+ const filterSensitiveLog: (obj: IndexDocumentsRequest) => any;
982
+ }
983
+
984
+ export interface IndexDocumentsResponse {
985
+
986
+ FieldNames?: string[];
987
+ }
988
+ export declare namespace IndexDocumentsResponse {
989
+
990
+ const filterSensitiveLog: (obj: IndexDocumentsResponse) => any;
991
+ }
992
+
993
+ export interface ListDomainNamesResponse {
994
+
995
+ DomainNames?: {
996
+ [key: string]: string;
997
+ };
998
+ }
999
+ export declare namespace ListDomainNamesResponse {
1000
+
1001
+ const filterSensitiveLog: (obj: ListDomainNamesResponse) => any;
1002
+ }
1003
+
1004
+ export interface UpdateAvailabilityOptionsRequest {
1005
+
1006
+ DomainName: string | undefined;
1007
+
1008
+ MultiAZ: boolean | undefined;
1009
+ }
1010
+ export declare namespace UpdateAvailabilityOptionsRequest {
1011
+
1012
+ const filterSensitiveLog: (obj: UpdateAvailabilityOptionsRequest) => any;
1013
+ }
1014
+
1015
+ export interface UpdateAvailabilityOptionsResponse {
1016
+
1017
+ AvailabilityOptions?: AvailabilityOptionsStatus;
1018
+ }
1019
+ export declare namespace UpdateAvailabilityOptionsResponse {
1020
+
1021
+ const filterSensitiveLog: (obj: UpdateAvailabilityOptionsResponse) => any;
1022
+ }
1023
+
1024
+ export interface UpdateDomainEndpointOptionsRequest {
1025
+
1026
+ DomainName: string | undefined;
1027
+
1028
+ DomainEndpointOptions: DomainEndpointOptions | undefined;
1029
+ }
1030
+ export declare namespace UpdateDomainEndpointOptionsRequest {
1031
+
1032
+ const filterSensitiveLog: (obj: UpdateDomainEndpointOptionsRequest) => any;
1033
+ }
1034
+
1035
+ export interface UpdateDomainEndpointOptionsResponse {
1036
+
1037
+ DomainEndpointOptions?: DomainEndpointOptionsStatus;
1038
+ }
1039
+ export declare namespace UpdateDomainEndpointOptionsResponse {
1040
+
1041
+ const filterSensitiveLog: (obj: UpdateDomainEndpointOptionsResponse) => any;
1042
+ }
1043
+
1044
+ export interface UpdateScalingParametersRequest {
1045
+
1046
+ DomainName: string | undefined;
1047
+
1048
+ ScalingParameters: ScalingParameters | undefined;
1049
+ }
1050
+ export declare namespace UpdateScalingParametersRequest {
1051
+
1052
+ const filterSensitiveLog: (obj: UpdateScalingParametersRequest) => any;
1053
+ }
1054
+
1055
+ export interface UpdateScalingParametersResponse {
1056
+
1057
+ ScalingParameters: ScalingParametersStatus | undefined;
1058
+ }
1059
+ export declare namespace UpdateScalingParametersResponse {
1060
+
1061
+ const filterSensitiveLog: (obj: UpdateScalingParametersResponse) => any;
1062
+ }
1063
+
1064
+ export interface UpdateServiceAccessPoliciesRequest {
1065
+
1066
+ DomainName: string | undefined;
1067
+
1068
+ AccessPolicies: string | undefined;
1069
+ }
1070
+ export declare namespace UpdateServiceAccessPoliciesRequest {
1071
+
1072
+ const filterSensitiveLog: (obj: UpdateServiceAccessPoliciesRequest) => any;
1073
+ }
1074
+
1075
+ export interface UpdateServiceAccessPoliciesResponse {
1076
+
1077
+ AccessPolicies: AccessPoliciesStatus | undefined;
1078
+ }
1079
+ export declare namespace UpdateServiceAccessPoliciesResponse {
1080
+
1081
+ const filterSensitiveLog: (obj: UpdateServiceAccessPoliciesResponse) => any;
1082
+ }