@aws-sdk/client-cloudsearch 3.131.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/BuildSuggestersCommand.js +2 -2
- package/dist-cjs/commands/CreateDomainCommand.js +2 -2
- package/dist-cjs/commands/DefineAnalysisSchemeCommand.js +2 -2
- package/dist-cjs/commands/DefineExpressionCommand.js +2 -2
- package/dist-cjs/commands/DefineIndexFieldCommand.js +2 -2
- package/dist-cjs/commands/DefineSuggesterCommand.js +2 -2
- package/dist-cjs/commands/DeleteAnalysisSchemeCommand.js +2 -2
- package/dist-cjs/commands/DeleteDomainCommand.js +2 -2
- package/dist-cjs/commands/DeleteExpressionCommand.js +2 -2
- package/dist-cjs/commands/DeleteIndexFieldCommand.js +2 -2
- package/dist-cjs/commands/DeleteSuggesterCommand.js +2 -2
- package/dist-cjs/commands/DescribeAnalysisSchemesCommand.js +2 -2
- package/dist-cjs/commands/DescribeAvailabilityOptionsCommand.js +2 -2
- package/dist-cjs/commands/DescribeDomainEndpointOptionsCommand.js +2 -2
- package/dist-cjs/commands/DescribeDomainsCommand.js +2 -2
- package/dist-cjs/commands/DescribeExpressionsCommand.js +2 -2
- package/dist-cjs/commands/DescribeIndexFieldsCommand.js +2 -2
- package/dist-cjs/commands/DescribeScalingParametersCommand.js +2 -2
- package/dist-cjs/commands/DescribeServiceAccessPoliciesCommand.js +2 -2
- package/dist-cjs/commands/DescribeSuggestersCommand.js +2 -2
- package/dist-cjs/commands/IndexDocumentsCommand.js +2 -2
- package/dist-cjs/commands/ListDomainNamesCommand.js +1 -1
- package/dist-cjs/commands/UpdateAvailabilityOptionsCommand.js +2 -2
- package/dist-cjs/commands/UpdateDomainEndpointOptionsCommand.js +2 -2
- package/dist-cjs/commands/UpdateScalingParametersCommand.js +2 -2
- package/dist-cjs/commands/UpdateServiceAccessPoliciesCommand.js +2 -2
- package/dist-cjs/models/models_0.js +330 -494
- package/dist-cjs/protocols/Aws_query.js +272 -368
- package/dist-es/commands/BuildSuggestersCommand.js +3 -3
- package/dist-es/commands/CreateDomainCommand.js +3 -3
- package/dist-es/commands/DefineAnalysisSchemeCommand.js +3 -3
- package/dist-es/commands/DefineExpressionCommand.js +3 -3
- package/dist-es/commands/DefineIndexFieldCommand.js +3 -3
- package/dist-es/commands/DefineSuggesterCommand.js +3 -3
- package/dist-es/commands/DeleteAnalysisSchemeCommand.js +3 -3
- package/dist-es/commands/DeleteDomainCommand.js +3 -3
- package/dist-es/commands/DeleteExpressionCommand.js +3 -3
- package/dist-es/commands/DeleteIndexFieldCommand.js +3 -3
- package/dist-es/commands/DeleteSuggesterCommand.js +3 -3
- package/dist-es/commands/DescribeAnalysisSchemesCommand.js +3 -3
- package/dist-es/commands/DescribeAvailabilityOptionsCommand.js +3 -3
- package/dist-es/commands/DescribeDomainEndpointOptionsCommand.js +3 -3
- package/dist-es/commands/DescribeDomainsCommand.js +3 -3
- package/dist-es/commands/DescribeExpressionsCommand.js +3 -3
- package/dist-es/commands/DescribeIndexFieldsCommand.js +3 -3
- package/dist-es/commands/DescribeScalingParametersCommand.js +3 -3
- package/dist-es/commands/DescribeServiceAccessPoliciesCommand.js +3 -3
- package/dist-es/commands/DescribeSuggestersCommand.js +3 -3
- package/dist-es/commands/IndexDocumentsCommand.js +3 -3
- package/dist-es/commands/ListDomainNamesCommand.js +2 -2
- package/dist-es/commands/UpdateAvailabilityOptionsCommand.js +3 -3
- package/dist-es/commands/UpdateDomainEndpointOptionsCommand.js +3 -3
- package/dist-es/commands/UpdateScalingParametersCommand.js +3 -3
- package/dist-es/commands/UpdateServiceAccessPoliciesCommand.js +3 -3
- package/dist-es/models/models_0.js +82 -328
- package/dist-es/protocols/Aws_query.js +351 -369
- package/dist-types/models/models_0.d.ts +328 -492
- package/dist-types/ts3.4/models/models_0.d.ts +164 -328
- package/package.json +6 -6
|
@@ -16,19 +16,11 @@ export interface BuildSuggestersRequest {
|
|
|
16
16
|
|
|
17
17
|
DomainName: string | undefined;
|
|
18
18
|
}
|
|
19
|
-
export declare namespace BuildSuggestersRequest {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: BuildSuggestersRequest) => any;
|
|
22
|
-
}
|
|
23
19
|
|
|
24
20
|
export interface BuildSuggestersResponse {
|
|
25
21
|
|
|
26
22
|
FieldNames?: string[];
|
|
27
23
|
}
|
|
28
|
-
export declare namespace BuildSuggestersResponse {
|
|
29
|
-
|
|
30
|
-
const filterSensitiveLog: (obj: BuildSuggestersResponse) => any;
|
|
31
|
-
}
|
|
32
24
|
|
|
33
25
|
export declare class InternalException extends __BaseException {
|
|
34
26
|
readonly name: "InternalException";
|
|
@@ -67,27 +59,15 @@ export interface CreateDomainRequest {
|
|
|
67
59
|
|
|
68
60
|
DomainName: string | undefined;
|
|
69
61
|
}
|
|
70
|
-
export declare namespace CreateDomainRequest {
|
|
71
|
-
|
|
72
|
-
const filterSensitiveLog: (obj: CreateDomainRequest) => any;
|
|
73
|
-
}
|
|
74
62
|
|
|
75
63
|
export interface ServiceEndpoint {
|
|
76
64
|
|
|
77
65
|
Endpoint?: string;
|
|
78
66
|
}
|
|
79
|
-
export declare namespace ServiceEndpoint {
|
|
80
|
-
|
|
81
|
-
const filterSensitiveLog: (obj: ServiceEndpoint) => any;
|
|
82
|
-
}
|
|
83
67
|
export interface Limits {
|
|
84
68
|
MaximumReplicationCount: number | undefined;
|
|
85
69
|
MaximumPartitionCount: number | undefined;
|
|
86
70
|
}
|
|
87
|
-
export declare namespace Limits {
|
|
88
|
-
|
|
89
|
-
const filterSensitiveLog: (obj: Limits) => any;
|
|
90
|
-
}
|
|
91
71
|
|
|
92
72
|
export interface DomainStatus {
|
|
93
73
|
|
|
@@ -116,19 +96,11 @@ export interface DomainStatus {
|
|
|
116
96
|
SearchInstanceCount?: number;
|
|
117
97
|
Limits?: Limits;
|
|
118
98
|
}
|
|
119
|
-
export declare namespace DomainStatus {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: DomainStatus) => any;
|
|
122
|
-
}
|
|
123
99
|
|
|
124
100
|
export interface CreateDomainResponse {
|
|
125
101
|
|
|
126
102
|
DomainStatus?: DomainStatus;
|
|
127
103
|
}
|
|
128
|
-
export declare namespace CreateDomainResponse {
|
|
129
|
-
|
|
130
|
-
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
131
|
-
}
|
|
132
104
|
|
|
133
105
|
export declare class LimitExceededException extends __BaseException {
|
|
134
106
|
readonly name: "LimitExceededException";
|
|
@@ -165,10 +137,6 @@ export interface AnalysisOptions {
|
|
|
165
137
|
|
|
166
138
|
AlgorithmicStemming?: AlgorithmicStemming | string;
|
|
167
139
|
}
|
|
168
|
-
export declare namespace AnalysisOptions {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: AnalysisOptions) => any;
|
|
171
|
-
}
|
|
172
140
|
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
141
|
|
|
174
142
|
export interface AnalysisScheme {
|
|
@@ -179,10 +147,6 @@ export interface AnalysisScheme {
|
|
|
179
147
|
|
|
180
148
|
AnalysisOptions?: AnalysisOptions;
|
|
181
149
|
}
|
|
182
|
-
export declare namespace AnalysisScheme {
|
|
183
|
-
|
|
184
|
-
const filterSensitiveLog: (obj: AnalysisScheme) => any;
|
|
185
|
-
}
|
|
186
150
|
|
|
187
151
|
export interface DefineAnalysisSchemeRequest {
|
|
188
152
|
|
|
@@ -190,10 +154,6 @@ export interface DefineAnalysisSchemeRequest {
|
|
|
190
154
|
|
|
191
155
|
AnalysisScheme: AnalysisScheme | undefined;
|
|
192
156
|
}
|
|
193
|
-
export declare namespace DefineAnalysisSchemeRequest {
|
|
194
|
-
|
|
195
|
-
const filterSensitiveLog: (obj: DefineAnalysisSchemeRequest) => any;
|
|
196
|
-
}
|
|
197
157
|
export declare type OptionState = "Active" | "FailedToValidate" | "Processing" | "RequiresIndexDocuments";
|
|
198
158
|
|
|
199
159
|
export interface OptionStatus {
|
|
@@ -208,10 +168,6 @@ export interface OptionStatus {
|
|
|
208
168
|
|
|
209
169
|
PendingDeletion?: boolean;
|
|
210
170
|
}
|
|
211
|
-
export declare namespace OptionStatus {
|
|
212
|
-
|
|
213
|
-
const filterSensitiveLog: (obj: OptionStatus) => any;
|
|
214
|
-
}
|
|
215
171
|
|
|
216
172
|
export interface AnalysisSchemeStatus {
|
|
217
173
|
|
|
@@ -219,19 +175,11 @@ export interface AnalysisSchemeStatus {
|
|
|
219
175
|
|
|
220
176
|
Status: OptionStatus | undefined;
|
|
221
177
|
}
|
|
222
|
-
export declare namespace AnalysisSchemeStatus {
|
|
223
|
-
|
|
224
|
-
const filterSensitiveLog: (obj: AnalysisSchemeStatus) => any;
|
|
225
|
-
}
|
|
226
178
|
|
|
227
179
|
export interface DefineAnalysisSchemeResponse {
|
|
228
180
|
|
|
229
181
|
AnalysisScheme: AnalysisSchemeStatus | undefined;
|
|
230
182
|
}
|
|
231
|
-
export declare namespace DefineAnalysisSchemeResponse {
|
|
232
|
-
|
|
233
|
-
const filterSensitiveLog: (obj: DefineAnalysisSchemeResponse) => any;
|
|
234
|
-
}
|
|
235
183
|
|
|
236
184
|
export declare class InvalidTypeException extends __BaseException {
|
|
237
185
|
readonly name: "InvalidTypeException";
|
|
@@ -250,10 +198,6 @@ export interface Expression {
|
|
|
250
198
|
|
|
251
199
|
ExpressionValue: string | undefined;
|
|
252
200
|
}
|
|
253
|
-
export declare namespace Expression {
|
|
254
|
-
|
|
255
|
-
const filterSensitiveLog: (obj: Expression) => any;
|
|
256
|
-
}
|
|
257
201
|
|
|
258
202
|
export interface DefineExpressionRequest {
|
|
259
203
|
|
|
@@ -261,10 +205,6 @@ export interface DefineExpressionRequest {
|
|
|
261
205
|
|
|
262
206
|
Expression: Expression | undefined;
|
|
263
207
|
}
|
|
264
|
-
export declare namespace DefineExpressionRequest {
|
|
265
|
-
|
|
266
|
-
const filterSensitiveLog: (obj: DefineExpressionRequest) => any;
|
|
267
|
-
}
|
|
268
208
|
|
|
269
209
|
export interface ExpressionStatus {
|
|
270
210
|
|
|
@@ -272,19 +212,11 @@ export interface ExpressionStatus {
|
|
|
272
212
|
|
|
273
213
|
Status: OptionStatus | undefined;
|
|
274
214
|
}
|
|
275
|
-
export declare namespace ExpressionStatus {
|
|
276
|
-
|
|
277
|
-
const filterSensitiveLog: (obj: ExpressionStatus) => any;
|
|
278
|
-
}
|
|
279
215
|
|
|
280
216
|
export interface DefineExpressionResponse {
|
|
281
217
|
|
|
282
218
|
Expression: ExpressionStatus | undefined;
|
|
283
219
|
}
|
|
284
|
-
export declare namespace DefineExpressionResponse {
|
|
285
|
-
|
|
286
|
-
const filterSensitiveLog: (obj: DefineExpressionResponse) => any;
|
|
287
|
-
}
|
|
288
220
|
|
|
289
221
|
export interface DateArrayOptions {
|
|
290
222
|
|
|
@@ -298,10 +230,6 @@ export interface DateArrayOptions {
|
|
|
298
230
|
|
|
299
231
|
ReturnEnabled?: boolean;
|
|
300
232
|
}
|
|
301
|
-
export declare namespace DateArrayOptions {
|
|
302
|
-
|
|
303
|
-
const filterSensitiveLog: (obj: DateArrayOptions) => any;
|
|
304
|
-
}
|
|
305
233
|
|
|
306
234
|
export interface DateOptions {
|
|
307
235
|
|
|
@@ -317,10 +245,6 @@ export interface DateOptions {
|
|
|
317
245
|
|
|
318
246
|
SortEnabled?: boolean;
|
|
319
247
|
}
|
|
320
|
-
export declare namespace DateOptions {
|
|
321
|
-
|
|
322
|
-
const filterSensitiveLog: (obj: DateOptions) => any;
|
|
323
|
-
}
|
|
324
248
|
|
|
325
249
|
export interface DoubleArrayOptions {
|
|
326
250
|
|
|
@@ -334,10 +258,6 @@ export interface DoubleArrayOptions {
|
|
|
334
258
|
|
|
335
259
|
ReturnEnabled?: boolean;
|
|
336
260
|
}
|
|
337
|
-
export declare namespace DoubleArrayOptions {
|
|
338
|
-
|
|
339
|
-
const filterSensitiveLog: (obj: DoubleArrayOptions) => any;
|
|
340
|
-
}
|
|
341
261
|
|
|
342
262
|
export interface DoubleOptions {
|
|
343
263
|
|
|
@@ -353,10 +273,6 @@ export interface DoubleOptions {
|
|
|
353
273
|
|
|
354
274
|
SortEnabled?: boolean;
|
|
355
275
|
}
|
|
356
|
-
export declare namespace DoubleOptions {
|
|
357
|
-
|
|
358
|
-
const filterSensitiveLog: (obj: DoubleOptions) => any;
|
|
359
|
-
}
|
|
360
276
|
export declare type IndexFieldType = "date" | "date-array" | "double" | "double-array" | "int" | "int-array" | "latlon" | "literal" | "literal-array" | "text" | "text-array";
|
|
361
277
|
|
|
362
278
|
export interface IntArrayOptions {
|
|
@@ -371,10 +287,6 @@ export interface IntArrayOptions {
|
|
|
371
287
|
|
|
372
288
|
ReturnEnabled?: boolean;
|
|
373
289
|
}
|
|
374
|
-
export declare namespace IntArrayOptions {
|
|
375
|
-
|
|
376
|
-
const filterSensitiveLog: (obj: IntArrayOptions) => any;
|
|
377
|
-
}
|
|
378
290
|
|
|
379
291
|
export interface IntOptions {
|
|
380
292
|
|
|
@@ -390,10 +302,6 @@ export interface IntOptions {
|
|
|
390
302
|
|
|
391
303
|
SortEnabled?: boolean;
|
|
392
304
|
}
|
|
393
|
-
export declare namespace IntOptions {
|
|
394
|
-
|
|
395
|
-
const filterSensitiveLog: (obj: IntOptions) => any;
|
|
396
|
-
}
|
|
397
305
|
|
|
398
306
|
export interface LatLonOptions {
|
|
399
307
|
|
|
@@ -409,10 +317,6 @@ export interface LatLonOptions {
|
|
|
409
317
|
|
|
410
318
|
SortEnabled?: boolean;
|
|
411
319
|
}
|
|
412
|
-
export declare namespace LatLonOptions {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: LatLonOptions) => any;
|
|
415
|
-
}
|
|
416
320
|
|
|
417
321
|
export interface LiteralArrayOptions {
|
|
418
322
|
|
|
@@ -426,10 +330,6 @@ export interface LiteralArrayOptions {
|
|
|
426
330
|
|
|
427
331
|
ReturnEnabled?: boolean;
|
|
428
332
|
}
|
|
429
|
-
export declare namespace LiteralArrayOptions {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: LiteralArrayOptions) => any;
|
|
432
|
-
}
|
|
433
333
|
|
|
434
334
|
export interface LiteralOptions {
|
|
435
335
|
|
|
@@ -445,10 +345,6 @@ export interface LiteralOptions {
|
|
|
445
345
|
|
|
446
346
|
SortEnabled?: boolean;
|
|
447
347
|
}
|
|
448
|
-
export declare namespace LiteralOptions {
|
|
449
|
-
|
|
450
|
-
const filterSensitiveLog: (obj: LiteralOptions) => any;
|
|
451
|
-
}
|
|
452
348
|
|
|
453
349
|
export interface TextArrayOptions {
|
|
454
350
|
|
|
@@ -462,10 +358,6 @@ export interface TextArrayOptions {
|
|
|
462
358
|
|
|
463
359
|
AnalysisScheme?: string;
|
|
464
360
|
}
|
|
465
|
-
export declare namespace TextArrayOptions {
|
|
466
|
-
|
|
467
|
-
const filterSensitiveLog: (obj: TextArrayOptions) => any;
|
|
468
|
-
}
|
|
469
361
|
|
|
470
362
|
export interface TextOptions {
|
|
471
363
|
|
|
@@ -481,10 +373,6 @@ export interface TextOptions {
|
|
|
481
373
|
|
|
482
374
|
AnalysisScheme?: string;
|
|
483
375
|
}
|
|
484
|
-
export declare namespace TextOptions {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: TextOptions) => any;
|
|
487
|
-
}
|
|
488
376
|
|
|
489
377
|
export interface IndexField {
|
|
490
378
|
|
|
@@ -514,10 +402,6 @@ export interface IndexField {
|
|
|
514
402
|
|
|
515
403
|
DateArrayOptions?: DateArrayOptions;
|
|
516
404
|
}
|
|
517
|
-
export declare namespace IndexField {
|
|
518
|
-
|
|
519
|
-
const filterSensitiveLog: (obj: IndexField) => any;
|
|
520
|
-
}
|
|
521
405
|
|
|
522
406
|
export interface DefineIndexFieldRequest {
|
|
523
407
|
|
|
@@ -525,10 +409,6 @@ export interface DefineIndexFieldRequest {
|
|
|
525
409
|
|
|
526
410
|
IndexField: IndexField | undefined;
|
|
527
411
|
}
|
|
528
|
-
export declare namespace DefineIndexFieldRequest {
|
|
529
|
-
|
|
530
|
-
const filterSensitiveLog: (obj: DefineIndexFieldRequest) => any;
|
|
531
|
-
}
|
|
532
412
|
|
|
533
413
|
export interface IndexFieldStatus {
|
|
534
414
|
|
|
@@ -536,19 +416,11 @@ export interface IndexFieldStatus {
|
|
|
536
416
|
|
|
537
417
|
Status: OptionStatus | undefined;
|
|
538
418
|
}
|
|
539
|
-
export declare namespace IndexFieldStatus {
|
|
540
|
-
|
|
541
|
-
const filterSensitiveLog: (obj: IndexFieldStatus) => any;
|
|
542
|
-
}
|
|
543
419
|
|
|
544
420
|
export interface DefineIndexFieldResponse {
|
|
545
421
|
|
|
546
422
|
IndexField: IndexFieldStatus | undefined;
|
|
547
423
|
}
|
|
548
|
-
export declare namespace DefineIndexFieldResponse {
|
|
549
|
-
|
|
550
|
-
const filterSensitiveLog: (obj: DefineIndexFieldResponse) => any;
|
|
551
|
-
}
|
|
552
424
|
export declare type SuggesterFuzzyMatching = "high" | "low" | "none";
|
|
553
425
|
|
|
554
426
|
export interface DocumentSuggesterOptions {
|
|
@@ -559,10 +431,6 @@ export interface DocumentSuggesterOptions {
|
|
|
559
431
|
|
|
560
432
|
SortExpression?: string;
|
|
561
433
|
}
|
|
562
|
-
export declare namespace DocumentSuggesterOptions {
|
|
563
|
-
|
|
564
|
-
const filterSensitiveLog: (obj: DocumentSuggesterOptions) => any;
|
|
565
|
-
}
|
|
566
434
|
|
|
567
435
|
export interface Suggester {
|
|
568
436
|
|
|
@@ -570,10 +438,6 @@ export interface Suggester {
|
|
|
570
438
|
|
|
571
439
|
DocumentSuggesterOptions: DocumentSuggesterOptions | undefined;
|
|
572
440
|
}
|
|
573
|
-
export declare namespace Suggester {
|
|
574
|
-
|
|
575
|
-
const filterSensitiveLog: (obj: Suggester) => any;
|
|
576
|
-
}
|
|
577
441
|
|
|
578
442
|
export interface DefineSuggesterRequest {
|
|
579
443
|
|
|
@@ -581,10 +445,6 @@ export interface DefineSuggesterRequest {
|
|
|
581
445
|
|
|
582
446
|
Suggester: Suggester | undefined;
|
|
583
447
|
}
|
|
584
|
-
export declare namespace DefineSuggesterRequest {
|
|
585
|
-
|
|
586
|
-
const filterSensitiveLog: (obj: DefineSuggesterRequest) => any;
|
|
587
|
-
}
|
|
588
448
|
|
|
589
449
|
export interface SuggesterStatus {
|
|
590
450
|
|
|
@@ -592,19 +452,11 @@ export interface SuggesterStatus {
|
|
|
592
452
|
|
|
593
453
|
Status: OptionStatus | undefined;
|
|
594
454
|
}
|
|
595
|
-
export declare namespace SuggesterStatus {
|
|
596
|
-
|
|
597
|
-
const filterSensitiveLog: (obj: SuggesterStatus) => any;
|
|
598
|
-
}
|
|
599
455
|
|
|
600
456
|
export interface DefineSuggesterResponse {
|
|
601
457
|
|
|
602
458
|
Suggester: SuggesterStatus | undefined;
|
|
603
459
|
}
|
|
604
|
-
export declare namespace DefineSuggesterResponse {
|
|
605
|
-
|
|
606
|
-
const filterSensitiveLog: (obj: DefineSuggesterResponse) => any;
|
|
607
|
-
}
|
|
608
460
|
|
|
609
461
|
export interface DeleteAnalysisSchemeRequest {
|
|
610
462
|
|
|
@@ -612,37 +464,21 @@ export interface DeleteAnalysisSchemeRequest {
|
|
|
612
464
|
|
|
613
465
|
AnalysisSchemeName: string | undefined;
|
|
614
466
|
}
|
|
615
|
-
export declare namespace DeleteAnalysisSchemeRequest {
|
|
616
|
-
|
|
617
|
-
const filterSensitiveLog: (obj: DeleteAnalysisSchemeRequest) => any;
|
|
618
|
-
}
|
|
619
467
|
|
|
620
468
|
export interface DeleteAnalysisSchemeResponse {
|
|
621
469
|
|
|
622
470
|
AnalysisScheme: AnalysisSchemeStatus | undefined;
|
|
623
471
|
}
|
|
624
|
-
export declare namespace DeleteAnalysisSchemeResponse {
|
|
625
|
-
|
|
626
|
-
const filterSensitiveLog: (obj: DeleteAnalysisSchemeResponse) => any;
|
|
627
|
-
}
|
|
628
472
|
|
|
629
473
|
export interface DeleteDomainRequest {
|
|
630
474
|
|
|
631
475
|
DomainName: string | undefined;
|
|
632
476
|
}
|
|
633
|
-
export declare namespace DeleteDomainRequest {
|
|
634
|
-
|
|
635
|
-
const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
636
|
-
}
|
|
637
477
|
|
|
638
478
|
export interface DeleteDomainResponse {
|
|
639
479
|
|
|
640
480
|
DomainStatus?: DomainStatus;
|
|
641
481
|
}
|
|
642
|
-
export declare namespace DeleteDomainResponse {
|
|
643
|
-
|
|
644
|
-
const filterSensitiveLog: (obj: DeleteDomainResponse) => any;
|
|
645
|
-
}
|
|
646
482
|
|
|
647
483
|
export interface DeleteExpressionRequest {
|
|
648
484
|
|
|
@@ -650,19 +486,11 @@ export interface DeleteExpressionRequest {
|
|
|
650
486
|
|
|
651
487
|
ExpressionName: string | undefined;
|
|
652
488
|
}
|
|
653
|
-
export declare namespace DeleteExpressionRequest {
|
|
654
|
-
|
|
655
|
-
const filterSensitiveLog: (obj: DeleteExpressionRequest) => any;
|
|
656
|
-
}
|
|
657
489
|
|
|
658
490
|
export interface DeleteExpressionResponse {
|
|
659
491
|
|
|
660
492
|
Expression: ExpressionStatus | undefined;
|
|
661
493
|
}
|
|
662
|
-
export declare namespace DeleteExpressionResponse {
|
|
663
|
-
|
|
664
|
-
const filterSensitiveLog: (obj: DeleteExpressionResponse) => any;
|
|
665
|
-
}
|
|
666
494
|
|
|
667
495
|
export interface DeleteIndexFieldRequest {
|
|
668
496
|
|
|
@@ -670,19 +498,11 @@ export interface DeleteIndexFieldRequest {
|
|
|
670
498
|
|
|
671
499
|
IndexFieldName: string | undefined;
|
|
672
500
|
}
|
|
673
|
-
export declare namespace DeleteIndexFieldRequest {
|
|
674
|
-
|
|
675
|
-
const filterSensitiveLog: (obj: DeleteIndexFieldRequest) => any;
|
|
676
|
-
}
|
|
677
501
|
|
|
678
502
|
export interface DeleteIndexFieldResponse {
|
|
679
503
|
|
|
680
504
|
IndexField: IndexFieldStatus | undefined;
|
|
681
505
|
}
|
|
682
|
-
export declare namespace DeleteIndexFieldResponse {
|
|
683
|
-
|
|
684
|
-
const filterSensitiveLog: (obj: DeleteIndexFieldResponse) => any;
|
|
685
|
-
}
|
|
686
506
|
|
|
687
507
|
export interface DeleteSuggesterRequest {
|
|
688
508
|
|
|
@@ -690,19 +510,11 @@ export interface DeleteSuggesterRequest {
|
|
|
690
510
|
|
|
691
511
|
SuggesterName: string | undefined;
|
|
692
512
|
}
|
|
693
|
-
export declare namespace DeleteSuggesterRequest {
|
|
694
|
-
|
|
695
|
-
const filterSensitiveLog: (obj: DeleteSuggesterRequest) => any;
|
|
696
|
-
}
|
|
697
513
|
|
|
698
514
|
export interface DeleteSuggesterResponse {
|
|
699
515
|
|
|
700
516
|
Suggester: SuggesterStatus | undefined;
|
|
701
517
|
}
|
|
702
|
-
export declare namespace DeleteSuggesterResponse {
|
|
703
|
-
|
|
704
|
-
const filterSensitiveLog: (obj: DeleteSuggesterResponse) => any;
|
|
705
|
-
}
|
|
706
518
|
|
|
707
519
|
export interface DescribeAnalysisSchemesRequest {
|
|
708
520
|
|
|
@@ -712,19 +524,11 @@ export interface DescribeAnalysisSchemesRequest {
|
|
|
712
524
|
|
|
713
525
|
Deployed?: boolean;
|
|
714
526
|
}
|
|
715
|
-
export declare namespace DescribeAnalysisSchemesRequest {
|
|
716
|
-
|
|
717
|
-
const filterSensitiveLog: (obj: DescribeAnalysisSchemesRequest) => any;
|
|
718
|
-
}
|
|
719
527
|
|
|
720
528
|
export interface DescribeAnalysisSchemesResponse {
|
|
721
529
|
|
|
722
530
|
AnalysisSchemes: AnalysisSchemeStatus[] | undefined;
|
|
723
531
|
}
|
|
724
|
-
export declare namespace DescribeAnalysisSchemesResponse {
|
|
725
|
-
|
|
726
|
-
const filterSensitiveLog: (obj: DescribeAnalysisSchemesResponse) => any;
|
|
727
|
-
}
|
|
728
532
|
|
|
729
533
|
export interface DescribeAvailabilityOptionsRequest {
|
|
730
534
|
|
|
@@ -732,10 +536,6 @@ export interface DescribeAvailabilityOptionsRequest {
|
|
|
732
536
|
|
|
733
537
|
Deployed?: boolean;
|
|
734
538
|
}
|
|
735
|
-
export declare namespace DescribeAvailabilityOptionsRequest {
|
|
736
|
-
|
|
737
|
-
const filterSensitiveLog: (obj: DescribeAvailabilityOptionsRequest) => any;
|
|
738
|
-
}
|
|
739
539
|
|
|
740
540
|
export interface AvailabilityOptionsStatus {
|
|
741
541
|
|
|
@@ -743,19 +543,11 @@ export interface AvailabilityOptionsStatus {
|
|
|
743
543
|
|
|
744
544
|
Status: OptionStatus | undefined;
|
|
745
545
|
}
|
|
746
|
-
export declare namespace AvailabilityOptionsStatus {
|
|
747
|
-
|
|
748
|
-
const filterSensitiveLog: (obj: AvailabilityOptionsStatus) => any;
|
|
749
|
-
}
|
|
750
546
|
|
|
751
547
|
export interface DescribeAvailabilityOptionsResponse {
|
|
752
548
|
|
|
753
549
|
AvailabilityOptions?: AvailabilityOptionsStatus;
|
|
754
550
|
}
|
|
755
|
-
export declare namespace DescribeAvailabilityOptionsResponse {
|
|
756
|
-
|
|
757
|
-
const filterSensitiveLog: (obj: DescribeAvailabilityOptionsResponse) => any;
|
|
758
|
-
}
|
|
759
551
|
|
|
760
552
|
export declare class DisabledOperationException extends __BaseException {
|
|
761
553
|
readonly name: "DisabledOperationException";
|
|
@@ -774,10 +566,6 @@ export interface DescribeDomainEndpointOptionsRequest {
|
|
|
774
566
|
|
|
775
567
|
Deployed?: boolean;
|
|
776
568
|
}
|
|
777
|
-
export declare namespace DescribeDomainEndpointOptionsRequest {
|
|
778
|
-
|
|
779
|
-
const filterSensitiveLog: (obj: DescribeDomainEndpointOptionsRequest) => any;
|
|
780
|
-
}
|
|
781
569
|
export declare enum TLSSecurityPolicy {
|
|
782
570
|
POLICY_MIN_TLS_1_0_2019_07 = "Policy-Min-TLS-1-0-2019-07",
|
|
783
571
|
POLICY_MIN_TLS_1_2_2019_07 = "Policy-Min-TLS-1-2-2019-07"
|
|
@@ -789,10 +577,6 @@ export interface DomainEndpointOptions {
|
|
|
789
577
|
|
|
790
578
|
TLSSecurityPolicy?: TLSSecurityPolicy | string;
|
|
791
579
|
}
|
|
792
|
-
export declare namespace DomainEndpointOptions {
|
|
793
|
-
|
|
794
|
-
const filterSensitiveLog: (obj: DomainEndpointOptions) => any;
|
|
795
|
-
}
|
|
796
580
|
|
|
797
581
|
export interface DomainEndpointOptionsStatus {
|
|
798
582
|
|
|
@@ -800,37 +584,21 @@ export interface DomainEndpointOptionsStatus {
|
|
|
800
584
|
|
|
801
585
|
Status: OptionStatus | undefined;
|
|
802
586
|
}
|
|
803
|
-
export declare namespace DomainEndpointOptionsStatus {
|
|
804
|
-
|
|
805
|
-
const filterSensitiveLog: (obj: DomainEndpointOptionsStatus) => any;
|
|
806
|
-
}
|
|
807
587
|
|
|
808
588
|
export interface DescribeDomainEndpointOptionsResponse {
|
|
809
589
|
|
|
810
590
|
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
811
591
|
}
|
|
812
|
-
export declare namespace DescribeDomainEndpointOptionsResponse {
|
|
813
|
-
|
|
814
|
-
const filterSensitiveLog: (obj: DescribeDomainEndpointOptionsResponse) => any;
|
|
815
|
-
}
|
|
816
592
|
|
|
817
593
|
export interface DescribeDomainsRequest {
|
|
818
594
|
|
|
819
595
|
DomainNames?: string[];
|
|
820
596
|
}
|
|
821
|
-
export declare namespace DescribeDomainsRequest {
|
|
822
|
-
|
|
823
|
-
const filterSensitiveLog: (obj: DescribeDomainsRequest) => any;
|
|
824
|
-
}
|
|
825
597
|
|
|
826
598
|
export interface DescribeDomainsResponse {
|
|
827
599
|
|
|
828
600
|
DomainStatusList: DomainStatus[] | undefined;
|
|
829
601
|
}
|
|
830
|
-
export declare namespace DescribeDomainsResponse {
|
|
831
|
-
|
|
832
|
-
const filterSensitiveLog: (obj: DescribeDomainsResponse) => any;
|
|
833
|
-
}
|
|
834
602
|
|
|
835
603
|
export interface DescribeExpressionsRequest {
|
|
836
604
|
|
|
@@ -840,19 +608,11 @@ export interface DescribeExpressionsRequest {
|
|
|
840
608
|
|
|
841
609
|
Deployed?: boolean;
|
|
842
610
|
}
|
|
843
|
-
export declare namespace DescribeExpressionsRequest {
|
|
844
|
-
|
|
845
|
-
const filterSensitiveLog: (obj: DescribeExpressionsRequest) => any;
|
|
846
|
-
}
|
|
847
611
|
|
|
848
612
|
export interface DescribeExpressionsResponse {
|
|
849
613
|
|
|
850
614
|
Expressions: ExpressionStatus[] | undefined;
|
|
851
615
|
}
|
|
852
|
-
export declare namespace DescribeExpressionsResponse {
|
|
853
|
-
|
|
854
|
-
const filterSensitiveLog: (obj: DescribeExpressionsResponse) => any;
|
|
855
|
-
}
|
|
856
616
|
|
|
857
617
|
export interface DescribeIndexFieldsRequest {
|
|
858
618
|
|
|
@@ -862,28 +622,16 @@ export interface DescribeIndexFieldsRequest {
|
|
|
862
622
|
|
|
863
623
|
Deployed?: boolean;
|
|
864
624
|
}
|
|
865
|
-
export declare namespace DescribeIndexFieldsRequest {
|
|
866
|
-
|
|
867
|
-
const filterSensitiveLog: (obj: DescribeIndexFieldsRequest) => any;
|
|
868
|
-
}
|
|
869
625
|
|
|
870
626
|
export interface DescribeIndexFieldsResponse {
|
|
871
627
|
|
|
872
628
|
IndexFields: IndexFieldStatus[] | undefined;
|
|
873
629
|
}
|
|
874
|
-
export declare namespace DescribeIndexFieldsResponse {
|
|
875
|
-
|
|
876
|
-
const filterSensitiveLog: (obj: DescribeIndexFieldsResponse) => any;
|
|
877
|
-
}
|
|
878
630
|
|
|
879
631
|
export interface DescribeScalingParametersRequest {
|
|
880
632
|
|
|
881
633
|
DomainName: string | undefined;
|
|
882
634
|
}
|
|
883
|
-
export declare namespace DescribeScalingParametersRequest {
|
|
884
|
-
|
|
885
|
-
const filterSensitiveLog: (obj: DescribeScalingParametersRequest) => any;
|
|
886
|
-
}
|
|
887
635
|
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
636
|
|
|
889
637
|
export interface ScalingParameters {
|
|
@@ -894,10 +642,6 @@ export interface ScalingParameters {
|
|
|
894
642
|
|
|
895
643
|
DesiredPartitionCount?: number;
|
|
896
644
|
}
|
|
897
|
-
export declare namespace ScalingParameters {
|
|
898
|
-
|
|
899
|
-
const filterSensitiveLog: (obj: ScalingParameters) => any;
|
|
900
|
-
}
|
|
901
645
|
|
|
902
646
|
export interface ScalingParametersStatus {
|
|
903
647
|
|
|
@@ -905,19 +649,11 @@ export interface ScalingParametersStatus {
|
|
|
905
649
|
|
|
906
650
|
Status: OptionStatus | undefined;
|
|
907
651
|
}
|
|
908
|
-
export declare namespace ScalingParametersStatus {
|
|
909
|
-
|
|
910
|
-
const filterSensitiveLog: (obj: ScalingParametersStatus) => any;
|
|
911
|
-
}
|
|
912
652
|
|
|
913
653
|
export interface DescribeScalingParametersResponse {
|
|
914
654
|
|
|
915
655
|
ScalingParameters: ScalingParametersStatus | undefined;
|
|
916
656
|
}
|
|
917
|
-
export declare namespace DescribeScalingParametersResponse {
|
|
918
|
-
|
|
919
|
-
const filterSensitiveLog: (obj: DescribeScalingParametersResponse) => any;
|
|
920
|
-
}
|
|
921
657
|
|
|
922
658
|
export interface DescribeServiceAccessPoliciesRequest {
|
|
923
659
|
|
|
@@ -925,10 +661,6 @@ export interface DescribeServiceAccessPoliciesRequest {
|
|
|
925
661
|
|
|
926
662
|
Deployed?: boolean;
|
|
927
663
|
}
|
|
928
|
-
export declare namespace DescribeServiceAccessPoliciesRequest {
|
|
929
|
-
|
|
930
|
-
const filterSensitiveLog: (obj: DescribeServiceAccessPoliciesRequest) => any;
|
|
931
|
-
}
|
|
932
664
|
|
|
933
665
|
export interface AccessPoliciesStatus {
|
|
934
666
|
|
|
@@ -936,19 +668,11 @@ export interface AccessPoliciesStatus {
|
|
|
936
668
|
|
|
937
669
|
Status: OptionStatus | undefined;
|
|
938
670
|
}
|
|
939
|
-
export declare namespace AccessPoliciesStatus {
|
|
940
|
-
|
|
941
|
-
const filterSensitiveLog: (obj: AccessPoliciesStatus) => any;
|
|
942
|
-
}
|
|
943
671
|
|
|
944
672
|
export interface DescribeServiceAccessPoliciesResponse {
|
|
945
673
|
|
|
946
674
|
AccessPolicies: AccessPoliciesStatus | undefined;
|
|
947
675
|
}
|
|
948
|
-
export declare namespace DescribeServiceAccessPoliciesResponse {
|
|
949
|
-
|
|
950
|
-
const filterSensitiveLog: (obj: DescribeServiceAccessPoliciesResponse) => any;
|
|
951
|
-
}
|
|
952
676
|
|
|
953
677
|
export interface DescribeSuggestersRequest {
|
|
954
678
|
|
|
@@ -958,46 +682,26 @@ export interface DescribeSuggestersRequest {
|
|
|
958
682
|
|
|
959
683
|
Deployed?: boolean;
|
|
960
684
|
}
|
|
961
|
-
export declare namespace DescribeSuggestersRequest {
|
|
962
|
-
|
|
963
|
-
const filterSensitiveLog: (obj: DescribeSuggestersRequest) => any;
|
|
964
|
-
}
|
|
965
685
|
|
|
966
686
|
export interface DescribeSuggestersResponse {
|
|
967
687
|
|
|
968
688
|
Suggesters: SuggesterStatus[] | undefined;
|
|
969
689
|
}
|
|
970
|
-
export declare namespace DescribeSuggestersResponse {
|
|
971
|
-
|
|
972
|
-
const filterSensitiveLog: (obj: DescribeSuggestersResponse) => any;
|
|
973
|
-
}
|
|
974
690
|
|
|
975
691
|
export interface IndexDocumentsRequest {
|
|
976
692
|
|
|
977
693
|
DomainName: string | undefined;
|
|
978
694
|
}
|
|
979
|
-
export declare namespace IndexDocumentsRequest {
|
|
980
|
-
|
|
981
|
-
const filterSensitiveLog: (obj: IndexDocumentsRequest) => any;
|
|
982
|
-
}
|
|
983
695
|
|
|
984
696
|
export interface IndexDocumentsResponse {
|
|
985
697
|
|
|
986
698
|
FieldNames?: string[];
|
|
987
699
|
}
|
|
988
|
-
export declare namespace IndexDocumentsResponse {
|
|
989
|
-
|
|
990
|
-
const filterSensitiveLog: (obj: IndexDocumentsResponse) => any;
|
|
991
|
-
}
|
|
992
700
|
|
|
993
701
|
export interface ListDomainNamesResponse {
|
|
994
702
|
|
|
995
703
|
DomainNames?: Record<string, string>;
|
|
996
704
|
}
|
|
997
|
-
export declare namespace ListDomainNamesResponse {
|
|
998
|
-
|
|
999
|
-
const filterSensitiveLog: (obj: ListDomainNamesResponse) => any;
|
|
1000
|
-
}
|
|
1001
705
|
|
|
1002
706
|
export interface UpdateAvailabilityOptionsRequest {
|
|
1003
707
|
|
|
@@ -1005,19 +709,11 @@ export interface UpdateAvailabilityOptionsRequest {
|
|
|
1005
709
|
|
|
1006
710
|
MultiAZ: boolean | undefined;
|
|
1007
711
|
}
|
|
1008
|
-
export declare namespace UpdateAvailabilityOptionsRequest {
|
|
1009
|
-
|
|
1010
|
-
const filterSensitiveLog: (obj: UpdateAvailabilityOptionsRequest) => any;
|
|
1011
|
-
}
|
|
1012
712
|
|
|
1013
713
|
export interface UpdateAvailabilityOptionsResponse {
|
|
1014
714
|
|
|
1015
715
|
AvailabilityOptions?: AvailabilityOptionsStatus;
|
|
1016
716
|
}
|
|
1017
|
-
export declare namespace UpdateAvailabilityOptionsResponse {
|
|
1018
|
-
|
|
1019
|
-
const filterSensitiveLog: (obj: UpdateAvailabilityOptionsResponse) => any;
|
|
1020
|
-
}
|
|
1021
717
|
|
|
1022
718
|
export interface UpdateDomainEndpointOptionsRequest {
|
|
1023
719
|
|
|
@@ -1025,19 +721,11 @@ export interface UpdateDomainEndpointOptionsRequest {
|
|
|
1025
721
|
|
|
1026
722
|
DomainEndpointOptions: DomainEndpointOptions | undefined;
|
|
1027
723
|
}
|
|
1028
|
-
export declare namespace UpdateDomainEndpointOptionsRequest {
|
|
1029
|
-
|
|
1030
|
-
const filterSensitiveLog: (obj: UpdateDomainEndpointOptionsRequest) => any;
|
|
1031
|
-
}
|
|
1032
724
|
|
|
1033
725
|
export interface UpdateDomainEndpointOptionsResponse {
|
|
1034
726
|
|
|
1035
727
|
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
1036
728
|
}
|
|
1037
|
-
export declare namespace UpdateDomainEndpointOptionsResponse {
|
|
1038
|
-
|
|
1039
|
-
const filterSensitiveLog: (obj: UpdateDomainEndpointOptionsResponse) => any;
|
|
1040
|
-
}
|
|
1041
729
|
|
|
1042
730
|
export interface UpdateScalingParametersRequest {
|
|
1043
731
|
|
|
@@ -1045,19 +733,11 @@ export interface UpdateScalingParametersRequest {
|
|
|
1045
733
|
|
|
1046
734
|
ScalingParameters: ScalingParameters | undefined;
|
|
1047
735
|
}
|
|
1048
|
-
export declare namespace UpdateScalingParametersRequest {
|
|
1049
|
-
|
|
1050
|
-
const filterSensitiveLog: (obj: UpdateScalingParametersRequest) => any;
|
|
1051
|
-
}
|
|
1052
736
|
|
|
1053
737
|
export interface UpdateScalingParametersResponse {
|
|
1054
738
|
|
|
1055
739
|
ScalingParameters: ScalingParametersStatus | undefined;
|
|
1056
740
|
}
|
|
1057
|
-
export declare namespace UpdateScalingParametersResponse {
|
|
1058
|
-
|
|
1059
|
-
const filterSensitiveLog: (obj: UpdateScalingParametersResponse) => any;
|
|
1060
|
-
}
|
|
1061
741
|
|
|
1062
742
|
export interface UpdateServiceAccessPoliciesRequest {
|
|
1063
743
|
|
|
@@ -1065,16 +745,172 @@ export interface UpdateServiceAccessPoliciesRequest {
|
|
|
1065
745
|
|
|
1066
746
|
AccessPolicies: string | undefined;
|
|
1067
747
|
}
|
|
1068
|
-
export declare namespace UpdateServiceAccessPoliciesRequest {
|
|
1069
|
-
|
|
1070
|
-
const filterSensitiveLog: (obj: UpdateServiceAccessPoliciesRequest) => any;
|
|
1071
|
-
}
|
|
1072
748
|
|
|
1073
749
|
export interface UpdateServiceAccessPoliciesResponse {
|
|
1074
750
|
|
|
1075
751
|
AccessPolicies: AccessPoliciesStatus | undefined;
|
|
1076
752
|
}
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
753
|
+
|
|
754
|
+
export declare const BuildSuggestersRequestFilterSensitiveLog: (obj: BuildSuggestersRequest) => any;
|
|
755
|
+
|
|
756
|
+
export declare const BuildSuggestersResponseFilterSensitiveLog: (obj: BuildSuggestersResponse) => any;
|
|
757
|
+
|
|
758
|
+
export declare const CreateDomainRequestFilterSensitiveLog: (obj: CreateDomainRequest) => any;
|
|
759
|
+
|
|
760
|
+
export declare const ServiceEndpointFilterSensitiveLog: (obj: ServiceEndpoint) => any;
|
|
761
|
+
|
|
762
|
+
export declare const LimitsFilterSensitiveLog: (obj: Limits) => any;
|
|
763
|
+
|
|
764
|
+
export declare const DomainStatusFilterSensitiveLog: (obj: DomainStatus) => any;
|
|
765
|
+
|
|
766
|
+
export declare const CreateDomainResponseFilterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
767
|
+
|
|
768
|
+
export declare const AnalysisOptionsFilterSensitiveLog: (obj: AnalysisOptions) => any;
|
|
769
|
+
|
|
770
|
+
export declare const AnalysisSchemeFilterSensitiveLog: (obj: AnalysisScheme) => any;
|
|
771
|
+
|
|
772
|
+
export declare const DefineAnalysisSchemeRequestFilterSensitiveLog: (obj: DefineAnalysisSchemeRequest) => any;
|
|
773
|
+
|
|
774
|
+
export declare const OptionStatusFilterSensitiveLog: (obj: OptionStatus) => any;
|
|
775
|
+
|
|
776
|
+
export declare const AnalysisSchemeStatusFilterSensitiveLog: (obj: AnalysisSchemeStatus) => any;
|
|
777
|
+
|
|
778
|
+
export declare const DefineAnalysisSchemeResponseFilterSensitiveLog: (obj: DefineAnalysisSchemeResponse) => any;
|
|
779
|
+
|
|
780
|
+
export declare const ExpressionFilterSensitiveLog: (obj: Expression) => any;
|
|
781
|
+
|
|
782
|
+
export declare const DefineExpressionRequestFilterSensitiveLog: (obj: DefineExpressionRequest) => any;
|
|
783
|
+
|
|
784
|
+
export declare const ExpressionStatusFilterSensitiveLog: (obj: ExpressionStatus) => any;
|
|
785
|
+
|
|
786
|
+
export declare const DefineExpressionResponseFilterSensitiveLog: (obj: DefineExpressionResponse) => any;
|
|
787
|
+
|
|
788
|
+
export declare const DateArrayOptionsFilterSensitiveLog: (obj: DateArrayOptions) => any;
|
|
789
|
+
|
|
790
|
+
export declare const DateOptionsFilterSensitiveLog: (obj: DateOptions) => any;
|
|
791
|
+
|
|
792
|
+
export declare const DoubleArrayOptionsFilterSensitiveLog: (obj: DoubleArrayOptions) => any;
|
|
793
|
+
|
|
794
|
+
export declare const DoubleOptionsFilterSensitiveLog: (obj: DoubleOptions) => any;
|
|
795
|
+
|
|
796
|
+
export declare const IntArrayOptionsFilterSensitiveLog: (obj: IntArrayOptions) => any;
|
|
797
|
+
|
|
798
|
+
export declare const IntOptionsFilterSensitiveLog: (obj: IntOptions) => any;
|
|
799
|
+
|
|
800
|
+
export declare const LatLonOptionsFilterSensitiveLog: (obj: LatLonOptions) => any;
|
|
801
|
+
|
|
802
|
+
export declare const LiteralArrayOptionsFilterSensitiveLog: (obj: LiteralArrayOptions) => any;
|
|
803
|
+
|
|
804
|
+
export declare const LiteralOptionsFilterSensitiveLog: (obj: LiteralOptions) => any;
|
|
805
|
+
|
|
806
|
+
export declare const TextArrayOptionsFilterSensitiveLog: (obj: TextArrayOptions) => any;
|
|
807
|
+
|
|
808
|
+
export declare const TextOptionsFilterSensitiveLog: (obj: TextOptions) => any;
|
|
809
|
+
|
|
810
|
+
export declare const IndexFieldFilterSensitiveLog: (obj: IndexField) => any;
|
|
811
|
+
|
|
812
|
+
export declare const DefineIndexFieldRequestFilterSensitiveLog: (obj: DefineIndexFieldRequest) => any;
|
|
813
|
+
|
|
814
|
+
export declare const IndexFieldStatusFilterSensitiveLog: (obj: IndexFieldStatus) => any;
|
|
815
|
+
|
|
816
|
+
export declare const DefineIndexFieldResponseFilterSensitiveLog: (obj: DefineIndexFieldResponse) => any;
|
|
817
|
+
|
|
818
|
+
export declare const DocumentSuggesterOptionsFilterSensitiveLog: (obj: DocumentSuggesterOptions) => any;
|
|
819
|
+
|
|
820
|
+
export declare const SuggesterFilterSensitiveLog: (obj: Suggester) => any;
|
|
821
|
+
|
|
822
|
+
export declare const DefineSuggesterRequestFilterSensitiveLog: (obj: DefineSuggesterRequest) => any;
|
|
823
|
+
|
|
824
|
+
export declare const SuggesterStatusFilterSensitiveLog: (obj: SuggesterStatus) => any;
|
|
825
|
+
|
|
826
|
+
export declare const DefineSuggesterResponseFilterSensitiveLog: (obj: DefineSuggesterResponse) => any;
|
|
827
|
+
|
|
828
|
+
export declare const DeleteAnalysisSchemeRequestFilterSensitiveLog: (obj: DeleteAnalysisSchemeRequest) => any;
|
|
829
|
+
|
|
830
|
+
export declare const DeleteAnalysisSchemeResponseFilterSensitiveLog: (obj: DeleteAnalysisSchemeResponse) => any;
|
|
831
|
+
|
|
832
|
+
export declare const DeleteDomainRequestFilterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
833
|
+
|
|
834
|
+
export declare const DeleteDomainResponseFilterSensitiveLog: (obj: DeleteDomainResponse) => any;
|
|
835
|
+
|
|
836
|
+
export declare const DeleteExpressionRequestFilterSensitiveLog: (obj: DeleteExpressionRequest) => any;
|
|
837
|
+
|
|
838
|
+
export declare const DeleteExpressionResponseFilterSensitiveLog: (obj: DeleteExpressionResponse) => any;
|
|
839
|
+
|
|
840
|
+
export declare const DeleteIndexFieldRequestFilterSensitiveLog: (obj: DeleteIndexFieldRequest) => any;
|
|
841
|
+
|
|
842
|
+
export declare const DeleteIndexFieldResponseFilterSensitiveLog: (obj: DeleteIndexFieldResponse) => any;
|
|
843
|
+
|
|
844
|
+
export declare const DeleteSuggesterRequestFilterSensitiveLog: (obj: DeleteSuggesterRequest) => any;
|
|
845
|
+
|
|
846
|
+
export declare const DeleteSuggesterResponseFilterSensitiveLog: (obj: DeleteSuggesterResponse) => any;
|
|
847
|
+
|
|
848
|
+
export declare const DescribeAnalysisSchemesRequestFilterSensitiveLog: (obj: DescribeAnalysisSchemesRequest) => any;
|
|
849
|
+
|
|
850
|
+
export declare const DescribeAnalysisSchemesResponseFilterSensitiveLog: (obj: DescribeAnalysisSchemesResponse) => any;
|
|
851
|
+
|
|
852
|
+
export declare const DescribeAvailabilityOptionsRequestFilterSensitiveLog: (obj: DescribeAvailabilityOptionsRequest) => any;
|
|
853
|
+
|
|
854
|
+
export declare const AvailabilityOptionsStatusFilterSensitiveLog: (obj: AvailabilityOptionsStatus) => any;
|
|
855
|
+
|
|
856
|
+
export declare const DescribeAvailabilityOptionsResponseFilterSensitiveLog: (obj: DescribeAvailabilityOptionsResponse) => any;
|
|
857
|
+
|
|
858
|
+
export declare const DescribeDomainEndpointOptionsRequestFilterSensitiveLog: (obj: DescribeDomainEndpointOptionsRequest) => any;
|
|
859
|
+
|
|
860
|
+
export declare const DomainEndpointOptionsFilterSensitiveLog: (obj: DomainEndpointOptions) => any;
|
|
861
|
+
|
|
862
|
+
export declare const DomainEndpointOptionsStatusFilterSensitiveLog: (obj: DomainEndpointOptionsStatus) => any;
|
|
863
|
+
|
|
864
|
+
export declare const DescribeDomainEndpointOptionsResponseFilterSensitiveLog: (obj: DescribeDomainEndpointOptionsResponse) => any;
|
|
865
|
+
|
|
866
|
+
export declare const DescribeDomainsRequestFilterSensitiveLog: (obj: DescribeDomainsRequest) => any;
|
|
867
|
+
|
|
868
|
+
export declare const DescribeDomainsResponseFilterSensitiveLog: (obj: DescribeDomainsResponse) => any;
|
|
869
|
+
|
|
870
|
+
export declare const DescribeExpressionsRequestFilterSensitiveLog: (obj: DescribeExpressionsRequest) => any;
|
|
871
|
+
|
|
872
|
+
export declare const DescribeExpressionsResponseFilterSensitiveLog: (obj: DescribeExpressionsResponse) => any;
|
|
873
|
+
|
|
874
|
+
export declare const DescribeIndexFieldsRequestFilterSensitiveLog: (obj: DescribeIndexFieldsRequest) => any;
|
|
875
|
+
|
|
876
|
+
export declare const DescribeIndexFieldsResponseFilterSensitiveLog: (obj: DescribeIndexFieldsResponse) => any;
|
|
877
|
+
|
|
878
|
+
export declare const DescribeScalingParametersRequestFilterSensitiveLog: (obj: DescribeScalingParametersRequest) => any;
|
|
879
|
+
|
|
880
|
+
export declare const ScalingParametersFilterSensitiveLog: (obj: ScalingParameters) => any;
|
|
881
|
+
|
|
882
|
+
export declare const ScalingParametersStatusFilterSensitiveLog: (obj: ScalingParametersStatus) => any;
|
|
883
|
+
|
|
884
|
+
export declare const DescribeScalingParametersResponseFilterSensitiveLog: (obj: DescribeScalingParametersResponse) => any;
|
|
885
|
+
|
|
886
|
+
export declare const DescribeServiceAccessPoliciesRequestFilterSensitiveLog: (obj: DescribeServiceAccessPoliciesRequest) => any;
|
|
887
|
+
|
|
888
|
+
export declare const AccessPoliciesStatusFilterSensitiveLog: (obj: AccessPoliciesStatus) => any;
|
|
889
|
+
|
|
890
|
+
export declare const DescribeServiceAccessPoliciesResponseFilterSensitiveLog: (obj: DescribeServiceAccessPoliciesResponse) => any;
|
|
891
|
+
|
|
892
|
+
export declare const DescribeSuggestersRequestFilterSensitiveLog: (obj: DescribeSuggestersRequest) => any;
|
|
893
|
+
|
|
894
|
+
export declare const DescribeSuggestersResponseFilterSensitiveLog: (obj: DescribeSuggestersResponse) => any;
|
|
895
|
+
|
|
896
|
+
export declare const IndexDocumentsRequestFilterSensitiveLog: (obj: IndexDocumentsRequest) => any;
|
|
897
|
+
|
|
898
|
+
export declare const IndexDocumentsResponseFilterSensitiveLog: (obj: IndexDocumentsResponse) => any;
|
|
899
|
+
|
|
900
|
+
export declare const ListDomainNamesResponseFilterSensitiveLog: (obj: ListDomainNamesResponse) => any;
|
|
901
|
+
|
|
902
|
+
export declare const UpdateAvailabilityOptionsRequestFilterSensitiveLog: (obj: UpdateAvailabilityOptionsRequest) => any;
|
|
903
|
+
|
|
904
|
+
export declare const UpdateAvailabilityOptionsResponseFilterSensitiveLog: (obj: UpdateAvailabilityOptionsResponse) => any;
|
|
905
|
+
|
|
906
|
+
export declare const UpdateDomainEndpointOptionsRequestFilterSensitiveLog: (obj: UpdateDomainEndpointOptionsRequest) => any;
|
|
907
|
+
|
|
908
|
+
export declare const UpdateDomainEndpointOptionsResponseFilterSensitiveLog: (obj: UpdateDomainEndpointOptionsResponse) => any;
|
|
909
|
+
|
|
910
|
+
export declare const UpdateScalingParametersRequestFilterSensitiveLog: (obj: UpdateScalingParametersRequest) => any;
|
|
911
|
+
|
|
912
|
+
export declare const UpdateScalingParametersResponseFilterSensitiveLog: (obj: UpdateScalingParametersResponse) => any;
|
|
913
|
+
|
|
914
|
+
export declare const UpdateServiceAccessPoliciesRequestFilterSensitiveLog: (obj: UpdateServiceAccessPoliciesRequest) => any;
|
|
915
|
+
|
|
916
|
+
export declare const UpdateServiceAccessPoliciesResponseFilterSensitiveLog: (obj: UpdateServiceAccessPoliciesResponse) => any;
|