@aws-sdk/client-appsync 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/AppSync.d.ts +904 -255
- package/dist-types/ts3.4/AppSyncClient.d.ts +429 -123
- package/dist-types/ts3.4/commands/AssociateApiCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateApiCacheCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateApiKeyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainNameCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateGraphqlApiCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateResolverCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateTypeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteApiCacheCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteApiKeyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteDomainNameCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteGraphqlApiCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteResolverCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTypeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DisassociateApiCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/EvaluateMappingTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/FlushApiCacheCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetApiAssociationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetApiCacheCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDomainNameCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGraphqlApiCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetIntrospectionSchemaCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetResolverCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetSchemaCreationStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTypeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListApiKeysCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListGraphqlApisCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListResolversByFunctionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListResolversCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTypesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartSchemaCreationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApiCacheCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApiKeyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDomainNameCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateGraphqlApiCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateResolverCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateTypeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +50 -50
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppSyncServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1573 -1437
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +605 -152
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,1437 +1,1573 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export interface CognitoUserPoolConfig {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
export declare
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
export interface
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
export interface
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
export interface
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
export interface DataSource {
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
export interface
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
export interface
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
}
|
|
666
|
-
export interface
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
}
|
|
674
|
-
export interface
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
}
|
|
680
|
-
export interface
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
}
|
|
694
|
-
export interface
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
export interface
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
export interface
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
}
|
|
724
|
-
export interface
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
export interface
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
export interface
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
}
|
|
751
|
-
export interface
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
}
|
|
783
|
-
export
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
}
|
|
840
|
-
export interface
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
}
|
|
852
|
-
export interface
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
}
|
|
910
|
-
export interface
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
}
|
|
918
|
-
export interface
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
}
|
|
924
|
-
export interface
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
export declare const
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
export declare const
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
export declare const
|
|
1188
|
-
|
|
1189
|
-
export declare const
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
export declare const
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
export declare const
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
export declare const
|
|
1202
|
-
|
|
1203
|
-
export declare const
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
export declare const
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
export declare const
|
|
1212
|
-
|
|
1213
|
-
export declare const
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
export declare const
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
export declare const
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
export declare const
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
export declare const
|
|
1230
|
-
|
|
1231
|
-
export declare const
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
export declare const
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
export declare const
|
|
1240
|
-
|
|
1241
|
-
export declare const
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
export declare const
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
export declare const
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
export declare const
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
export declare const
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
export declare const
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
export declare const
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
export declare const
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
export declare const
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
export declare const
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
export declare const
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
export declare const
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
export declare const
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
export declare const
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
export declare const
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
export declare const DeleteTypeRequestFilterSensitiveLog: (
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
export declare const
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
export declare const
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
export declare const
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
export declare const
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
export declare const
|
|
1322
|
-
|
|
1323
|
-
export declare const
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
export declare const
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
export declare const
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
export declare const
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
export declare const
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
export declare const
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
export declare const
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
export declare const
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
export declare const
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
export declare const
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
export declare const
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
export declare const
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
export declare const
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
export declare const
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
export declare const
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
export declare const
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
export declare const
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
export declare const
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
export declare const
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
export declare const
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
export declare const
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
export declare const
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
export declare const
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
export declare const
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
export declare const
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
export declare const
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
export declare const
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
export declare const
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
export declare const
|
|
1436
|
-
|
|
1437
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare enum AuthenticationType {
|
|
13
|
+
AMAZON_COGNITO_USER_POOLS = "AMAZON_COGNITO_USER_POOLS",
|
|
14
|
+
API_KEY = "API_KEY",
|
|
15
|
+
AWS_IAM = "AWS_IAM",
|
|
16
|
+
AWS_LAMBDA = "AWS_LAMBDA",
|
|
17
|
+
OPENID_CONNECT = "OPENID_CONNECT",
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface LambdaAuthorizerConfig {
|
|
21
|
+
authorizerResultTtlInSeconds?: number;
|
|
22
|
+
|
|
23
|
+
authorizerUri: string | undefined;
|
|
24
|
+
|
|
25
|
+
identityValidationExpression?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface OpenIDConnectConfig {
|
|
29
|
+
issuer: string | undefined;
|
|
30
|
+
|
|
31
|
+
clientId?: string;
|
|
32
|
+
|
|
33
|
+
iatTTL?: number;
|
|
34
|
+
|
|
35
|
+
authTTL?: number;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface CognitoUserPoolConfig {
|
|
39
|
+
userPoolId: string | undefined;
|
|
40
|
+
|
|
41
|
+
awsRegion: string | undefined;
|
|
42
|
+
|
|
43
|
+
appIdClientRegex?: string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface AdditionalAuthenticationProvider {
|
|
47
|
+
authenticationType?: AuthenticationType | string;
|
|
48
|
+
|
|
49
|
+
openIDConnectConfig?: OpenIDConnectConfig;
|
|
50
|
+
|
|
51
|
+
userPoolConfig?: CognitoUserPoolConfig;
|
|
52
|
+
|
|
53
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
54
|
+
}
|
|
55
|
+
export declare enum AssociationStatus {
|
|
56
|
+
Failed = "FAILED",
|
|
57
|
+
Processing = "PROCESSING",
|
|
58
|
+
Success = "SUCCESS",
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface ApiAssociation {
|
|
62
|
+
domainName?: string;
|
|
63
|
+
|
|
64
|
+
apiId?: string;
|
|
65
|
+
|
|
66
|
+
associationStatus?: AssociationStatus | string;
|
|
67
|
+
|
|
68
|
+
deploymentDetail?: string;
|
|
69
|
+
}
|
|
70
|
+
export declare enum ApiCachingBehavior {
|
|
71
|
+
FULL_REQUEST_CACHING = "FULL_REQUEST_CACHING",
|
|
72
|
+
PER_RESOLVER_CACHING = "PER_RESOLVER_CACHING",
|
|
73
|
+
}
|
|
74
|
+
export declare enum ApiCacheStatus {
|
|
75
|
+
AVAILABLE = "AVAILABLE",
|
|
76
|
+
CREATING = "CREATING",
|
|
77
|
+
DELETING = "DELETING",
|
|
78
|
+
FAILED = "FAILED",
|
|
79
|
+
MODIFYING = "MODIFYING",
|
|
80
|
+
}
|
|
81
|
+
export declare enum ApiCacheType {
|
|
82
|
+
LARGE = "LARGE",
|
|
83
|
+
LARGE_12X = "LARGE_12X",
|
|
84
|
+
LARGE_2X = "LARGE_2X",
|
|
85
|
+
LARGE_4X = "LARGE_4X",
|
|
86
|
+
LARGE_8X = "LARGE_8X",
|
|
87
|
+
MEDIUM = "MEDIUM",
|
|
88
|
+
R4_2XLARGE = "R4_2XLARGE",
|
|
89
|
+
R4_4XLARGE = "R4_4XLARGE",
|
|
90
|
+
R4_8XLARGE = "R4_8XLARGE",
|
|
91
|
+
R4_LARGE = "R4_LARGE",
|
|
92
|
+
R4_XLARGE = "R4_XLARGE",
|
|
93
|
+
SMALL = "SMALL",
|
|
94
|
+
T2_MEDIUM = "T2_MEDIUM",
|
|
95
|
+
T2_SMALL = "T2_SMALL",
|
|
96
|
+
XLARGE = "XLARGE",
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface ApiCache {
|
|
100
|
+
ttl?: number;
|
|
101
|
+
|
|
102
|
+
apiCachingBehavior?: ApiCachingBehavior | string;
|
|
103
|
+
|
|
104
|
+
transitEncryptionEnabled?: boolean;
|
|
105
|
+
|
|
106
|
+
atRestEncryptionEnabled?: boolean;
|
|
107
|
+
|
|
108
|
+
type?: ApiCacheType | string;
|
|
109
|
+
|
|
110
|
+
status?: ApiCacheStatus | string;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export interface ApiKey {
|
|
114
|
+
id?: string;
|
|
115
|
+
|
|
116
|
+
description?: string;
|
|
117
|
+
|
|
118
|
+
expires?: number;
|
|
119
|
+
|
|
120
|
+
deletes?: number;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export declare class ApiKeyLimitExceededException extends __BaseException {
|
|
124
|
+
readonly name: "ApiKeyLimitExceededException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
|
|
127
|
+
constructor(
|
|
128
|
+
opts: __ExceptionOptionType<ApiKeyLimitExceededException, __BaseException>
|
|
129
|
+
);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export declare class ApiKeyValidityOutOfBoundsException extends __BaseException {
|
|
133
|
+
readonly name: "ApiKeyValidityOutOfBoundsException";
|
|
134
|
+
readonly $fault: "client";
|
|
135
|
+
|
|
136
|
+
constructor(
|
|
137
|
+
opts: __ExceptionOptionType<
|
|
138
|
+
ApiKeyValidityOutOfBoundsException,
|
|
139
|
+
__BaseException
|
|
140
|
+
>
|
|
141
|
+
);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export declare class ApiLimitExceededException extends __BaseException {
|
|
145
|
+
readonly name: "ApiLimitExceededException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
|
|
148
|
+
constructor(
|
|
149
|
+
opts: __ExceptionOptionType<ApiLimitExceededException, __BaseException>
|
|
150
|
+
);
|
|
151
|
+
}
|
|
152
|
+
export interface AssociateApiRequest {
|
|
153
|
+
domainName: string | undefined;
|
|
154
|
+
|
|
155
|
+
apiId: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export interface AssociateApiResponse {
|
|
158
|
+
apiAssociation?: ApiAssociation;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export declare class BadRequestException extends __BaseException {
|
|
162
|
+
readonly name: "BadRequestException";
|
|
163
|
+
readonly $fault: "client";
|
|
164
|
+
|
|
165
|
+
constructor(
|
|
166
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
167
|
+
);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export declare class InternalFailureException extends __BaseException {
|
|
171
|
+
readonly name: "InternalFailureException";
|
|
172
|
+
readonly $fault: "server";
|
|
173
|
+
|
|
174
|
+
constructor(
|
|
175
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export declare class NotFoundException extends __BaseException {
|
|
180
|
+
readonly name: "NotFoundException";
|
|
181
|
+
readonly $fault: "client";
|
|
182
|
+
|
|
183
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
184
|
+
}
|
|
185
|
+
export declare enum AuthorizationType {
|
|
186
|
+
AWS_IAM = "AWS_IAM",
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface AwsIamConfig {
|
|
190
|
+
signingRegion?: string;
|
|
191
|
+
|
|
192
|
+
signingServiceName?: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface AuthorizationConfig {
|
|
196
|
+
authorizationType: AuthorizationType | string | undefined;
|
|
197
|
+
|
|
198
|
+
awsIamConfig?: AwsIamConfig;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
202
|
+
readonly name: "ConcurrentModificationException";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
|
|
205
|
+
constructor(
|
|
206
|
+
opts: __ExceptionOptionType<
|
|
207
|
+
ConcurrentModificationException,
|
|
208
|
+
__BaseException
|
|
209
|
+
>
|
|
210
|
+
);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export interface CreateApiCacheRequest {
|
|
214
|
+
apiId: string | undefined;
|
|
215
|
+
|
|
216
|
+
ttl: number | undefined;
|
|
217
|
+
|
|
218
|
+
transitEncryptionEnabled?: boolean;
|
|
219
|
+
|
|
220
|
+
atRestEncryptionEnabled?: boolean;
|
|
221
|
+
|
|
222
|
+
apiCachingBehavior: ApiCachingBehavior | string | undefined;
|
|
223
|
+
|
|
224
|
+
type: ApiCacheType | string | undefined;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface CreateApiCacheResponse {
|
|
228
|
+
apiCache?: ApiCache;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
232
|
+
readonly name: "UnauthorizedException";
|
|
233
|
+
readonly $fault: "client";
|
|
234
|
+
|
|
235
|
+
constructor(
|
|
236
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
export interface CreateApiKeyRequest {
|
|
240
|
+
apiId: string | undefined;
|
|
241
|
+
|
|
242
|
+
description?: string;
|
|
243
|
+
|
|
244
|
+
expires?: number;
|
|
245
|
+
}
|
|
246
|
+
export interface CreateApiKeyResponse {
|
|
247
|
+
apiKey?: ApiKey;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export declare class LimitExceededException extends __BaseException {
|
|
251
|
+
readonly name: "LimitExceededException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
|
|
254
|
+
constructor(
|
|
255
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
256
|
+
);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export interface DeltaSyncConfig {
|
|
260
|
+
baseTableTTL?: number;
|
|
261
|
+
|
|
262
|
+
deltaSyncTableName?: string;
|
|
263
|
+
|
|
264
|
+
deltaSyncTableTTL?: number;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface DynamodbDataSourceConfig {
|
|
268
|
+
tableName: string | undefined;
|
|
269
|
+
|
|
270
|
+
awsRegion: string | undefined;
|
|
271
|
+
|
|
272
|
+
useCallerCredentials?: boolean;
|
|
273
|
+
|
|
274
|
+
deltaSyncConfig?: DeltaSyncConfig;
|
|
275
|
+
|
|
276
|
+
versioned?: boolean;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export interface ElasticsearchDataSourceConfig {
|
|
280
|
+
endpoint: string | undefined;
|
|
281
|
+
|
|
282
|
+
awsRegion: string | undefined;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export interface HttpDataSourceConfig {
|
|
286
|
+
endpoint?: string;
|
|
287
|
+
|
|
288
|
+
authorizationConfig?: AuthorizationConfig;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export interface LambdaDataSourceConfig {
|
|
292
|
+
lambdaFunctionArn: string | undefined;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export interface OpenSearchServiceDataSourceConfig {
|
|
296
|
+
endpoint: string | undefined;
|
|
297
|
+
|
|
298
|
+
awsRegion: string | undefined;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface RdsHttpEndpointConfig {
|
|
302
|
+
awsRegion?: string;
|
|
303
|
+
|
|
304
|
+
dbClusterIdentifier?: string;
|
|
305
|
+
|
|
306
|
+
databaseName?: string;
|
|
307
|
+
|
|
308
|
+
schema?: string;
|
|
309
|
+
|
|
310
|
+
awsSecretStoreArn?: string;
|
|
311
|
+
}
|
|
312
|
+
export declare enum RelationalDatabaseSourceType {
|
|
313
|
+
RDS_HTTP_ENDPOINT = "RDS_HTTP_ENDPOINT",
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface RelationalDatabaseDataSourceConfig {
|
|
317
|
+
relationalDatabaseSourceType?: RelationalDatabaseSourceType | string;
|
|
318
|
+
|
|
319
|
+
rdsHttpEndpointConfig?: RdsHttpEndpointConfig;
|
|
320
|
+
}
|
|
321
|
+
export declare enum DataSourceType {
|
|
322
|
+
AMAZON_DYNAMODB = "AMAZON_DYNAMODB",
|
|
323
|
+
AMAZON_ELASTICSEARCH = "AMAZON_ELASTICSEARCH",
|
|
324
|
+
AMAZON_OPENSEARCH_SERVICE = "AMAZON_OPENSEARCH_SERVICE",
|
|
325
|
+
AWS_LAMBDA = "AWS_LAMBDA",
|
|
326
|
+
HTTP = "HTTP",
|
|
327
|
+
NONE = "NONE",
|
|
328
|
+
RELATIONAL_DATABASE = "RELATIONAL_DATABASE",
|
|
329
|
+
}
|
|
330
|
+
export interface CreateDataSourceRequest {
|
|
331
|
+
apiId: string | undefined;
|
|
332
|
+
|
|
333
|
+
name: string | undefined;
|
|
334
|
+
|
|
335
|
+
description?: string;
|
|
336
|
+
|
|
337
|
+
type: DataSourceType | string | undefined;
|
|
338
|
+
|
|
339
|
+
serviceRoleArn?: string;
|
|
340
|
+
|
|
341
|
+
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
342
|
+
|
|
343
|
+
lambdaConfig?: LambdaDataSourceConfig;
|
|
344
|
+
|
|
345
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
346
|
+
|
|
347
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
348
|
+
|
|
349
|
+
httpConfig?: HttpDataSourceConfig;
|
|
350
|
+
|
|
351
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
export interface DataSource {
|
|
355
|
+
dataSourceArn?: string;
|
|
356
|
+
|
|
357
|
+
name?: string;
|
|
358
|
+
|
|
359
|
+
description?: string;
|
|
360
|
+
|
|
361
|
+
type?: DataSourceType | string;
|
|
362
|
+
|
|
363
|
+
serviceRoleArn?: string;
|
|
364
|
+
|
|
365
|
+
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
366
|
+
|
|
367
|
+
lambdaConfig?: LambdaDataSourceConfig;
|
|
368
|
+
|
|
369
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
370
|
+
|
|
371
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
372
|
+
|
|
373
|
+
httpConfig?: HttpDataSourceConfig;
|
|
374
|
+
|
|
375
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
376
|
+
}
|
|
377
|
+
export interface CreateDataSourceResponse {
|
|
378
|
+
dataSource?: DataSource;
|
|
379
|
+
}
|
|
380
|
+
export interface CreateDomainNameRequest {
|
|
381
|
+
domainName: string | undefined;
|
|
382
|
+
|
|
383
|
+
certificateArn: string | undefined;
|
|
384
|
+
|
|
385
|
+
description?: string;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
export interface DomainNameConfig {
|
|
389
|
+
domainName?: string;
|
|
390
|
+
|
|
391
|
+
description?: string;
|
|
392
|
+
|
|
393
|
+
certificateArn?: string;
|
|
394
|
+
|
|
395
|
+
appsyncDomainName?: string;
|
|
396
|
+
|
|
397
|
+
hostedZoneId?: string;
|
|
398
|
+
}
|
|
399
|
+
export interface CreateDomainNameResponse {
|
|
400
|
+
domainNameConfig?: DomainNameConfig;
|
|
401
|
+
}
|
|
402
|
+
export declare enum ConflictDetectionType {
|
|
403
|
+
NONE = "NONE",
|
|
404
|
+
VERSION = "VERSION",
|
|
405
|
+
}
|
|
406
|
+
export declare enum ConflictHandlerType {
|
|
407
|
+
AUTOMERGE = "AUTOMERGE",
|
|
408
|
+
LAMBDA = "LAMBDA",
|
|
409
|
+
NONE = "NONE",
|
|
410
|
+
OPTIMISTIC_CONCURRENCY = "OPTIMISTIC_CONCURRENCY",
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface LambdaConflictHandlerConfig {
|
|
414
|
+
lambdaConflictHandlerArn?: string;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
export interface SyncConfig {
|
|
418
|
+
conflictHandler?: ConflictHandlerType | string;
|
|
419
|
+
|
|
420
|
+
conflictDetection?: ConflictDetectionType | string;
|
|
421
|
+
|
|
422
|
+
lambdaConflictHandlerConfig?: LambdaConflictHandlerConfig;
|
|
423
|
+
}
|
|
424
|
+
export interface CreateFunctionRequest {
|
|
425
|
+
apiId: string | undefined;
|
|
426
|
+
|
|
427
|
+
name: string | undefined;
|
|
428
|
+
|
|
429
|
+
description?: string;
|
|
430
|
+
|
|
431
|
+
dataSourceName: string | undefined;
|
|
432
|
+
|
|
433
|
+
requestMappingTemplate?: string;
|
|
434
|
+
|
|
435
|
+
responseMappingTemplate?: string;
|
|
436
|
+
|
|
437
|
+
functionVersion: string | undefined;
|
|
438
|
+
|
|
439
|
+
syncConfig?: SyncConfig;
|
|
440
|
+
|
|
441
|
+
maxBatchSize?: number;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
export interface FunctionConfiguration {
|
|
445
|
+
functionId?: string;
|
|
446
|
+
|
|
447
|
+
functionArn?: string;
|
|
448
|
+
|
|
449
|
+
name?: string;
|
|
450
|
+
|
|
451
|
+
description?: string;
|
|
452
|
+
|
|
453
|
+
dataSourceName?: string;
|
|
454
|
+
|
|
455
|
+
requestMappingTemplate?: string;
|
|
456
|
+
|
|
457
|
+
responseMappingTemplate?: string;
|
|
458
|
+
|
|
459
|
+
functionVersion?: string;
|
|
460
|
+
|
|
461
|
+
syncConfig?: SyncConfig;
|
|
462
|
+
|
|
463
|
+
maxBatchSize?: number;
|
|
464
|
+
}
|
|
465
|
+
export interface CreateFunctionResponse {
|
|
466
|
+
functionConfiguration?: FunctionConfiguration;
|
|
467
|
+
}
|
|
468
|
+
export declare enum FieldLogLevel {
|
|
469
|
+
ALL = "ALL",
|
|
470
|
+
ERROR = "ERROR",
|
|
471
|
+
NONE = "NONE",
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
export interface LogConfig {
|
|
475
|
+
fieldLogLevel: FieldLogLevel | string | undefined;
|
|
476
|
+
|
|
477
|
+
cloudWatchLogsRoleArn: string | undefined;
|
|
478
|
+
|
|
479
|
+
excludeVerboseContent?: boolean;
|
|
480
|
+
}
|
|
481
|
+
export declare enum DefaultAction {
|
|
482
|
+
ALLOW = "ALLOW",
|
|
483
|
+
DENY = "DENY",
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
export interface UserPoolConfig {
|
|
487
|
+
userPoolId: string | undefined;
|
|
488
|
+
|
|
489
|
+
awsRegion: string | undefined;
|
|
490
|
+
|
|
491
|
+
defaultAction: DefaultAction | string | undefined;
|
|
492
|
+
|
|
493
|
+
appIdClientRegex?: string;
|
|
494
|
+
}
|
|
495
|
+
export interface CreateGraphqlApiRequest {
|
|
496
|
+
name: string | undefined;
|
|
497
|
+
|
|
498
|
+
logConfig?: LogConfig;
|
|
499
|
+
|
|
500
|
+
authenticationType: AuthenticationType | string | undefined;
|
|
501
|
+
|
|
502
|
+
userPoolConfig?: UserPoolConfig;
|
|
503
|
+
|
|
504
|
+
openIDConnectConfig?: OpenIDConnectConfig;
|
|
505
|
+
|
|
506
|
+
tags?: Record<string, string>;
|
|
507
|
+
|
|
508
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
509
|
+
|
|
510
|
+
xrayEnabled?: boolean;
|
|
511
|
+
|
|
512
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
export interface GraphqlApi {
|
|
516
|
+
name?: string;
|
|
517
|
+
|
|
518
|
+
apiId?: string;
|
|
519
|
+
|
|
520
|
+
authenticationType?: AuthenticationType | string;
|
|
521
|
+
|
|
522
|
+
logConfig?: LogConfig;
|
|
523
|
+
|
|
524
|
+
userPoolConfig?: UserPoolConfig;
|
|
525
|
+
|
|
526
|
+
openIDConnectConfig?: OpenIDConnectConfig;
|
|
527
|
+
|
|
528
|
+
arn?: string;
|
|
529
|
+
|
|
530
|
+
uris?: Record<string, string>;
|
|
531
|
+
|
|
532
|
+
tags?: Record<string, string>;
|
|
533
|
+
|
|
534
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
535
|
+
|
|
536
|
+
xrayEnabled?: boolean;
|
|
537
|
+
|
|
538
|
+
wafWebAclArn?: string;
|
|
539
|
+
|
|
540
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
541
|
+
}
|
|
542
|
+
export interface CreateGraphqlApiResponse {
|
|
543
|
+
graphqlApi?: GraphqlApi;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
export interface CachingConfig {
|
|
547
|
+
ttl: number | undefined;
|
|
548
|
+
|
|
549
|
+
cachingKeys?: string[];
|
|
550
|
+
}
|
|
551
|
+
export declare enum ResolverKind {
|
|
552
|
+
PIPELINE = "PIPELINE",
|
|
553
|
+
UNIT = "UNIT",
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
export interface PipelineConfig {
|
|
557
|
+
functions?: string[];
|
|
558
|
+
}
|
|
559
|
+
export interface CreateResolverRequest {
|
|
560
|
+
apiId: string | undefined;
|
|
561
|
+
|
|
562
|
+
typeName: string | undefined;
|
|
563
|
+
|
|
564
|
+
fieldName: string | undefined;
|
|
565
|
+
|
|
566
|
+
dataSourceName?: string;
|
|
567
|
+
|
|
568
|
+
requestMappingTemplate?: string;
|
|
569
|
+
|
|
570
|
+
responseMappingTemplate?: string;
|
|
571
|
+
|
|
572
|
+
kind?: ResolverKind | string;
|
|
573
|
+
|
|
574
|
+
pipelineConfig?: PipelineConfig;
|
|
575
|
+
|
|
576
|
+
syncConfig?: SyncConfig;
|
|
577
|
+
|
|
578
|
+
cachingConfig?: CachingConfig;
|
|
579
|
+
|
|
580
|
+
maxBatchSize?: number;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export interface Resolver {
|
|
584
|
+
typeName?: string;
|
|
585
|
+
|
|
586
|
+
fieldName?: string;
|
|
587
|
+
|
|
588
|
+
dataSourceName?: string;
|
|
589
|
+
|
|
590
|
+
resolverArn?: string;
|
|
591
|
+
|
|
592
|
+
requestMappingTemplate?: string;
|
|
593
|
+
|
|
594
|
+
responseMappingTemplate?: string;
|
|
595
|
+
|
|
596
|
+
kind?: ResolverKind | string;
|
|
597
|
+
|
|
598
|
+
pipelineConfig?: PipelineConfig;
|
|
599
|
+
|
|
600
|
+
syncConfig?: SyncConfig;
|
|
601
|
+
|
|
602
|
+
cachingConfig?: CachingConfig;
|
|
603
|
+
|
|
604
|
+
maxBatchSize?: number;
|
|
605
|
+
}
|
|
606
|
+
export interface CreateResolverResponse {
|
|
607
|
+
resolver?: Resolver;
|
|
608
|
+
}
|
|
609
|
+
export declare enum TypeDefinitionFormat {
|
|
610
|
+
JSON = "JSON",
|
|
611
|
+
SDL = "SDL",
|
|
612
|
+
}
|
|
613
|
+
export interface CreateTypeRequest {
|
|
614
|
+
apiId: string | undefined;
|
|
615
|
+
|
|
616
|
+
definition: string | undefined;
|
|
617
|
+
|
|
618
|
+
format: TypeDefinitionFormat | string | undefined;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
export interface Type {
|
|
622
|
+
name?: string;
|
|
623
|
+
|
|
624
|
+
description?: string;
|
|
625
|
+
|
|
626
|
+
arn?: string;
|
|
627
|
+
|
|
628
|
+
definition?: string;
|
|
629
|
+
|
|
630
|
+
format?: TypeDefinitionFormat | string;
|
|
631
|
+
}
|
|
632
|
+
export interface CreateTypeResponse {
|
|
633
|
+
type?: Type;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
export interface DeleteApiCacheRequest {
|
|
637
|
+
apiId: string | undefined;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
export interface DeleteApiCacheResponse {}
|
|
641
|
+
export interface DeleteApiKeyRequest {
|
|
642
|
+
apiId: string | undefined;
|
|
643
|
+
|
|
644
|
+
id: string | undefined;
|
|
645
|
+
}
|
|
646
|
+
export interface DeleteApiKeyResponse {}
|
|
647
|
+
export interface DeleteDataSourceRequest {
|
|
648
|
+
apiId: string | undefined;
|
|
649
|
+
|
|
650
|
+
name: string | undefined;
|
|
651
|
+
}
|
|
652
|
+
export interface DeleteDataSourceResponse {}
|
|
653
|
+
export interface DeleteDomainNameRequest {
|
|
654
|
+
domainName: string | undefined;
|
|
655
|
+
}
|
|
656
|
+
export interface DeleteDomainNameResponse {}
|
|
657
|
+
export interface DeleteFunctionRequest {
|
|
658
|
+
apiId: string | undefined;
|
|
659
|
+
|
|
660
|
+
functionId: string | undefined;
|
|
661
|
+
}
|
|
662
|
+
export interface DeleteFunctionResponse {}
|
|
663
|
+
export interface DeleteGraphqlApiRequest {
|
|
664
|
+
apiId: string | undefined;
|
|
665
|
+
}
|
|
666
|
+
export interface DeleteGraphqlApiResponse {}
|
|
667
|
+
export interface DeleteResolverRequest {
|
|
668
|
+
apiId: string | undefined;
|
|
669
|
+
|
|
670
|
+
typeName: string | undefined;
|
|
671
|
+
|
|
672
|
+
fieldName: string | undefined;
|
|
673
|
+
}
|
|
674
|
+
export interface DeleteResolverResponse {}
|
|
675
|
+
export interface DeleteTypeRequest {
|
|
676
|
+
apiId: string | undefined;
|
|
677
|
+
|
|
678
|
+
typeName: string | undefined;
|
|
679
|
+
}
|
|
680
|
+
export interface DeleteTypeResponse {}
|
|
681
|
+
export interface DisassociateApiRequest {
|
|
682
|
+
domainName: string | undefined;
|
|
683
|
+
}
|
|
684
|
+
export interface DisassociateApiResponse {}
|
|
685
|
+
export interface EvaluateMappingTemplateRequest {
|
|
686
|
+
template: string | undefined;
|
|
687
|
+
|
|
688
|
+
context: string | undefined;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
export interface ErrorDetail {
|
|
692
|
+
message?: string;
|
|
693
|
+
}
|
|
694
|
+
export interface EvaluateMappingTemplateResponse {
|
|
695
|
+
evaluationResult?: string;
|
|
696
|
+
|
|
697
|
+
error?: ErrorDetail;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
export interface FlushApiCacheRequest {
|
|
701
|
+
apiId: string | undefined;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
export interface FlushApiCacheResponse {}
|
|
705
|
+
export interface GetApiAssociationRequest {
|
|
706
|
+
domainName: string | undefined;
|
|
707
|
+
}
|
|
708
|
+
export interface GetApiAssociationResponse {
|
|
709
|
+
apiAssociation?: ApiAssociation;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
export interface GetApiCacheRequest {
|
|
713
|
+
apiId: string | undefined;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
export interface GetApiCacheResponse {
|
|
717
|
+
apiCache?: ApiCache;
|
|
718
|
+
}
|
|
719
|
+
export interface GetDataSourceRequest {
|
|
720
|
+
apiId: string | undefined;
|
|
721
|
+
|
|
722
|
+
name: string | undefined;
|
|
723
|
+
}
|
|
724
|
+
export interface GetDataSourceResponse {
|
|
725
|
+
dataSource?: DataSource;
|
|
726
|
+
}
|
|
727
|
+
export interface GetDomainNameRequest {
|
|
728
|
+
domainName: string | undefined;
|
|
729
|
+
}
|
|
730
|
+
export interface GetDomainNameResponse {
|
|
731
|
+
domainNameConfig?: DomainNameConfig;
|
|
732
|
+
}
|
|
733
|
+
export interface GetFunctionRequest {
|
|
734
|
+
apiId: string | undefined;
|
|
735
|
+
|
|
736
|
+
functionId: string | undefined;
|
|
737
|
+
}
|
|
738
|
+
export interface GetFunctionResponse {
|
|
739
|
+
functionConfiguration?: FunctionConfiguration;
|
|
740
|
+
}
|
|
741
|
+
export interface GetGraphqlApiRequest {
|
|
742
|
+
apiId: string | undefined;
|
|
743
|
+
}
|
|
744
|
+
export interface GetGraphqlApiResponse {
|
|
745
|
+
graphqlApi?: GraphqlApi;
|
|
746
|
+
}
|
|
747
|
+
export declare enum OutputType {
|
|
748
|
+
JSON = "JSON",
|
|
749
|
+
SDL = "SDL",
|
|
750
|
+
}
|
|
751
|
+
export interface GetIntrospectionSchemaRequest {
|
|
752
|
+
apiId: string | undefined;
|
|
753
|
+
|
|
754
|
+
format: OutputType | string | undefined;
|
|
755
|
+
|
|
756
|
+
includeDirectives?: boolean;
|
|
757
|
+
}
|
|
758
|
+
export interface GetIntrospectionSchemaResponse {
|
|
759
|
+
schema?: Uint8Array;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
export declare class GraphQLSchemaException extends __BaseException {
|
|
763
|
+
readonly name: "GraphQLSchemaException";
|
|
764
|
+
readonly $fault: "client";
|
|
765
|
+
|
|
766
|
+
constructor(
|
|
767
|
+
opts: __ExceptionOptionType<GraphQLSchemaException, __BaseException>
|
|
768
|
+
);
|
|
769
|
+
}
|
|
770
|
+
export interface GetResolverRequest {
|
|
771
|
+
apiId: string | undefined;
|
|
772
|
+
|
|
773
|
+
typeName: string | undefined;
|
|
774
|
+
|
|
775
|
+
fieldName: string | undefined;
|
|
776
|
+
}
|
|
777
|
+
export interface GetResolverResponse {
|
|
778
|
+
resolver?: Resolver;
|
|
779
|
+
}
|
|
780
|
+
export interface GetSchemaCreationStatusRequest {
|
|
781
|
+
apiId: string | undefined;
|
|
782
|
+
}
|
|
783
|
+
export declare enum SchemaStatus {
|
|
784
|
+
Active = "ACTIVE",
|
|
785
|
+
Deleting = "DELETING",
|
|
786
|
+
Failed = "FAILED",
|
|
787
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
788
|
+
Processing = "PROCESSING",
|
|
789
|
+
Success = "SUCCESS",
|
|
790
|
+
}
|
|
791
|
+
export interface GetSchemaCreationStatusResponse {
|
|
792
|
+
status?: SchemaStatus | string;
|
|
793
|
+
|
|
794
|
+
details?: string;
|
|
795
|
+
}
|
|
796
|
+
export interface GetTypeRequest {
|
|
797
|
+
apiId: string | undefined;
|
|
798
|
+
|
|
799
|
+
typeName: string | undefined;
|
|
800
|
+
|
|
801
|
+
format: TypeDefinitionFormat | string | undefined;
|
|
802
|
+
}
|
|
803
|
+
export interface GetTypeResponse {
|
|
804
|
+
type?: Type;
|
|
805
|
+
}
|
|
806
|
+
export interface ListApiKeysRequest {
|
|
807
|
+
apiId: string | undefined;
|
|
808
|
+
|
|
809
|
+
nextToken?: string;
|
|
810
|
+
|
|
811
|
+
maxResults?: number;
|
|
812
|
+
}
|
|
813
|
+
export interface ListApiKeysResponse {
|
|
814
|
+
apiKeys?: ApiKey[];
|
|
815
|
+
|
|
816
|
+
nextToken?: string;
|
|
817
|
+
}
|
|
818
|
+
export interface ListDataSourcesRequest {
|
|
819
|
+
apiId: string | undefined;
|
|
820
|
+
|
|
821
|
+
nextToken?: string;
|
|
822
|
+
|
|
823
|
+
maxResults?: number;
|
|
824
|
+
}
|
|
825
|
+
export interface ListDataSourcesResponse {
|
|
826
|
+
dataSources?: DataSource[];
|
|
827
|
+
|
|
828
|
+
nextToken?: string;
|
|
829
|
+
}
|
|
830
|
+
export interface ListDomainNamesRequest {
|
|
831
|
+
nextToken?: string;
|
|
832
|
+
|
|
833
|
+
maxResults?: number;
|
|
834
|
+
}
|
|
835
|
+
export interface ListDomainNamesResponse {
|
|
836
|
+
domainNameConfigs?: DomainNameConfig[];
|
|
837
|
+
|
|
838
|
+
nextToken?: string;
|
|
839
|
+
}
|
|
840
|
+
export interface ListFunctionsRequest {
|
|
841
|
+
apiId: string | undefined;
|
|
842
|
+
|
|
843
|
+
nextToken?: string;
|
|
844
|
+
|
|
845
|
+
maxResults?: number;
|
|
846
|
+
}
|
|
847
|
+
export interface ListFunctionsResponse {
|
|
848
|
+
functions?: FunctionConfiguration[];
|
|
849
|
+
|
|
850
|
+
nextToken?: string;
|
|
851
|
+
}
|
|
852
|
+
export interface ListGraphqlApisRequest {
|
|
853
|
+
nextToken?: string;
|
|
854
|
+
|
|
855
|
+
maxResults?: number;
|
|
856
|
+
}
|
|
857
|
+
export interface ListGraphqlApisResponse {
|
|
858
|
+
graphqlApis?: GraphqlApi[];
|
|
859
|
+
|
|
860
|
+
nextToken?: string;
|
|
861
|
+
}
|
|
862
|
+
export interface ListResolversRequest {
|
|
863
|
+
apiId: string | undefined;
|
|
864
|
+
|
|
865
|
+
typeName: string | undefined;
|
|
866
|
+
|
|
867
|
+
nextToken?: string;
|
|
868
|
+
|
|
869
|
+
maxResults?: number;
|
|
870
|
+
}
|
|
871
|
+
export interface ListResolversResponse {
|
|
872
|
+
resolvers?: Resolver[];
|
|
873
|
+
|
|
874
|
+
nextToken?: string;
|
|
875
|
+
}
|
|
876
|
+
export interface ListResolversByFunctionRequest {
|
|
877
|
+
apiId: string | undefined;
|
|
878
|
+
|
|
879
|
+
functionId: string | undefined;
|
|
880
|
+
|
|
881
|
+
nextToken?: string;
|
|
882
|
+
|
|
883
|
+
maxResults?: number;
|
|
884
|
+
}
|
|
885
|
+
export interface ListResolversByFunctionResponse {
|
|
886
|
+
resolvers?: Resolver[];
|
|
887
|
+
|
|
888
|
+
nextToken?: string;
|
|
889
|
+
}
|
|
890
|
+
export interface ListTagsForResourceRequest {
|
|
891
|
+
resourceArn: string | undefined;
|
|
892
|
+
}
|
|
893
|
+
export interface ListTagsForResourceResponse {
|
|
894
|
+
tags?: Record<string, string>;
|
|
895
|
+
}
|
|
896
|
+
export interface ListTypesRequest {
|
|
897
|
+
apiId: string | undefined;
|
|
898
|
+
|
|
899
|
+
format: TypeDefinitionFormat | string | undefined;
|
|
900
|
+
|
|
901
|
+
nextToken?: string;
|
|
902
|
+
|
|
903
|
+
maxResults?: number;
|
|
904
|
+
}
|
|
905
|
+
export interface ListTypesResponse {
|
|
906
|
+
types?: Type[];
|
|
907
|
+
|
|
908
|
+
nextToken?: string;
|
|
909
|
+
}
|
|
910
|
+
export interface StartSchemaCreationRequest {
|
|
911
|
+
apiId: string | undefined;
|
|
912
|
+
|
|
913
|
+
definition: Uint8Array | undefined;
|
|
914
|
+
}
|
|
915
|
+
export interface StartSchemaCreationResponse {
|
|
916
|
+
status?: SchemaStatus | string;
|
|
917
|
+
}
|
|
918
|
+
export interface TagResourceRequest {
|
|
919
|
+
resourceArn: string | undefined;
|
|
920
|
+
|
|
921
|
+
tags: Record<string, string> | undefined;
|
|
922
|
+
}
|
|
923
|
+
export interface TagResourceResponse {}
|
|
924
|
+
export interface UntagResourceRequest {
|
|
925
|
+
resourceArn: string | undefined;
|
|
926
|
+
|
|
927
|
+
tagKeys: string[] | undefined;
|
|
928
|
+
}
|
|
929
|
+
export interface UntagResourceResponse {}
|
|
930
|
+
|
|
931
|
+
export interface UpdateApiCacheRequest {
|
|
932
|
+
apiId: string | undefined;
|
|
933
|
+
|
|
934
|
+
ttl: number | undefined;
|
|
935
|
+
|
|
936
|
+
apiCachingBehavior: ApiCachingBehavior | string | undefined;
|
|
937
|
+
|
|
938
|
+
type: ApiCacheType | string | undefined;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
export interface UpdateApiCacheResponse {
|
|
942
|
+
apiCache?: ApiCache;
|
|
943
|
+
}
|
|
944
|
+
export interface UpdateApiKeyRequest {
|
|
945
|
+
apiId: string | undefined;
|
|
946
|
+
|
|
947
|
+
id: string | undefined;
|
|
948
|
+
|
|
949
|
+
description?: string;
|
|
950
|
+
|
|
951
|
+
expires?: number;
|
|
952
|
+
}
|
|
953
|
+
export interface UpdateApiKeyResponse {
|
|
954
|
+
apiKey?: ApiKey;
|
|
955
|
+
}
|
|
956
|
+
export interface UpdateDataSourceRequest {
|
|
957
|
+
apiId: string | undefined;
|
|
958
|
+
|
|
959
|
+
name: string | undefined;
|
|
960
|
+
|
|
961
|
+
description?: string;
|
|
962
|
+
|
|
963
|
+
type: DataSourceType | string | undefined;
|
|
964
|
+
|
|
965
|
+
serviceRoleArn?: string;
|
|
966
|
+
|
|
967
|
+
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
968
|
+
|
|
969
|
+
lambdaConfig?: LambdaDataSourceConfig;
|
|
970
|
+
|
|
971
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
972
|
+
|
|
973
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
974
|
+
|
|
975
|
+
httpConfig?: HttpDataSourceConfig;
|
|
976
|
+
|
|
977
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
978
|
+
}
|
|
979
|
+
export interface UpdateDataSourceResponse {
|
|
980
|
+
dataSource?: DataSource;
|
|
981
|
+
}
|
|
982
|
+
export interface UpdateDomainNameRequest {
|
|
983
|
+
domainName: string | undefined;
|
|
984
|
+
|
|
985
|
+
description?: string;
|
|
986
|
+
}
|
|
987
|
+
export interface UpdateDomainNameResponse {
|
|
988
|
+
domainNameConfig?: DomainNameConfig;
|
|
989
|
+
}
|
|
990
|
+
export interface UpdateFunctionRequest {
|
|
991
|
+
apiId: string | undefined;
|
|
992
|
+
|
|
993
|
+
name: string | undefined;
|
|
994
|
+
|
|
995
|
+
description?: string;
|
|
996
|
+
|
|
997
|
+
functionId: string | undefined;
|
|
998
|
+
|
|
999
|
+
dataSourceName: string | undefined;
|
|
1000
|
+
|
|
1001
|
+
requestMappingTemplate?: string;
|
|
1002
|
+
|
|
1003
|
+
responseMappingTemplate?: string;
|
|
1004
|
+
|
|
1005
|
+
functionVersion: string | undefined;
|
|
1006
|
+
|
|
1007
|
+
syncConfig?: SyncConfig;
|
|
1008
|
+
|
|
1009
|
+
maxBatchSize?: number;
|
|
1010
|
+
}
|
|
1011
|
+
export interface UpdateFunctionResponse {
|
|
1012
|
+
functionConfiguration?: FunctionConfiguration;
|
|
1013
|
+
}
|
|
1014
|
+
export interface UpdateGraphqlApiRequest {
|
|
1015
|
+
apiId: string | undefined;
|
|
1016
|
+
|
|
1017
|
+
name: string | undefined;
|
|
1018
|
+
|
|
1019
|
+
logConfig?: LogConfig;
|
|
1020
|
+
|
|
1021
|
+
authenticationType?: AuthenticationType | string;
|
|
1022
|
+
|
|
1023
|
+
userPoolConfig?: UserPoolConfig;
|
|
1024
|
+
|
|
1025
|
+
openIDConnectConfig?: OpenIDConnectConfig;
|
|
1026
|
+
|
|
1027
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
1028
|
+
|
|
1029
|
+
xrayEnabled?: boolean;
|
|
1030
|
+
|
|
1031
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
1032
|
+
}
|
|
1033
|
+
export interface UpdateGraphqlApiResponse {
|
|
1034
|
+
graphqlApi?: GraphqlApi;
|
|
1035
|
+
}
|
|
1036
|
+
export interface UpdateResolverRequest {
|
|
1037
|
+
apiId: string | undefined;
|
|
1038
|
+
|
|
1039
|
+
typeName: string | undefined;
|
|
1040
|
+
|
|
1041
|
+
fieldName: string | undefined;
|
|
1042
|
+
|
|
1043
|
+
dataSourceName?: string;
|
|
1044
|
+
|
|
1045
|
+
requestMappingTemplate?: string;
|
|
1046
|
+
|
|
1047
|
+
responseMappingTemplate?: string;
|
|
1048
|
+
|
|
1049
|
+
kind?: ResolverKind | string;
|
|
1050
|
+
|
|
1051
|
+
pipelineConfig?: PipelineConfig;
|
|
1052
|
+
|
|
1053
|
+
syncConfig?: SyncConfig;
|
|
1054
|
+
|
|
1055
|
+
cachingConfig?: CachingConfig;
|
|
1056
|
+
|
|
1057
|
+
maxBatchSize?: number;
|
|
1058
|
+
}
|
|
1059
|
+
export interface UpdateResolverResponse {
|
|
1060
|
+
resolver?: Resolver;
|
|
1061
|
+
}
|
|
1062
|
+
export interface UpdateTypeRequest {
|
|
1063
|
+
apiId: string | undefined;
|
|
1064
|
+
|
|
1065
|
+
typeName: string | undefined;
|
|
1066
|
+
|
|
1067
|
+
definition?: string;
|
|
1068
|
+
|
|
1069
|
+
format: TypeDefinitionFormat | string | undefined;
|
|
1070
|
+
}
|
|
1071
|
+
export interface UpdateTypeResponse {
|
|
1072
|
+
type?: Type;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
export declare const LambdaAuthorizerConfigFilterSensitiveLog: (
|
|
1076
|
+
obj: LambdaAuthorizerConfig
|
|
1077
|
+
) => any;
|
|
1078
|
+
|
|
1079
|
+
export declare const OpenIDConnectConfigFilterSensitiveLog: (
|
|
1080
|
+
obj: OpenIDConnectConfig
|
|
1081
|
+
) => any;
|
|
1082
|
+
|
|
1083
|
+
export declare const CognitoUserPoolConfigFilterSensitiveLog: (
|
|
1084
|
+
obj: CognitoUserPoolConfig
|
|
1085
|
+
) => any;
|
|
1086
|
+
|
|
1087
|
+
export declare const AdditionalAuthenticationProviderFilterSensitiveLog: (
|
|
1088
|
+
obj: AdditionalAuthenticationProvider
|
|
1089
|
+
) => any;
|
|
1090
|
+
|
|
1091
|
+
export declare const ApiAssociationFilterSensitiveLog: (
|
|
1092
|
+
obj: ApiAssociation
|
|
1093
|
+
) => any;
|
|
1094
|
+
|
|
1095
|
+
export declare const ApiCacheFilterSensitiveLog: (obj: ApiCache) => any;
|
|
1096
|
+
|
|
1097
|
+
export declare const ApiKeyFilterSensitiveLog: (obj: ApiKey) => any;
|
|
1098
|
+
|
|
1099
|
+
export declare const AssociateApiRequestFilterSensitiveLog: (
|
|
1100
|
+
obj: AssociateApiRequest
|
|
1101
|
+
) => any;
|
|
1102
|
+
|
|
1103
|
+
export declare const AssociateApiResponseFilterSensitiveLog: (
|
|
1104
|
+
obj: AssociateApiResponse
|
|
1105
|
+
) => any;
|
|
1106
|
+
|
|
1107
|
+
export declare const AwsIamConfigFilterSensitiveLog: (obj: AwsIamConfig) => any;
|
|
1108
|
+
|
|
1109
|
+
export declare const AuthorizationConfigFilterSensitiveLog: (
|
|
1110
|
+
obj: AuthorizationConfig
|
|
1111
|
+
) => any;
|
|
1112
|
+
|
|
1113
|
+
export declare const CreateApiCacheRequestFilterSensitiveLog: (
|
|
1114
|
+
obj: CreateApiCacheRequest
|
|
1115
|
+
) => any;
|
|
1116
|
+
|
|
1117
|
+
export declare const CreateApiCacheResponseFilterSensitiveLog: (
|
|
1118
|
+
obj: CreateApiCacheResponse
|
|
1119
|
+
) => any;
|
|
1120
|
+
|
|
1121
|
+
export declare const CreateApiKeyRequestFilterSensitiveLog: (
|
|
1122
|
+
obj: CreateApiKeyRequest
|
|
1123
|
+
) => any;
|
|
1124
|
+
|
|
1125
|
+
export declare const CreateApiKeyResponseFilterSensitiveLog: (
|
|
1126
|
+
obj: CreateApiKeyResponse
|
|
1127
|
+
) => any;
|
|
1128
|
+
|
|
1129
|
+
export declare const DeltaSyncConfigFilterSensitiveLog: (
|
|
1130
|
+
obj: DeltaSyncConfig
|
|
1131
|
+
) => any;
|
|
1132
|
+
|
|
1133
|
+
export declare const DynamodbDataSourceConfigFilterSensitiveLog: (
|
|
1134
|
+
obj: DynamodbDataSourceConfig
|
|
1135
|
+
) => any;
|
|
1136
|
+
|
|
1137
|
+
export declare const ElasticsearchDataSourceConfigFilterSensitiveLog: (
|
|
1138
|
+
obj: ElasticsearchDataSourceConfig
|
|
1139
|
+
) => any;
|
|
1140
|
+
|
|
1141
|
+
export declare const HttpDataSourceConfigFilterSensitiveLog: (
|
|
1142
|
+
obj: HttpDataSourceConfig
|
|
1143
|
+
) => any;
|
|
1144
|
+
|
|
1145
|
+
export declare const LambdaDataSourceConfigFilterSensitiveLog: (
|
|
1146
|
+
obj: LambdaDataSourceConfig
|
|
1147
|
+
) => any;
|
|
1148
|
+
|
|
1149
|
+
export declare const OpenSearchServiceDataSourceConfigFilterSensitiveLog: (
|
|
1150
|
+
obj: OpenSearchServiceDataSourceConfig
|
|
1151
|
+
) => any;
|
|
1152
|
+
|
|
1153
|
+
export declare const RdsHttpEndpointConfigFilterSensitiveLog: (
|
|
1154
|
+
obj: RdsHttpEndpointConfig
|
|
1155
|
+
) => any;
|
|
1156
|
+
|
|
1157
|
+
export declare const RelationalDatabaseDataSourceConfigFilterSensitiveLog: (
|
|
1158
|
+
obj: RelationalDatabaseDataSourceConfig
|
|
1159
|
+
) => any;
|
|
1160
|
+
|
|
1161
|
+
export declare const CreateDataSourceRequestFilterSensitiveLog: (
|
|
1162
|
+
obj: CreateDataSourceRequest
|
|
1163
|
+
) => any;
|
|
1164
|
+
|
|
1165
|
+
export declare const DataSourceFilterSensitiveLog: (obj: DataSource) => any;
|
|
1166
|
+
|
|
1167
|
+
export declare const CreateDataSourceResponseFilterSensitiveLog: (
|
|
1168
|
+
obj: CreateDataSourceResponse
|
|
1169
|
+
) => any;
|
|
1170
|
+
|
|
1171
|
+
export declare const CreateDomainNameRequestFilterSensitiveLog: (
|
|
1172
|
+
obj: CreateDomainNameRequest
|
|
1173
|
+
) => any;
|
|
1174
|
+
|
|
1175
|
+
export declare const DomainNameConfigFilterSensitiveLog: (
|
|
1176
|
+
obj: DomainNameConfig
|
|
1177
|
+
) => any;
|
|
1178
|
+
|
|
1179
|
+
export declare const CreateDomainNameResponseFilterSensitiveLog: (
|
|
1180
|
+
obj: CreateDomainNameResponse
|
|
1181
|
+
) => any;
|
|
1182
|
+
|
|
1183
|
+
export declare const LambdaConflictHandlerConfigFilterSensitiveLog: (
|
|
1184
|
+
obj: LambdaConflictHandlerConfig
|
|
1185
|
+
) => any;
|
|
1186
|
+
|
|
1187
|
+
export declare const SyncConfigFilterSensitiveLog: (obj: SyncConfig) => any;
|
|
1188
|
+
|
|
1189
|
+
export declare const CreateFunctionRequestFilterSensitiveLog: (
|
|
1190
|
+
obj: CreateFunctionRequest
|
|
1191
|
+
) => any;
|
|
1192
|
+
|
|
1193
|
+
export declare const FunctionConfigurationFilterSensitiveLog: (
|
|
1194
|
+
obj: FunctionConfiguration
|
|
1195
|
+
) => any;
|
|
1196
|
+
|
|
1197
|
+
export declare const CreateFunctionResponseFilterSensitiveLog: (
|
|
1198
|
+
obj: CreateFunctionResponse
|
|
1199
|
+
) => any;
|
|
1200
|
+
|
|
1201
|
+
export declare const LogConfigFilterSensitiveLog: (obj: LogConfig) => any;
|
|
1202
|
+
|
|
1203
|
+
export declare const UserPoolConfigFilterSensitiveLog: (
|
|
1204
|
+
obj: UserPoolConfig
|
|
1205
|
+
) => any;
|
|
1206
|
+
|
|
1207
|
+
export declare const CreateGraphqlApiRequestFilterSensitiveLog: (
|
|
1208
|
+
obj: CreateGraphqlApiRequest
|
|
1209
|
+
) => any;
|
|
1210
|
+
|
|
1211
|
+
export declare const GraphqlApiFilterSensitiveLog: (obj: GraphqlApi) => any;
|
|
1212
|
+
|
|
1213
|
+
export declare const CreateGraphqlApiResponseFilterSensitiveLog: (
|
|
1214
|
+
obj: CreateGraphqlApiResponse
|
|
1215
|
+
) => any;
|
|
1216
|
+
|
|
1217
|
+
export declare const CachingConfigFilterSensitiveLog: (
|
|
1218
|
+
obj: CachingConfig
|
|
1219
|
+
) => any;
|
|
1220
|
+
|
|
1221
|
+
export declare const PipelineConfigFilterSensitiveLog: (
|
|
1222
|
+
obj: PipelineConfig
|
|
1223
|
+
) => any;
|
|
1224
|
+
|
|
1225
|
+
export declare const CreateResolverRequestFilterSensitiveLog: (
|
|
1226
|
+
obj: CreateResolverRequest
|
|
1227
|
+
) => any;
|
|
1228
|
+
|
|
1229
|
+
export declare const ResolverFilterSensitiveLog: (obj: Resolver) => any;
|
|
1230
|
+
|
|
1231
|
+
export declare const CreateResolverResponseFilterSensitiveLog: (
|
|
1232
|
+
obj: CreateResolverResponse
|
|
1233
|
+
) => any;
|
|
1234
|
+
|
|
1235
|
+
export declare const CreateTypeRequestFilterSensitiveLog: (
|
|
1236
|
+
obj: CreateTypeRequest
|
|
1237
|
+
) => any;
|
|
1238
|
+
|
|
1239
|
+
export declare const TypeFilterSensitiveLog: (obj: Type) => any;
|
|
1240
|
+
|
|
1241
|
+
export declare const CreateTypeResponseFilterSensitiveLog: (
|
|
1242
|
+
obj: CreateTypeResponse
|
|
1243
|
+
) => any;
|
|
1244
|
+
|
|
1245
|
+
export declare const DeleteApiCacheRequestFilterSensitiveLog: (
|
|
1246
|
+
obj: DeleteApiCacheRequest
|
|
1247
|
+
) => any;
|
|
1248
|
+
|
|
1249
|
+
export declare const DeleteApiCacheResponseFilterSensitiveLog: (
|
|
1250
|
+
obj: DeleteApiCacheResponse
|
|
1251
|
+
) => any;
|
|
1252
|
+
|
|
1253
|
+
export declare const DeleteApiKeyRequestFilterSensitiveLog: (
|
|
1254
|
+
obj: DeleteApiKeyRequest
|
|
1255
|
+
) => any;
|
|
1256
|
+
|
|
1257
|
+
export declare const DeleteApiKeyResponseFilterSensitiveLog: (
|
|
1258
|
+
obj: DeleteApiKeyResponse
|
|
1259
|
+
) => any;
|
|
1260
|
+
|
|
1261
|
+
export declare const DeleteDataSourceRequestFilterSensitiveLog: (
|
|
1262
|
+
obj: DeleteDataSourceRequest
|
|
1263
|
+
) => any;
|
|
1264
|
+
|
|
1265
|
+
export declare const DeleteDataSourceResponseFilterSensitiveLog: (
|
|
1266
|
+
obj: DeleteDataSourceResponse
|
|
1267
|
+
) => any;
|
|
1268
|
+
|
|
1269
|
+
export declare const DeleteDomainNameRequestFilterSensitiveLog: (
|
|
1270
|
+
obj: DeleteDomainNameRequest
|
|
1271
|
+
) => any;
|
|
1272
|
+
|
|
1273
|
+
export declare const DeleteDomainNameResponseFilterSensitiveLog: (
|
|
1274
|
+
obj: DeleteDomainNameResponse
|
|
1275
|
+
) => any;
|
|
1276
|
+
|
|
1277
|
+
export declare const DeleteFunctionRequestFilterSensitiveLog: (
|
|
1278
|
+
obj: DeleteFunctionRequest
|
|
1279
|
+
) => any;
|
|
1280
|
+
|
|
1281
|
+
export declare const DeleteFunctionResponseFilterSensitiveLog: (
|
|
1282
|
+
obj: DeleteFunctionResponse
|
|
1283
|
+
) => any;
|
|
1284
|
+
|
|
1285
|
+
export declare const DeleteGraphqlApiRequestFilterSensitiveLog: (
|
|
1286
|
+
obj: DeleteGraphqlApiRequest
|
|
1287
|
+
) => any;
|
|
1288
|
+
|
|
1289
|
+
export declare const DeleteGraphqlApiResponseFilterSensitiveLog: (
|
|
1290
|
+
obj: DeleteGraphqlApiResponse
|
|
1291
|
+
) => any;
|
|
1292
|
+
|
|
1293
|
+
export declare const DeleteResolverRequestFilterSensitiveLog: (
|
|
1294
|
+
obj: DeleteResolverRequest
|
|
1295
|
+
) => any;
|
|
1296
|
+
|
|
1297
|
+
export declare const DeleteResolverResponseFilterSensitiveLog: (
|
|
1298
|
+
obj: DeleteResolverResponse
|
|
1299
|
+
) => any;
|
|
1300
|
+
|
|
1301
|
+
export declare const DeleteTypeRequestFilterSensitiveLog: (
|
|
1302
|
+
obj: DeleteTypeRequest
|
|
1303
|
+
) => any;
|
|
1304
|
+
|
|
1305
|
+
export declare const DeleteTypeResponseFilterSensitiveLog: (
|
|
1306
|
+
obj: DeleteTypeResponse
|
|
1307
|
+
) => any;
|
|
1308
|
+
|
|
1309
|
+
export declare const DisassociateApiRequestFilterSensitiveLog: (
|
|
1310
|
+
obj: DisassociateApiRequest
|
|
1311
|
+
) => any;
|
|
1312
|
+
|
|
1313
|
+
export declare const DisassociateApiResponseFilterSensitiveLog: (
|
|
1314
|
+
obj: DisassociateApiResponse
|
|
1315
|
+
) => any;
|
|
1316
|
+
|
|
1317
|
+
export declare const EvaluateMappingTemplateRequestFilterSensitiveLog: (
|
|
1318
|
+
obj: EvaluateMappingTemplateRequest
|
|
1319
|
+
) => any;
|
|
1320
|
+
|
|
1321
|
+
export declare const ErrorDetailFilterSensitiveLog: (obj: ErrorDetail) => any;
|
|
1322
|
+
|
|
1323
|
+
export declare const EvaluateMappingTemplateResponseFilterSensitiveLog: (
|
|
1324
|
+
obj: EvaluateMappingTemplateResponse
|
|
1325
|
+
) => any;
|
|
1326
|
+
|
|
1327
|
+
export declare const FlushApiCacheRequestFilterSensitiveLog: (
|
|
1328
|
+
obj: FlushApiCacheRequest
|
|
1329
|
+
) => any;
|
|
1330
|
+
|
|
1331
|
+
export declare const FlushApiCacheResponseFilterSensitiveLog: (
|
|
1332
|
+
obj: FlushApiCacheResponse
|
|
1333
|
+
) => any;
|
|
1334
|
+
|
|
1335
|
+
export declare const GetApiAssociationRequestFilterSensitiveLog: (
|
|
1336
|
+
obj: GetApiAssociationRequest
|
|
1337
|
+
) => any;
|
|
1338
|
+
|
|
1339
|
+
export declare const GetApiAssociationResponseFilterSensitiveLog: (
|
|
1340
|
+
obj: GetApiAssociationResponse
|
|
1341
|
+
) => any;
|
|
1342
|
+
|
|
1343
|
+
export declare const GetApiCacheRequestFilterSensitiveLog: (
|
|
1344
|
+
obj: GetApiCacheRequest
|
|
1345
|
+
) => any;
|
|
1346
|
+
|
|
1347
|
+
export declare const GetApiCacheResponseFilterSensitiveLog: (
|
|
1348
|
+
obj: GetApiCacheResponse
|
|
1349
|
+
) => any;
|
|
1350
|
+
|
|
1351
|
+
export declare const GetDataSourceRequestFilterSensitiveLog: (
|
|
1352
|
+
obj: GetDataSourceRequest
|
|
1353
|
+
) => any;
|
|
1354
|
+
|
|
1355
|
+
export declare const GetDataSourceResponseFilterSensitiveLog: (
|
|
1356
|
+
obj: GetDataSourceResponse
|
|
1357
|
+
) => any;
|
|
1358
|
+
|
|
1359
|
+
export declare const GetDomainNameRequestFilterSensitiveLog: (
|
|
1360
|
+
obj: GetDomainNameRequest
|
|
1361
|
+
) => any;
|
|
1362
|
+
|
|
1363
|
+
export declare const GetDomainNameResponseFilterSensitiveLog: (
|
|
1364
|
+
obj: GetDomainNameResponse
|
|
1365
|
+
) => any;
|
|
1366
|
+
|
|
1367
|
+
export declare const GetFunctionRequestFilterSensitiveLog: (
|
|
1368
|
+
obj: GetFunctionRequest
|
|
1369
|
+
) => any;
|
|
1370
|
+
|
|
1371
|
+
export declare const GetFunctionResponseFilterSensitiveLog: (
|
|
1372
|
+
obj: GetFunctionResponse
|
|
1373
|
+
) => any;
|
|
1374
|
+
|
|
1375
|
+
export declare const GetGraphqlApiRequestFilterSensitiveLog: (
|
|
1376
|
+
obj: GetGraphqlApiRequest
|
|
1377
|
+
) => any;
|
|
1378
|
+
|
|
1379
|
+
export declare const GetGraphqlApiResponseFilterSensitiveLog: (
|
|
1380
|
+
obj: GetGraphqlApiResponse
|
|
1381
|
+
) => any;
|
|
1382
|
+
|
|
1383
|
+
export declare const GetIntrospectionSchemaRequestFilterSensitiveLog: (
|
|
1384
|
+
obj: GetIntrospectionSchemaRequest
|
|
1385
|
+
) => any;
|
|
1386
|
+
|
|
1387
|
+
export declare const GetIntrospectionSchemaResponseFilterSensitiveLog: (
|
|
1388
|
+
obj: GetIntrospectionSchemaResponse
|
|
1389
|
+
) => any;
|
|
1390
|
+
|
|
1391
|
+
export declare const GetResolverRequestFilterSensitiveLog: (
|
|
1392
|
+
obj: GetResolverRequest
|
|
1393
|
+
) => any;
|
|
1394
|
+
|
|
1395
|
+
export declare const GetResolverResponseFilterSensitiveLog: (
|
|
1396
|
+
obj: GetResolverResponse
|
|
1397
|
+
) => any;
|
|
1398
|
+
|
|
1399
|
+
export declare const GetSchemaCreationStatusRequestFilterSensitiveLog: (
|
|
1400
|
+
obj: GetSchemaCreationStatusRequest
|
|
1401
|
+
) => any;
|
|
1402
|
+
|
|
1403
|
+
export declare const GetSchemaCreationStatusResponseFilterSensitiveLog: (
|
|
1404
|
+
obj: GetSchemaCreationStatusResponse
|
|
1405
|
+
) => any;
|
|
1406
|
+
|
|
1407
|
+
export declare const GetTypeRequestFilterSensitiveLog: (
|
|
1408
|
+
obj: GetTypeRequest
|
|
1409
|
+
) => any;
|
|
1410
|
+
|
|
1411
|
+
export declare const GetTypeResponseFilterSensitiveLog: (
|
|
1412
|
+
obj: GetTypeResponse
|
|
1413
|
+
) => any;
|
|
1414
|
+
|
|
1415
|
+
export declare const ListApiKeysRequestFilterSensitiveLog: (
|
|
1416
|
+
obj: ListApiKeysRequest
|
|
1417
|
+
) => any;
|
|
1418
|
+
|
|
1419
|
+
export declare const ListApiKeysResponseFilterSensitiveLog: (
|
|
1420
|
+
obj: ListApiKeysResponse
|
|
1421
|
+
) => any;
|
|
1422
|
+
|
|
1423
|
+
export declare const ListDataSourcesRequestFilterSensitiveLog: (
|
|
1424
|
+
obj: ListDataSourcesRequest
|
|
1425
|
+
) => any;
|
|
1426
|
+
|
|
1427
|
+
export declare const ListDataSourcesResponseFilterSensitiveLog: (
|
|
1428
|
+
obj: ListDataSourcesResponse
|
|
1429
|
+
) => any;
|
|
1430
|
+
|
|
1431
|
+
export declare const ListDomainNamesRequestFilterSensitiveLog: (
|
|
1432
|
+
obj: ListDomainNamesRequest
|
|
1433
|
+
) => any;
|
|
1434
|
+
|
|
1435
|
+
export declare const ListDomainNamesResponseFilterSensitiveLog: (
|
|
1436
|
+
obj: ListDomainNamesResponse
|
|
1437
|
+
) => any;
|
|
1438
|
+
|
|
1439
|
+
export declare const ListFunctionsRequestFilterSensitiveLog: (
|
|
1440
|
+
obj: ListFunctionsRequest
|
|
1441
|
+
) => any;
|
|
1442
|
+
|
|
1443
|
+
export declare const ListFunctionsResponseFilterSensitiveLog: (
|
|
1444
|
+
obj: ListFunctionsResponse
|
|
1445
|
+
) => any;
|
|
1446
|
+
|
|
1447
|
+
export declare const ListGraphqlApisRequestFilterSensitiveLog: (
|
|
1448
|
+
obj: ListGraphqlApisRequest
|
|
1449
|
+
) => any;
|
|
1450
|
+
|
|
1451
|
+
export declare const ListGraphqlApisResponseFilterSensitiveLog: (
|
|
1452
|
+
obj: ListGraphqlApisResponse
|
|
1453
|
+
) => any;
|
|
1454
|
+
|
|
1455
|
+
export declare const ListResolversRequestFilterSensitiveLog: (
|
|
1456
|
+
obj: ListResolversRequest
|
|
1457
|
+
) => any;
|
|
1458
|
+
|
|
1459
|
+
export declare const ListResolversResponseFilterSensitiveLog: (
|
|
1460
|
+
obj: ListResolversResponse
|
|
1461
|
+
) => any;
|
|
1462
|
+
|
|
1463
|
+
export declare const ListResolversByFunctionRequestFilterSensitiveLog: (
|
|
1464
|
+
obj: ListResolversByFunctionRequest
|
|
1465
|
+
) => any;
|
|
1466
|
+
|
|
1467
|
+
export declare const ListResolversByFunctionResponseFilterSensitiveLog: (
|
|
1468
|
+
obj: ListResolversByFunctionResponse
|
|
1469
|
+
) => any;
|
|
1470
|
+
|
|
1471
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1472
|
+
obj: ListTagsForResourceRequest
|
|
1473
|
+
) => any;
|
|
1474
|
+
|
|
1475
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1476
|
+
obj: ListTagsForResourceResponse
|
|
1477
|
+
) => any;
|
|
1478
|
+
|
|
1479
|
+
export declare const ListTypesRequestFilterSensitiveLog: (
|
|
1480
|
+
obj: ListTypesRequest
|
|
1481
|
+
) => any;
|
|
1482
|
+
|
|
1483
|
+
export declare const ListTypesResponseFilterSensitiveLog: (
|
|
1484
|
+
obj: ListTypesResponse
|
|
1485
|
+
) => any;
|
|
1486
|
+
|
|
1487
|
+
export declare const StartSchemaCreationRequestFilterSensitiveLog: (
|
|
1488
|
+
obj: StartSchemaCreationRequest
|
|
1489
|
+
) => any;
|
|
1490
|
+
|
|
1491
|
+
export declare const StartSchemaCreationResponseFilterSensitiveLog: (
|
|
1492
|
+
obj: StartSchemaCreationResponse
|
|
1493
|
+
) => any;
|
|
1494
|
+
|
|
1495
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1496
|
+
obj: TagResourceRequest
|
|
1497
|
+
) => any;
|
|
1498
|
+
|
|
1499
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1500
|
+
obj: TagResourceResponse
|
|
1501
|
+
) => any;
|
|
1502
|
+
|
|
1503
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1504
|
+
obj: UntagResourceRequest
|
|
1505
|
+
) => any;
|
|
1506
|
+
|
|
1507
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1508
|
+
obj: UntagResourceResponse
|
|
1509
|
+
) => any;
|
|
1510
|
+
|
|
1511
|
+
export declare const UpdateApiCacheRequestFilterSensitiveLog: (
|
|
1512
|
+
obj: UpdateApiCacheRequest
|
|
1513
|
+
) => any;
|
|
1514
|
+
|
|
1515
|
+
export declare const UpdateApiCacheResponseFilterSensitiveLog: (
|
|
1516
|
+
obj: UpdateApiCacheResponse
|
|
1517
|
+
) => any;
|
|
1518
|
+
|
|
1519
|
+
export declare const UpdateApiKeyRequestFilterSensitiveLog: (
|
|
1520
|
+
obj: UpdateApiKeyRequest
|
|
1521
|
+
) => any;
|
|
1522
|
+
|
|
1523
|
+
export declare const UpdateApiKeyResponseFilterSensitiveLog: (
|
|
1524
|
+
obj: UpdateApiKeyResponse
|
|
1525
|
+
) => any;
|
|
1526
|
+
|
|
1527
|
+
export declare const UpdateDataSourceRequestFilterSensitiveLog: (
|
|
1528
|
+
obj: UpdateDataSourceRequest
|
|
1529
|
+
) => any;
|
|
1530
|
+
|
|
1531
|
+
export declare const UpdateDataSourceResponseFilterSensitiveLog: (
|
|
1532
|
+
obj: UpdateDataSourceResponse
|
|
1533
|
+
) => any;
|
|
1534
|
+
|
|
1535
|
+
export declare const UpdateDomainNameRequestFilterSensitiveLog: (
|
|
1536
|
+
obj: UpdateDomainNameRequest
|
|
1537
|
+
) => any;
|
|
1538
|
+
|
|
1539
|
+
export declare const UpdateDomainNameResponseFilterSensitiveLog: (
|
|
1540
|
+
obj: UpdateDomainNameResponse
|
|
1541
|
+
) => any;
|
|
1542
|
+
|
|
1543
|
+
export declare const UpdateFunctionRequestFilterSensitiveLog: (
|
|
1544
|
+
obj: UpdateFunctionRequest
|
|
1545
|
+
) => any;
|
|
1546
|
+
|
|
1547
|
+
export declare const UpdateFunctionResponseFilterSensitiveLog: (
|
|
1548
|
+
obj: UpdateFunctionResponse
|
|
1549
|
+
) => any;
|
|
1550
|
+
|
|
1551
|
+
export declare const UpdateGraphqlApiRequestFilterSensitiveLog: (
|
|
1552
|
+
obj: UpdateGraphqlApiRequest
|
|
1553
|
+
) => any;
|
|
1554
|
+
|
|
1555
|
+
export declare const UpdateGraphqlApiResponseFilterSensitiveLog: (
|
|
1556
|
+
obj: UpdateGraphqlApiResponse
|
|
1557
|
+
) => any;
|
|
1558
|
+
|
|
1559
|
+
export declare const UpdateResolverRequestFilterSensitiveLog: (
|
|
1560
|
+
obj: UpdateResolverRequest
|
|
1561
|
+
) => any;
|
|
1562
|
+
|
|
1563
|
+
export declare const UpdateResolverResponseFilterSensitiveLog: (
|
|
1564
|
+
obj: UpdateResolverResponse
|
|
1565
|
+
) => any;
|
|
1566
|
+
|
|
1567
|
+
export declare const UpdateTypeRequestFilterSensitiveLog: (
|
|
1568
|
+
obj: UpdateTypeRequest
|
|
1569
|
+
) => any;
|
|
1570
|
+
|
|
1571
|
+
export declare const UpdateTypeResponseFilterSensitiveLog: (
|
|
1572
|
+
obj: UpdateTypeResponse
|
|
1573
|
+
) => any;
|