@aws-sdk/client-rds-data 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/RDSData.d.ts +112 -35
- package/dist-types/ts3.4/RDSDataClient.d.ts +165 -79
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BeginTransactionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CommitTransactionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ExecuteSqlCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RollbackTransactionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- 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/RDSDataServiceException.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 +708 -674
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -20
- 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,674 +1,708 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
|
|
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
|
-
|
|
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
|
-
export
|
|
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
|
-
export declare type ArrayValue =
|
|
178
|
-
|
|
179
|
-
|
|
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
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
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
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
export
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
export declare const
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
export declare const
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
export declare const
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
export declare const
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
export declare const
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
export declare const
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
export declare const
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
export declare const
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
export declare const
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
export declare const
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
export declare const
|
|
671
|
-
|
|
672
|
-
export declare const
|
|
673
|
-
|
|
674
|
-
export declare const
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
|
|
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
|
+
|
|
13
|
+
export declare class BadRequestException extends __BaseException {
|
|
14
|
+
readonly name: "BadRequestException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
|
|
17
|
+
constructor(
|
|
18
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
export declare enum TypeHint {
|
|
22
|
+
DATE = "DATE",
|
|
23
|
+
DECIMAL = "DECIMAL",
|
|
24
|
+
JSON = "JSON",
|
|
25
|
+
TIME = "TIME",
|
|
26
|
+
TIMESTAMP = "TIMESTAMP",
|
|
27
|
+
UUID = "UUID",
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export declare class ForbiddenException extends __BaseException {
|
|
31
|
+
readonly name: "ForbiddenException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
|
|
34
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
38
|
+
readonly name: "InternalServerErrorException";
|
|
39
|
+
readonly $fault: "server";
|
|
40
|
+
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export declare class ServiceUnavailableError extends __BaseException {
|
|
47
|
+
readonly name: "ServiceUnavailableError";
|
|
48
|
+
readonly $fault: "server";
|
|
49
|
+
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export declare class StatementTimeoutException extends __BaseException {
|
|
56
|
+
readonly name: "StatementTimeoutException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
|
|
59
|
+
dbConnectionId?: number;
|
|
60
|
+
|
|
61
|
+
constructor(
|
|
62
|
+
opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export interface BeginTransactionRequest {
|
|
67
|
+
resourceArn: string | undefined;
|
|
68
|
+
|
|
69
|
+
secretArn: string | undefined;
|
|
70
|
+
|
|
71
|
+
database?: string;
|
|
72
|
+
|
|
73
|
+
schema?: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface BeginTransactionResponse {
|
|
77
|
+
transactionId?: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export interface ColumnMetadata {
|
|
81
|
+
name?: string;
|
|
82
|
+
|
|
83
|
+
type?: number;
|
|
84
|
+
|
|
85
|
+
typeName?: string;
|
|
86
|
+
|
|
87
|
+
label?: string;
|
|
88
|
+
|
|
89
|
+
schemaName?: string;
|
|
90
|
+
|
|
91
|
+
tableName?: string;
|
|
92
|
+
|
|
93
|
+
isAutoIncrement?: boolean;
|
|
94
|
+
|
|
95
|
+
isSigned?: boolean;
|
|
96
|
+
|
|
97
|
+
isCurrency?: boolean;
|
|
98
|
+
|
|
99
|
+
isCaseSensitive?: boolean;
|
|
100
|
+
|
|
101
|
+
nullable?: number;
|
|
102
|
+
|
|
103
|
+
precision?: number;
|
|
104
|
+
|
|
105
|
+
scale?: number;
|
|
106
|
+
|
|
107
|
+
arrayBaseColumnType?: number;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface CommitTransactionRequest {
|
|
111
|
+
resourceArn: string | undefined;
|
|
112
|
+
|
|
113
|
+
secretArn: string | undefined;
|
|
114
|
+
|
|
115
|
+
transactionId: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export interface CommitTransactionResponse {
|
|
119
|
+
transactionStatus?: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export declare class NotFoundException extends __BaseException {
|
|
123
|
+
readonly name: "NotFoundException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
|
|
126
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
127
|
+
}
|
|
128
|
+
export declare enum DecimalReturnType {
|
|
129
|
+
DOUBLE_OR_LONG = "DOUBLE_OR_LONG",
|
|
130
|
+
STRING = "STRING",
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface ExecuteSqlRequest {
|
|
134
|
+
dbClusterOrInstanceArn: string | undefined;
|
|
135
|
+
|
|
136
|
+
awsSecretStoreArn: string | undefined;
|
|
137
|
+
|
|
138
|
+
sqlStatements: string | undefined;
|
|
139
|
+
|
|
140
|
+
database?: string;
|
|
141
|
+
|
|
142
|
+
schema?: string;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface ResultSetMetadata {
|
|
146
|
+
columnCount?: number;
|
|
147
|
+
|
|
148
|
+
columnMetadata?: ColumnMetadata[];
|
|
149
|
+
}
|
|
150
|
+
export declare enum RecordsFormatType {
|
|
151
|
+
JSON = "JSON",
|
|
152
|
+
NONE = "NONE",
|
|
153
|
+
}
|
|
154
|
+
export declare enum LongReturnType {
|
|
155
|
+
LONG = "LONG",
|
|
156
|
+
STRING = "STRING",
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export interface ResultSetOptions {
|
|
160
|
+
decimalReturnType?: DecimalReturnType | string;
|
|
161
|
+
|
|
162
|
+
longReturnType?: LongReturnType | string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface RollbackTransactionRequest {
|
|
166
|
+
resourceArn: string | undefined;
|
|
167
|
+
|
|
168
|
+
secretArn: string | undefined;
|
|
169
|
+
|
|
170
|
+
transactionId: string | undefined;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface RollbackTransactionResponse {
|
|
174
|
+
transactionStatus?: string;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export declare type ArrayValue =
|
|
178
|
+
| ArrayValue.ArrayValuesMember
|
|
179
|
+
| ArrayValue.BooleanValuesMember
|
|
180
|
+
| ArrayValue.DoubleValuesMember
|
|
181
|
+
| ArrayValue.LongValuesMember
|
|
182
|
+
| ArrayValue.StringValuesMember
|
|
183
|
+
| ArrayValue.$UnknownMember;
|
|
184
|
+
export declare namespace ArrayValue {
|
|
185
|
+
interface BooleanValuesMember {
|
|
186
|
+
booleanValues: boolean[];
|
|
187
|
+
longValues?: never;
|
|
188
|
+
doubleValues?: never;
|
|
189
|
+
stringValues?: never;
|
|
190
|
+
arrayValues?: never;
|
|
191
|
+
$unknown?: never;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
interface LongValuesMember {
|
|
195
|
+
booleanValues?: never;
|
|
196
|
+
longValues: number[];
|
|
197
|
+
doubleValues?: never;
|
|
198
|
+
stringValues?: never;
|
|
199
|
+
arrayValues?: never;
|
|
200
|
+
$unknown?: never;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
interface DoubleValuesMember {
|
|
204
|
+
booleanValues?: never;
|
|
205
|
+
longValues?: never;
|
|
206
|
+
doubleValues: number[];
|
|
207
|
+
stringValues?: never;
|
|
208
|
+
arrayValues?: never;
|
|
209
|
+
$unknown?: never;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
interface StringValuesMember {
|
|
213
|
+
booleanValues?: never;
|
|
214
|
+
longValues?: never;
|
|
215
|
+
doubleValues?: never;
|
|
216
|
+
stringValues: string[];
|
|
217
|
+
arrayValues?: never;
|
|
218
|
+
$unknown?: never;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
interface ArrayValuesMember {
|
|
222
|
+
booleanValues?: never;
|
|
223
|
+
longValues?: never;
|
|
224
|
+
doubleValues?: never;
|
|
225
|
+
stringValues?: never;
|
|
226
|
+
arrayValues: ArrayValue[];
|
|
227
|
+
$unknown?: never;
|
|
228
|
+
}
|
|
229
|
+
interface $UnknownMember {
|
|
230
|
+
booleanValues?: never;
|
|
231
|
+
longValues?: never;
|
|
232
|
+
doubleValues?: never;
|
|
233
|
+
stringValues?: never;
|
|
234
|
+
arrayValues?: never;
|
|
235
|
+
$unknown: [string, any];
|
|
236
|
+
}
|
|
237
|
+
interface Visitor<T> {
|
|
238
|
+
booleanValues: (value: boolean[]) => T;
|
|
239
|
+
longValues: (value: number[]) => T;
|
|
240
|
+
doubleValues: (value: number[]) => T;
|
|
241
|
+
stringValues: (value: string[]) => T;
|
|
242
|
+
arrayValues: (value: ArrayValue[]) => T;
|
|
243
|
+
_: (name: string, value: any) => T;
|
|
244
|
+
}
|
|
245
|
+
const visit: <T>(value: ArrayValue, visitor: Visitor<T>) => T;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
export declare type Field =
|
|
249
|
+
| Field.ArrayValueMember
|
|
250
|
+
| Field.BlobValueMember
|
|
251
|
+
| Field.BooleanValueMember
|
|
252
|
+
| Field.DoubleValueMember
|
|
253
|
+
| Field.IsNullMember
|
|
254
|
+
| Field.LongValueMember
|
|
255
|
+
| Field.StringValueMember
|
|
256
|
+
| Field.$UnknownMember;
|
|
257
|
+
export declare namespace Field {
|
|
258
|
+
interface IsNullMember {
|
|
259
|
+
isNull: boolean;
|
|
260
|
+
booleanValue?: never;
|
|
261
|
+
longValue?: never;
|
|
262
|
+
doubleValue?: never;
|
|
263
|
+
stringValue?: never;
|
|
264
|
+
blobValue?: never;
|
|
265
|
+
arrayValue?: never;
|
|
266
|
+
$unknown?: never;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
interface BooleanValueMember {
|
|
270
|
+
isNull?: never;
|
|
271
|
+
booleanValue: boolean;
|
|
272
|
+
longValue?: never;
|
|
273
|
+
doubleValue?: never;
|
|
274
|
+
stringValue?: never;
|
|
275
|
+
blobValue?: never;
|
|
276
|
+
arrayValue?: never;
|
|
277
|
+
$unknown?: never;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
interface LongValueMember {
|
|
281
|
+
isNull?: never;
|
|
282
|
+
booleanValue?: never;
|
|
283
|
+
longValue: number;
|
|
284
|
+
doubleValue?: never;
|
|
285
|
+
stringValue?: never;
|
|
286
|
+
blobValue?: never;
|
|
287
|
+
arrayValue?: never;
|
|
288
|
+
$unknown?: never;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
interface DoubleValueMember {
|
|
292
|
+
isNull?: never;
|
|
293
|
+
booleanValue?: never;
|
|
294
|
+
longValue?: never;
|
|
295
|
+
doubleValue: number;
|
|
296
|
+
stringValue?: never;
|
|
297
|
+
blobValue?: never;
|
|
298
|
+
arrayValue?: never;
|
|
299
|
+
$unknown?: never;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
interface StringValueMember {
|
|
303
|
+
isNull?: never;
|
|
304
|
+
booleanValue?: never;
|
|
305
|
+
longValue?: never;
|
|
306
|
+
doubleValue?: never;
|
|
307
|
+
stringValue: string;
|
|
308
|
+
blobValue?: never;
|
|
309
|
+
arrayValue?: never;
|
|
310
|
+
$unknown?: never;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
interface BlobValueMember {
|
|
314
|
+
isNull?: never;
|
|
315
|
+
booleanValue?: never;
|
|
316
|
+
longValue?: never;
|
|
317
|
+
doubleValue?: never;
|
|
318
|
+
stringValue?: never;
|
|
319
|
+
blobValue: Uint8Array;
|
|
320
|
+
arrayValue?: never;
|
|
321
|
+
$unknown?: never;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
interface ArrayValueMember {
|
|
325
|
+
isNull?: never;
|
|
326
|
+
booleanValue?: never;
|
|
327
|
+
longValue?: never;
|
|
328
|
+
doubleValue?: never;
|
|
329
|
+
stringValue?: never;
|
|
330
|
+
blobValue?: never;
|
|
331
|
+
arrayValue: ArrayValue;
|
|
332
|
+
$unknown?: never;
|
|
333
|
+
}
|
|
334
|
+
interface $UnknownMember {
|
|
335
|
+
isNull?: never;
|
|
336
|
+
booleanValue?: never;
|
|
337
|
+
longValue?: never;
|
|
338
|
+
doubleValue?: never;
|
|
339
|
+
stringValue?: never;
|
|
340
|
+
blobValue?: never;
|
|
341
|
+
arrayValue?: never;
|
|
342
|
+
$unknown: [string, any];
|
|
343
|
+
}
|
|
344
|
+
interface Visitor<T> {
|
|
345
|
+
isNull: (value: boolean) => T;
|
|
346
|
+
booleanValue: (value: boolean) => T;
|
|
347
|
+
longValue: (value: number) => T;
|
|
348
|
+
doubleValue: (value: number) => T;
|
|
349
|
+
stringValue: (value: string) => T;
|
|
350
|
+
blobValue: (value: Uint8Array) => T;
|
|
351
|
+
arrayValue: (value: ArrayValue) => T;
|
|
352
|
+
_: (name: string, value: any) => T;
|
|
353
|
+
}
|
|
354
|
+
const visit: <T>(value: Field, visitor: Visitor<T>) => T;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export interface SqlParameter {
|
|
358
|
+
name?: string;
|
|
359
|
+
|
|
360
|
+
value?: Field;
|
|
361
|
+
|
|
362
|
+
typeHint?: TypeHint | string;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
export interface UpdateResult {
|
|
366
|
+
generatedFields?: Field[];
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export declare type Value =
|
|
370
|
+
| Value.ArrayValuesMember
|
|
371
|
+
| Value.BigIntValueMember
|
|
372
|
+
| Value.BitValueMember
|
|
373
|
+
| Value.BlobValueMember
|
|
374
|
+
| Value.DoubleValueMember
|
|
375
|
+
| Value.IntValueMember
|
|
376
|
+
| Value.IsNullMember
|
|
377
|
+
| Value.RealValueMember
|
|
378
|
+
| Value.StringValueMember
|
|
379
|
+
| Value.StructValueMember
|
|
380
|
+
| Value.$UnknownMember;
|
|
381
|
+
export declare namespace Value {
|
|
382
|
+
interface IsNullMember {
|
|
383
|
+
isNull: boolean;
|
|
384
|
+
bitValue?: never;
|
|
385
|
+
bigIntValue?: never;
|
|
386
|
+
intValue?: never;
|
|
387
|
+
doubleValue?: never;
|
|
388
|
+
realValue?: never;
|
|
389
|
+
stringValue?: never;
|
|
390
|
+
blobValue?: never;
|
|
391
|
+
arrayValues?: never;
|
|
392
|
+
structValue?: never;
|
|
393
|
+
$unknown?: never;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
interface BitValueMember {
|
|
397
|
+
isNull?: never;
|
|
398
|
+
bitValue: boolean;
|
|
399
|
+
bigIntValue?: never;
|
|
400
|
+
intValue?: never;
|
|
401
|
+
doubleValue?: never;
|
|
402
|
+
realValue?: never;
|
|
403
|
+
stringValue?: never;
|
|
404
|
+
blobValue?: never;
|
|
405
|
+
arrayValues?: never;
|
|
406
|
+
structValue?: never;
|
|
407
|
+
$unknown?: never;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
interface BigIntValueMember {
|
|
411
|
+
isNull?: never;
|
|
412
|
+
bitValue?: never;
|
|
413
|
+
bigIntValue: number;
|
|
414
|
+
intValue?: never;
|
|
415
|
+
doubleValue?: never;
|
|
416
|
+
realValue?: never;
|
|
417
|
+
stringValue?: never;
|
|
418
|
+
blobValue?: never;
|
|
419
|
+
arrayValues?: never;
|
|
420
|
+
structValue?: never;
|
|
421
|
+
$unknown?: never;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
interface IntValueMember {
|
|
425
|
+
isNull?: never;
|
|
426
|
+
bitValue?: never;
|
|
427
|
+
bigIntValue?: never;
|
|
428
|
+
intValue: number;
|
|
429
|
+
doubleValue?: never;
|
|
430
|
+
realValue?: never;
|
|
431
|
+
stringValue?: never;
|
|
432
|
+
blobValue?: never;
|
|
433
|
+
arrayValues?: never;
|
|
434
|
+
structValue?: never;
|
|
435
|
+
$unknown?: never;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
interface DoubleValueMember {
|
|
439
|
+
isNull?: never;
|
|
440
|
+
bitValue?: never;
|
|
441
|
+
bigIntValue?: never;
|
|
442
|
+
intValue?: never;
|
|
443
|
+
doubleValue: number;
|
|
444
|
+
realValue?: never;
|
|
445
|
+
stringValue?: never;
|
|
446
|
+
blobValue?: never;
|
|
447
|
+
arrayValues?: never;
|
|
448
|
+
structValue?: never;
|
|
449
|
+
$unknown?: never;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
interface RealValueMember {
|
|
453
|
+
isNull?: never;
|
|
454
|
+
bitValue?: never;
|
|
455
|
+
bigIntValue?: never;
|
|
456
|
+
intValue?: never;
|
|
457
|
+
doubleValue?: never;
|
|
458
|
+
realValue: number;
|
|
459
|
+
stringValue?: never;
|
|
460
|
+
blobValue?: never;
|
|
461
|
+
arrayValues?: never;
|
|
462
|
+
structValue?: never;
|
|
463
|
+
$unknown?: never;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
interface StringValueMember {
|
|
467
|
+
isNull?: never;
|
|
468
|
+
bitValue?: never;
|
|
469
|
+
bigIntValue?: never;
|
|
470
|
+
intValue?: never;
|
|
471
|
+
doubleValue?: never;
|
|
472
|
+
realValue?: never;
|
|
473
|
+
stringValue: string;
|
|
474
|
+
blobValue?: never;
|
|
475
|
+
arrayValues?: never;
|
|
476
|
+
structValue?: never;
|
|
477
|
+
$unknown?: never;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
interface BlobValueMember {
|
|
481
|
+
isNull?: never;
|
|
482
|
+
bitValue?: never;
|
|
483
|
+
bigIntValue?: never;
|
|
484
|
+
intValue?: never;
|
|
485
|
+
doubleValue?: never;
|
|
486
|
+
realValue?: never;
|
|
487
|
+
stringValue?: never;
|
|
488
|
+
blobValue: Uint8Array;
|
|
489
|
+
arrayValues?: never;
|
|
490
|
+
structValue?: never;
|
|
491
|
+
$unknown?: never;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
interface ArrayValuesMember {
|
|
495
|
+
isNull?: never;
|
|
496
|
+
bitValue?: never;
|
|
497
|
+
bigIntValue?: never;
|
|
498
|
+
intValue?: never;
|
|
499
|
+
doubleValue?: never;
|
|
500
|
+
realValue?: never;
|
|
501
|
+
stringValue?: never;
|
|
502
|
+
blobValue?: never;
|
|
503
|
+
arrayValues: Value[];
|
|
504
|
+
structValue?: never;
|
|
505
|
+
$unknown?: never;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
interface StructValueMember {
|
|
509
|
+
isNull?: never;
|
|
510
|
+
bitValue?: never;
|
|
511
|
+
bigIntValue?: never;
|
|
512
|
+
intValue?: never;
|
|
513
|
+
doubleValue?: never;
|
|
514
|
+
realValue?: never;
|
|
515
|
+
stringValue?: never;
|
|
516
|
+
blobValue?: never;
|
|
517
|
+
arrayValues?: never;
|
|
518
|
+
structValue: StructValue;
|
|
519
|
+
$unknown?: never;
|
|
520
|
+
}
|
|
521
|
+
interface $UnknownMember {
|
|
522
|
+
isNull?: never;
|
|
523
|
+
bitValue?: never;
|
|
524
|
+
bigIntValue?: never;
|
|
525
|
+
intValue?: never;
|
|
526
|
+
doubleValue?: never;
|
|
527
|
+
realValue?: never;
|
|
528
|
+
stringValue?: never;
|
|
529
|
+
blobValue?: never;
|
|
530
|
+
arrayValues?: never;
|
|
531
|
+
structValue?: never;
|
|
532
|
+
$unknown: [string, any];
|
|
533
|
+
}
|
|
534
|
+
interface Visitor<T> {
|
|
535
|
+
isNull: (value: boolean) => T;
|
|
536
|
+
bitValue: (value: boolean) => T;
|
|
537
|
+
bigIntValue: (value: number) => T;
|
|
538
|
+
intValue: (value: number) => T;
|
|
539
|
+
doubleValue: (value: number) => T;
|
|
540
|
+
realValue: (value: number) => T;
|
|
541
|
+
stringValue: (value: string) => T;
|
|
542
|
+
blobValue: (value: Uint8Array) => T;
|
|
543
|
+
arrayValues: (value: Value[]) => T;
|
|
544
|
+
structValue: (value: StructValue) => T;
|
|
545
|
+
_: (name: string, value: any) => T;
|
|
546
|
+
}
|
|
547
|
+
const visit: <T>(value: Value, visitor: Visitor<T>) => T;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
export interface ExecuteStatementRequest {
|
|
551
|
+
resourceArn: string | undefined;
|
|
552
|
+
|
|
553
|
+
secretArn: string | undefined;
|
|
554
|
+
|
|
555
|
+
sql: string | undefined;
|
|
556
|
+
|
|
557
|
+
database?: string;
|
|
558
|
+
|
|
559
|
+
schema?: string;
|
|
560
|
+
|
|
561
|
+
parameters?: SqlParameter[];
|
|
562
|
+
|
|
563
|
+
transactionId?: string;
|
|
564
|
+
|
|
565
|
+
includeResultMetadata?: boolean;
|
|
566
|
+
|
|
567
|
+
continueAfterTimeout?: boolean;
|
|
568
|
+
|
|
569
|
+
resultSetOptions?: ResultSetOptions;
|
|
570
|
+
|
|
571
|
+
formatRecordsAs?: RecordsFormatType | string;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
export interface StructValue {
|
|
575
|
+
attributes?: Value[];
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export interface BatchExecuteStatementRequest {
|
|
579
|
+
resourceArn: string | undefined;
|
|
580
|
+
|
|
581
|
+
secretArn: string | undefined;
|
|
582
|
+
|
|
583
|
+
sql: string | undefined;
|
|
584
|
+
|
|
585
|
+
database?: string;
|
|
586
|
+
|
|
587
|
+
schema?: string;
|
|
588
|
+
|
|
589
|
+
parameterSets?: SqlParameter[][];
|
|
590
|
+
|
|
591
|
+
transactionId?: string;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
export interface BatchExecuteStatementResponse {
|
|
595
|
+
updateResults?: UpdateResult[];
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
export interface _Record {
|
|
599
|
+
values?: Value[];
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
export interface ExecuteStatementResponse {
|
|
603
|
+
records?: Field[][];
|
|
604
|
+
|
|
605
|
+
columnMetadata?: ColumnMetadata[];
|
|
606
|
+
|
|
607
|
+
numberOfRecordsUpdated?: number;
|
|
608
|
+
|
|
609
|
+
generatedFields?: Field[];
|
|
610
|
+
|
|
611
|
+
formattedRecords?: string;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
export interface ResultFrame {
|
|
615
|
+
resultSetMetadata?: ResultSetMetadata;
|
|
616
|
+
|
|
617
|
+
records?: _Record[];
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
export interface SqlStatementResult {
|
|
621
|
+
resultFrame?: ResultFrame;
|
|
622
|
+
|
|
623
|
+
numberOfRecordsUpdated?: number;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
export interface ExecuteSqlResponse {
|
|
627
|
+
sqlStatementResults?: SqlStatementResult[];
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
export declare const BeginTransactionRequestFilterSensitiveLog: (
|
|
631
|
+
obj: BeginTransactionRequest
|
|
632
|
+
) => any;
|
|
633
|
+
|
|
634
|
+
export declare const BeginTransactionResponseFilterSensitiveLog: (
|
|
635
|
+
obj: BeginTransactionResponse
|
|
636
|
+
) => any;
|
|
637
|
+
|
|
638
|
+
export declare const ColumnMetadataFilterSensitiveLog: (
|
|
639
|
+
obj: ColumnMetadata
|
|
640
|
+
) => any;
|
|
641
|
+
|
|
642
|
+
export declare const CommitTransactionRequestFilterSensitiveLog: (
|
|
643
|
+
obj: CommitTransactionRequest
|
|
644
|
+
) => any;
|
|
645
|
+
|
|
646
|
+
export declare const CommitTransactionResponseFilterSensitiveLog: (
|
|
647
|
+
obj: CommitTransactionResponse
|
|
648
|
+
) => any;
|
|
649
|
+
|
|
650
|
+
export declare const ExecuteSqlRequestFilterSensitiveLog: (
|
|
651
|
+
obj: ExecuteSqlRequest
|
|
652
|
+
) => any;
|
|
653
|
+
|
|
654
|
+
export declare const ResultSetMetadataFilterSensitiveLog: (
|
|
655
|
+
obj: ResultSetMetadata
|
|
656
|
+
) => any;
|
|
657
|
+
|
|
658
|
+
export declare const ResultSetOptionsFilterSensitiveLog: (
|
|
659
|
+
obj: ResultSetOptions
|
|
660
|
+
) => any;
|
|
661
|
+
|
|
662
|
+
export declare const RollbackTransactionRequestFilterSensitiveLog: (
|
|
663
|
+
obj: RollbackTransactionRequest
|
|
664
|
+
) => any;
|
|
665
|
+
|
|
666
|
+
export declare const RollbackTransactionResponseFilterSensitiveLog: (
|
|
667
|
+
obj: RollbackTransactionResponse
|
|
668
|
+
) => any;
|
|
669
|
+
|
|
670
|
+
export declare const ArrayValueFilterSensitiveLog: (obj: ArrayValue) => any;
|
|
671
|
+
|
|
672
|
+
export declare const FieldFilterSensitiveLog: (obj: Field) => any;
|
|
673
|
+
|
|
674
|
+
export declare const SqlParameterFilterSensitiveLog: (obj: SqlParameter) => any;
|
|
675
|
+
|
|
676
|
+
export declare const UpdateResultFilterSensitiveLog: (obj: UpdateResult) => any;
|
|
677
|
+
|
|
678
|
+
export declare const ValueFilterSensitiveLog: (obj: Value) => any;
|
|
679
|
+
|
|
680
|
+
export declare const ExecuteStatementRequestFilterSensitiveLog: (
|
|
681
|
+
obj: ExecuteStatementRequest
|
|
682
|
+
) => any;
|
|
683
|
+
|
|
684
|
+
export declare const StructValueFilterSensitiveLog: (obj: StructValue) => any;
|
|
685
|
+
|
|
686
|
+
export declare const BatchExecuteStatementRequestFilterSensitiveLog: (
|
|
687
|
+
obj: BatchExecuteStatementRequest
|
|
688
|
+
) => any;
|
|
689
|
+
|
|
690
|
+
export declare const BatchExecuteStatementResponseFilterSensitiveLog: (
|
|
691
|
+
obj: BatchExecuteStatementResponse
|
|
692
|
+
) => any;
|
|
693
|
+
|
|
694
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
695
|
+
|
|
696
|
+
export declare const ExecuteStatementResponseFilterSensitiveLog: (
|
|
697
|
+
obj: ExecuteStatementResponse
|
|
698
|
+
) => any;
|
|
699
|
+
|
|
700
|
+
export declare const ResultFrameFilterSensitiveLog: (obj: ResultFrame) => any;
|
|
701
|
+
|
|
702
|
+
export declare const SqlStatementResultFilterSensitiveLog: (
|
|
703
|
+
obj: SqlStatementResult
|
|
704
|
+
) => any;
|
|
705
|
+
|
|
706
|
+
export declare const ExecuteSqlResponseFilterSensitiveLog: (
|
|
707
|
+
obj: ExecuteSqlResponse
|
|
708
|
+
) => any;
|