@aws-sdk/client-synthetics 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/Synthetics.d.ts +382 -110
- package/dist-types/ts3.4/SyntheticsClient.d.ts +255 -94
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +34 -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/UpdateCanaryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SyntheticsServiceException.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 +804 -732
- package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
- 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,732 +1,804 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
|
|
3
|
-
export declare enum EncryptionMode {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export interface S3EncryptionConfig {
|
|
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
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
export interface CanaryTimeline {
|
|
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
|
-
|
|
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
|
-
export interface
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
export interface
|
|
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
|
-
|
|
366
|
-
|
|
367
|
-
}
|
|
368
|
-
export interface
|
|
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
|
-
export interface
|
|
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
|
-
export
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
}
|
|
502
|
-
export interface
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
}
|
|
518
|
-
export interface
|
|
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
|
-
export interface
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
export
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
export
|
|
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
|
-
export declare const
|
|
603
|
-
|
|
604
|
-
export declare const
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
export declare const
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
export declare const
|
|
613
|
-
|
|
614
|
-
export declare const
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
export declare const
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
export declare const
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
export declare const
|
|
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
|
-
export declare const
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
export declare const
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
export declare const
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
export declare const DeleteGroupRequestFilterSensitiveLog: (
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
export declare const
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
export declare const
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
export declare const
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
export declare const
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
export declare const
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
export declare const
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
export declare const
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
export declare const
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
export declare const
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
export declare const
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
export declare const
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
export declare const
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
export declare const
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
export declare const
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
export declare const
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
export declare const
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
export declare const
|
|
729
|
-
|
|
730
|
-
export declare const
|
|
731
|
-
|
|
732
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
|
|
3
|
+
export declare enum EncryptionMode {
|
|
4
|
+
SSE_KMS = "SSE_KMS",
|
|
5
|
+
SSE_S3 = "SSE_S3",
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface S3EncryptionConfig {
|
|
9
|
+
EncryptionMode?: EncryptionMode | string;
|
|
10
|
+
|
|
11
|
+
KmsKeyArn?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface ArtifactConfigInput {
|
|
15
|
+
S3Encryption?: S3EncryptionConfig;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface ArtifactConfigOutput {
|
|
19
|
+
S3Encryption?: S3EncryptionConfig;
|
|
20
|
+
}
|
|
21
|
+
export interface AssociateResourceRequest {
|
|
22
|
+
GroupIdentifier: string | undefined;
|
|
23
|
+
|
|
24
|
+
ResourceArn: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface AssociateResourceResponse {}
|
|
27
|
+
|
|
28
|
+
export declare class ConflictException extends __BaseException {
|
|
29
|
+
readonly name: "ConflictException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
Message?: string;
|
|
32
|
+
|
|
33
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export declare class InternalServerException extends __BaseException {
|
|
37
|
+
readonly name: "InternalServerException";
|
|
38
|
+
readonly $fault: "server";
|
|
39
|
+
Message?: string;
|
|
40
|
+
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
47
|
+
readonly name: "ResourceNotFoundException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string;
|
|
50
|
+
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
57
|
+
readonly name: "ServiceQuotaExceededException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
Message?: string;
|
|
60
|
+
|
|
61
|
+
constructor(
|
|
62
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export declare class ValidationException extends __BaseException {
|
|
67
|
+
readonly name: "ValidationException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string;
|
|
70
|
+
|
|
71
|
+
constructor(
|
|
72
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export declare class BadRequestException extends __BaseException {
|
|
77
|
+
readonly name: "BadRequestException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message?: string;
|
|
80
|
+
|
|
81
|
+
constructor(
|
|
82
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface BaseScreenshot {
|
|
87
|
+
ScreenshotName: string | undefined;
|
|
88
|
+
|
|
89
|
+
IgnoreCoordinates?: string[];
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export interface CanaryCodeOutput {
|
|
93
|
+
SourceLocationArn?: string;
|
|
94
|
+
|
|
95
|
+
Handler?: string;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export interface CanaryRunConfigOutput {
|
|
99
|
+
TimeoutInSeconds?: number;
|
|
100
|
+
|
|
101
|
+
MemoryInMB?: number;
|
|
102
|
+
|
|
103
|
+
ActiveTracing?: boolean;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface CanaryScheduleOutput {
|
|
107
|
+
Expression?: string;
|
|
108
|
+
|
|
109
|
+
DurationInSeconds?: number;
|
|
110
|
+
}
|
|
111
|
+
export declare enum CanaryState {
|
|
112
|
+
CREATING = "CREATING",
|
|
113
|
+
DELETING = "DELETING",
|
|
114
|
+
ERROR = "ERROR",
|
|
115
|
+
READY = "READY",
|
|
116
|
+
RUNNING = "RUNNING",
|
|
117
|
+
STARTING = "STARTING",
|
|
118
|
+
STOPPED = "STOPPED",
|
|
119
|
+
STOPPING = "STOPPING",
|
|
120
|
+
UPDATING = "UPDATING",
|
|
121
|
+
}
|
|
122
|
+
export declare enum CanaryStateReasonCode {
|
|
123
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
124
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
125
|
+
CREATE_PENDING = "CREATE_PENDING",
|
|
126
|
+
DELETE_FAILED = "DELETE_FAILED",
|
|
127
|
+
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
128
|
+
INVALID_PERMISSIONS = "INVALID_PERMISSIONS",
|
|
129
|
+
ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
|
|
130
|
+
ROLLBACK_FAILED = "ROLLBACK_FAILED",
|
|
131
|
+
SYNC_DELETE_IN_PROGRESS = "SYNC_DELETE_IN_PROGRESS",
|
|
132
|
+
UPDATE_COMPLETE = "UPDATE_COMPLETE",
|
|
133
|
+
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
|
|
134
|
+
UPDATE_PENDING = "UPDATE_PENDING",
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface CanaryStatus {
|
|
138
|
+
State?: CanaryState | string;
|
|
139
|
+
|
|
140
|
+
StateReason?: string;
|
|
141
|
+
|
|
142
|
+
StateReasonCode?: CanaryStateReasonCode | string;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface CanaryTimeline {
|
|
146
|
+
Created?: Date;
|
|
147
|
+
|
|
148
|
+
LastModified?: Date;
|
|
149
|
+
|
|
150
|
+
LastStarted?: Date;
|
|
151
|
+
|
|
152
|
+
LastStopped?: Date;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export interface VisualReferenceOutput {
|
|
156
|
+
BaseScreenshots?: BaseScreenshot[];
|
|
157
|
+
|
|
158
|
+
BaseCanaryRunId?: string;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface VpcConfigOutput {
|
|
162
|
+
VpcId?: string;
|
|
163
|
+
|
|
164
|
+
SubnetIds?: string[];
|
|
165
|
+
|
|
166
|
+
SecurityGroupIds?: string[];
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface Canary {
|
|
170
|
+
Id?: string;
|
|
171
|
+
|
|
172
|
+
Name?: string;
|
|
173
|
+
|
|
174
|
+
Code?: CanaryCodeOutput;
|
|
175
|
+
|
|
176
|
+
ExecutionRoleArn?: string;
|
|
177
|
+
|
|
178
|
+
Schedule?: CanaryScheduleOutput;
|
|
179
|
+
|
|
180
|
+
RunConfig?: CanaryRunConfigOutput;
|
|
181
|
+
|
|
182
|
+
SuccessRetentionPeriodInDays?: number;
|
|
183
|
+
|
|
184
|
+
FailureRetentionPeriodInDays?: number;
|
|
185
|
+
|
|
186
|
+
Status?: CanaryStatus;
|
|
187
|
+
|
|
188
|
+
Timeline?: CanaryTimeline;
|
|
189
|
+
|
|
190
|
+
ArtifactS3Location?: string;
|
|
191
|
+
|
|
192
|
+
EngineArn?: string;
|
|
193
|
+
|
|
194
|
+
RuntimeVersion?: string;
|
|
195
|
+
|
|
196
|
+
VpcConfig?: VpcConfigOutput;
|
|
197
|
+
|
|
198
|
+
VisualReference?: VisualReferenceOutput;
|
|
199
|
+
|
|
200
|
+
Tags?: Record<string, string>;
|
|
201
|
+
|
|
202
|
+
ArtifactConfig?: ArtifactConfigOutput;
|
|
203
|
+
}
|
|
204
|
+
export declare enum CanaryRunState {
|
|
205
|
+
FAILED = "FAILED",
|
|
206
|
+
PASSED = "PASSED",
|
|
207
|
+
RUNNING = "RUNNING",
|
|
208
|
+
}
|
|
209
|
+
export declare enum CanaryRunStateReasonCode {
|
|
210
|
+
CANARY_FAILURE = "CANARY_FAILURE",
|
|
211
|
+
EXECUTION_FAILURE = "EXECUTION_FAILURE",
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface CanaryRunStatus {
|
|
215
|
+
State?: CanaryRunState | string;
|
|
216
|
+
|
|
217
|
+
StateReason?: string;
|
|
218
|
+
|
|
219
|
+
StateReasonCode?: CanaryRunStateReasonCode | string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface CanaryRunTimeline {
|
|
223
|
+
Started?: Date;
|
|
224
|
+
|
|
225
|
+
Completed?: Date;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
export interface CanaryRun {
|
|
229
|
+
Id?: string;
|
|
230
|
+
|
|
231
|
+
Name?: string;
|
|
232
|
+
|
|
233
|
+
Status?: CanaryRunStatus;
|
|
234
|
+
|
|
235
|
+
Timeline?: CanaryRunTimeline;
|
|
236
|
+
|
|
237
|
+
ArtifactS3Location?: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface CanaryLastRun {
|
|
241
|
+
CanaryName?: string;
|
|
242
|
+
|
|
243
|
+
LastRun?: CanaryRun;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface CanaryCodeInput {
|
|
247
|
+
S3Bucket?: string;
|
|
248
|
+
|
|
249
|
+
S3Key?: string;
|
|
250
|
+
|
|
251
|
+
S3Version?: string;
|
|
252
|
+
|
|
253
|
+
ZipFile?: Uint8Array;
|
|
254
|
+
|
|
255
|
+
Handler: string | undefined;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export interface CanaryRunConfigInput {
|
|
259
|
+
TimeoutInSeconds?: number;
|
|
260
|
+
|
|
261
|
+
MemoryInMB?: number;
|
|
262
|
+
|
|
263
|
+
ActiveTracing?: boolean;
|
|
264
|
+
|
|
265
|
+
EnvironmentVariables?: Record<string, string>;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export interface CanaryScheduleInput {
|
|
269
|
+
Expression: string | undefined;
|
|
270
|
+
|
|
271
|
+
DurationInSeconds?: number;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
export interface VpcConfigInput {
|
|
275
|
+
SubnetIds?: string[];
|
|
276
|
+
|
|
277
|
+
SecurityGroupIds?: string[];
|
|
278
|
+
}
|
|
279
|
+
export interface CreateCanaryRequest {
|
|
280
|
+
Name: string | undefined;
|
|
281
|
+
|
|
282
|
+
Code: CanaryCodeInput | undefined;
|
|
283
|
+
|
|
284
|
+
ArtifactS3Location: string | undefined;
|
|
285
|
+
|
|
286
|
+
ExecutionRoleArn: string | undefined;
|
|
287
|
+
|
|
288
|
+
Schedule: CanaryScheduleInput | undefined;
|
|
289
|
+
|
|
290
|
+
RunConfig?: CanaryRunConfigInput;
|
|
291
|
+
|
|
292
|
+
SuccessRetentionPeriodInDays?: number;
|
|
293
|
+
|
|
294
|
+
FailureRetentionPeriodInDays?: number;
|
|
295
|
+
|
|
296
|
+
RuntimeVersion: string | undefined;
|
|
297
|
+
|
|
298
|
+
VpcConfig?: VpcConfigInput;
|
|
299
|
+
|
|
300
|
+
Tags?: Record<string, string>;
|
|
301
|
+
|
|
302
|
+
ArtifactConfig?: ArtifactConfigInput;
|
|
303
|
+
}
|
|
304
|
+
export interface CreateCanaryResponse {
|
|
305
|
+
Canary?: Canary;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
export declare class RequestEntityTooLargeException extends __BaseException {
|
|
309
|
+
readonly name: "RequestEntityTooLargeException";
|
|
310
|
+
readonly $fault: "client";
|
|
311
|
+
Message?: string;
|
|
312
|
+
|
|
313
|
+
constructor(
|
|
314
|
+
opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>
|
|
315
|
+
);
|
|
316
|
+
}
|
|
317
|
+
export interface CreateGroupRequest {
|
|
318
|
+
Name: string | undefined;
|
|
319
|
+
|
|
320
|
+
Tags?: Record<string, string>;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export interface Group {
|
|
324
|
+
Id?: string;
|
|
325
|
+
|
|
326
|
+
Name?: string;
|
|
327
|
+
|
|
328
|
+
Arn?: string;
|
|
329
|
+
|
|
330
|
+
Tags?: Record<string, string>;
|
|
331
|
+
|
|
332
|
+
CreatedTime?: Date;
|
|
333
|
+
|
|
334
|
+
LastModifiedTime?: Date;
|
|
335
|
+
}
|
|
336
|
+
export interface CreateGroupResponse {
|
|
337
|
+
Group?: Group;
|
|
338
|
+
}
|
|
339
|
+
export interface DeleteCanaryRequest {
|
|
340
|
+
Name: string | undefined;
|
|
341
|
+
|
|
342
|
+
DeleteLambda?: boolean;
|
|
343
|
+
}
|
|
344
|
+
export interface DeleteCanaryResponse {}
|
|
345
|
+
export interface DeleteGroupRequest {
|
|
346
|
+
GroupIdentifier: string | undefined;
|
|
347
|
+
}
|
|
348
|
+
export interface DeleteGroupResponse {}
|
|
349
|
+
export interface DescribeCanariesRequest {
|
|
350
|
+
NextToken?: string;
|
|
351
|
+
|
|
352
|
+
MaxResults?: number;
|
|
353
|
+
|
|
354
|
+
Names?: string[];
|
|
355
|
+
}
|
|
356
|
+
export interface DescribeCanariesResponse {
|
|
357
|
+
Canaries?: Canary[];
|
|
358
|
+
|
|
359
|
+
NextToken?: string;
|
|
360
|
+
}
|
|
361
|
+
export interface DescribeCanariesLastRunRequest {
|
|
362
|
+
NextToken?: string;
|
|
363
|
+
|
|
364
|
+
MaxResults?: number;
|
|
365
|
+
|
|
366
|
+
Names?: string[];
|
|
367
|
+
}
|
|
368
|
+
export interface DescribeCanariesLastRunResponse {
|
|
369
|
+
CanariesLastRun?: CanaryLastRun[];
|
|
370
|
+
|
|
371
|
+
NextToken?: string;
|
|
372
|
+
}
|
|
373
|
+
export interface DescribeRuntimeVersionsRequest {
|
|
374
|
+
NextToken?: string;
|
|
375
|
+
|
|
376
|
+
MaxResults?: number;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export interface RuntimeVersion {
|
|
380
|
+
VersionName?: string;
|
|
381
|
+
|
|
382
|
+
Description?: string;
|
|
383
|
+
|
|
384
|
+
ReleaseDate?: Date;
|
|
385
|
+
|
|
386
|
+
DeprecationDate?: Date;
|
|
387
|
+
}
|
|
388
|
+
export interface DescribeRuntimeVersionsResponse {
|
|
389
|
+
RuntimeVersions?: RuntimeVersion[];
|
|
390
|
+
|
|
391
|
+
NextToken?: string;
|
|
392
|
+
}
|
|
393
|
+
export interface DisassociateResourceRequest {
|
|
394
|
+
GroupIdentifier: string | undefined;
|
|
395
|
+
|
|
396
|
+
ResourceArn: string | undefined;
|
|
397
|
+
}
|
|
398
|
+
export interface DisassociateResourceResponse {}
|
|
399
|
+
export interface GetCanaryRequest {
|
|
400
|
+
Name: string | undefined;
|
|
401
|
+
}
|
|
402
|
+
export interface GetCanaryResponse {
|
|
403
|
+
Canary?: Canary;
|
|
404
|
+
}
|
|
405
|
+
export interface GetCanaryRunsRequest {
|
|
406
|
+
Name: string | undefined;
|
|
407
|
+
|
|
408
|
+
NextToken?: string;
|
|
409
|
+
|
|
410
|
+
MaxResults?: number;
|
|
411
|
+
}
|
|
412
|
+
export interface GetCanaryRunsResponse {
|
|
413
|
+
CanaryRuns?: CanaryRun[];
|
|
414
|
+
|
|
415
|
+
NextToken?: string;
|
|
416
|
+
}
|
|
417
|
+
export interface GetGroupRequest {
|
|
418
|
+
GroupIdentifier: string | undefined;
|
|
419
|
+
}
|
|
420
|
+
export interface GetGroupResponse {
|
|
421
|
+
Group?: Group;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface GroupSummary {
|
|
425
|
+
Id?: string;
|
|
426
|
+
|
|
427
|
+
Name?: string;
|
|
428
|
+
|
|
429
|
+
Arn?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export declare class InternalFailureException extends __BaseException {
|
|
433
|
+
readonly name: "InternalFailureException";
|
|
434
|
+
readonly $fault: "server";
|
|
435
|
+
Message?: string;
|
|
436
|
+
|
|
437
|
+
constructor(
|
|
438
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
439
|
+
);
|
|
440
|
+
}
|
|
441
|
+
export interface ListAssociatedGroupsRequest {
|
|
442
|
+
NextToken?: string;
|
|
443
|
+
|
|
444
|
+
MaxResults?: number;
|
|
445
|
+
|
|
446
|
+
ResourceArn: string | undefined;
|
|
447
|
+
}
|
|
448
|
+
export interface ListAssociatedGroupsResponse {
|
|
449
|
+
Groups?: GroupSummary[];
|
|
450
|
+
|
|
451
|
+
NextToken?: string;
|
|
452
|
+
}
|
|
453
|
+
export interface ListGroupResourcesRequest {
|
|
454
|
+
NextToken?: string;
|
|
455
|
+
|
|
456
|
+
MaxResults?: number;
|
|
457
|
+
|
|
458
|
+
GroupIdentifier: string | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface ListGroupResourcesResponse {
|
|
461
|
+
Resources?: string[];
|
|
462
|
+
|
|
463
|
+
NextToken?: string;
|
|
464
|
+
}
|
|
465
|
+
export interface ListGroupsRequest {
|
|
466
|
+
NextToken?: string;
|
|
467
|
+
|
|
468
|
+
MaxResults?: number;
|
|
469
|
+
}
|
|
470
|
+
export interface ListGroupsResponse {
|
|
471
|
+
Groups?: GroupSummary[];
|
|
472
|
+
|
|
473
|
+
NextToken?: string;
|
|
474
|
+
}
|
|
475
|
+
export interface ListTagsForResourceRequest {
|
|
476
|
+
ResourceArn: string | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface ListTagsForResourceResponse {
|
|
479
|
+
Tags?: Record<string, string>;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export declare class NotFoundException extends __BaseException {
|
|
483
|
+
readonly name: "NotFoundException";
|
|
484
|
+
readonly $fault: "client";
|
|
485
|
+
Message?: string;
|
|
486
|
+
|
|
487
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
491
|
+
readonly name: "TooManyRequestsException";
|
|
492
|
+
readonly $fault: "client";
|
|
493
|
+
Message?: string;
|
|
494
|
+
|
|
495
|
+
constructor(
|
|
496
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
497
|
+
);
|
|
498
|
+
}
|
|
499
|
+
export interface StartCanaryRequest {
|
|
500
|
+
Name: string | undefined;
|
|
501
|
+
}
|
|
502
|
+
export interface StartCanaryResponse {}
|
|
503
|
+
export interface StopCanaryRequest {
|
|
504
|
+
Name: string | undefined;
|
|
505
|
+
}
|
|
506
|
+
export interface StopCanaryResponse {}
|
|
507
|
+
export interface TagResourceRequest {
|
|
508
|
+
ResourceArn: string | undefined;
|
|
509
|
+
|
|
510
|
+
Tags: Record<string, string> | undefined;
|
|
511
|
+
}
|
|
512
|
+
export interface TagResourceResponse {}
|
|
513
|
+
export interface UntagResourceRequest {
|
|
514
|
+
ResourceArn: string | undefined;
|
|
515
|
+
|
|
516
|
+
TagKeys: string[] | undefined;
|
|
517
|
+
}
|
|
518
|
+
export interface UntagResourceResponse {}
|
|
519
|
+
|
|
520
|
+
export interface VisualReferenceInput {
|
|
521
|
+
BaseScreenshots?: BaseScreenshot[];
|
|
522
|
+
|
|
523
|
+
BaseCanaryRunId: string | undefined;
|
|
524
|
+
}
|
|
525
|
+
export interface UpdateCanaryRequest {
|
|
526
|
+
Name: string | undefined;
|
|
527
|
+
|
|
528
|
+
Code?: CanaryCodeInput;
|
|
529
|
+
|
|
530
|
+
ExecutionRoleArn?: string;
|
|
531
|
+
|
|
532
|
+
RuntimeVersion?: string;
|
|
533
|
+
|
|
534
|
+
Schedule?: CanaryScheduleInput;
|
|
535
|
+
|
|
536
|
+
RunConfig?: CanaryRunConfigInput;
|
|
537
|
+
|
|
538
|
+
SuccessRetentionPeriodInDays?: number;
|
|
539
|
+
|
|
540
|
+
FailureRetentionPeriodInDays?: number;
|
|
541
|
+
|
|
542
|
+
VpcConfig?: VpcConfigInput;
|
|
543
|
+
|
|
544
|
+
VisualReference?: VisualReferenceInput;
|
|
545
|
+
|
|
546
|
+
ArtifactS3Location?: string;
|
|
547
|
+
|
|
548
|
+
ArtifactConfig?: ArtifactConfigInput;
|
|
549
|
+
}
|
|
550
|
+
export interface UpdateCanaryResponse {}
|
|
551
|
+
|
|
552
|
+
export declare const S3EncryptionConfigFilterSensitiveLog: (
|
|
553
|
+
obj: S3EncryptionConfig
|
|
554
|
+
) => any;
|
|
555
|
+
|
|
556
|
+
export declare const ArtifactConfigInputFilterSensitiveLog: (
|
|
557
|
+
obj: ArtifactConfigInput
|
|
558
|
+
) => any;
|
|
559
|
+
|
|
560
|
+
export declare const ArtifactConfigOutputFilterSensitiveLog: (
|
|
561
|
+
obj: ArtifactConfigOutput
|
|
562
|
+
) => any;
|
|
563
|
+
|
|
564
|
+
export declare const AssociateResourceRequestFilterSensitiveLog: (
|
|
565
|
+
obj: AssociateResourceRequest
|
|
566
|
+
) => any;
|
|
567
|
+
|
|
568
|
+
export declare const AssociateResourceResponseFilterSensitiveLog: (
|
|
569
|
+
obj: AssociateResourceResponse
|
|
570
|
+
) => any;
|
|
571
|
+
|
|
572
|
+
export declare const BaseScreenshotFilterSensitiveLog: (
|
|
573
|
+
obj: BaseScreenshot
|
|
574
|
+
) => any;
|
|
575
|
+
|
|
576
|
+
export declare const CanaryCodeOutputFilterSensitiveLog: (
|
|
577
|
+
obj: CanaryCodeOutput
|
|
578
|
+
) => any;
|
|
579
|
+
|
|
580
|
+
export declare const CanaryRunConfigOutputFilterSensitiveLog: (
|
|
581
|
+
obj: CanaryRunConfigOutput
|
|
582
|
+
) => any;
|
|
583
|
+
|
|
584
|
+
export declare const CanaryScheduleOutputFilterSensitiveLog: (
|
|
585
|
+
obj: CanaryScheduleOutput
|
|
586
|
+
) => any;
|
|
587
|
+
|
|
588
|
+
export declare const CanaryStatusFilterSensitiveLog: (obj: CanaryStatus) => any;
|
|
589
|
+
|
|
590
|
+
export declare const CanaryTimelineFilterSensitiveLog: (
|
|
591
|
+
obj: CanaryTimeline
|
|
592
|
+
) => any;
|
|
593
|
+
|
|
594
|
+
export declare const VisualReferenceOutputFilterSensitiveLog: (
|
|
595
|
+
obj: VisualReferenceOutput
|
|
596
|
+
) => any;
|
|
597
|
+
|
|
598
|
+
export declare const VpcConfigOutputFilterSensitiveLog: (
|
|
599
|
+
obj: VpcConfigOutput
|
|
600
|
+
) => any;
|
|
601
|
+
|
|
602
|
+
export declare const CanaryFilterSensitiveLog: (obj: Canary) => any;
|
|
603
|
+
|
|
604
|
+
export declare const CanaryRunStatusFilterSensitiveLog: (
|
|
605
|
+
obj: CanaryRunStatus
|
|
606
|
+
) => any;
|
|
607
|
+
|
|
608
|
+
export declare const CanaryRunTimelineFilterSensitiveLog: (
|
|
609
|
+
obj: CanaryRunTimeline
|
|
610
|
+
) => any;
|
|
611
|
+
|
|
612
|
+
export declare const CanaryRunFilterSensitiveLog: (obj: CanaryRun) => any;
|
|
613
|
+
|
|
614
|
+
export declare const CanaryLastRunFilterSensitiveLog: (
|
|
615
|
+
obj: CanaryLastRun
|
|
616
|
+
) => any;
|
|
617
|
+
|
|
618
|
+
export declare const CanaryCodeInputFilterSensitiveLog: (
|
|
619
|
+
obj: CanaryCodeInput
|
|
620
|
+
) => any;
|
|
621
|
+
|
|
622
|
+
export declare const CanaryRunConfigInputFilterSensitiveLog: (
|
|
623
|
+
obj: CanaryRunConfigInput
|
|
624
|
+
) => any;
|
|
625
|
+
|
|
626
|
+
export declare const CanaryScheduleInputFilterSensitiveLog: (
|
|
627
|
+
obj: CanaryScheduleInput
|
|
628
|
+
) => any;
|
|
629
|
+
|
|
630
|
+
export declare const VpcConfigInputFilterSensitiveLog: (
|
|
631
|
+
obj: VpcConfigInput
|
|
632
|
+
) => any;
|
|
633
|
+
|
|
634
|
+
export declare const CreateCanaryRequestFilterSensitiveLog: (
|
|
635
|
+
obj: CreateCanaryRequest
|
|
636
|
+
) => any;
|
|
637
|
+
|
|
638
|
+
export declare const CreateCanaryResponseFilterSensitiveLog: (
|
|
639
|
+
obj: CreateCanaryResponse
|
|
640
|
+
) => any;
|
|
641
|
+
|
|
642
|
+
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
643
|
+
obj: CreateGroupRequest
|
|
644
|
+
) => any;
|
|
645
|
+
|
|
646
|
+
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
647
|
+
|
|
648
|
+
export declare const CreateGroupResponseFilterSensitiveLog: (
|
|
649
|
+
obj: CreateGroupResponse
|
|
650
|
+
) => any;
|
|
651
|
+
|
|
652
|
+
export declare const DeleteCanaryRequestFilterSensitiveLog: (
|
|
653
|
+
obj: DeleteCanaryRequest
|
|
654
|
+
) => any;
|
|
655
|
+
|
|
656
|
+
export declare const DeleteCanaryResponseFilterSensitiveLog: (
|
|
657
|
+
obj: DeleteCanaryResponse
|
|
658
|
+
) => any;
|
|
659
|
+
|
|
660
|
+
export declare const DeleteGroupRequestFilterSensitiveLog: (
|
|
661
|
+
obj: DeleteGroupRequest
|
|
662
|
+
) => any;
|
|
663
|
+
|
|
664
|
+
export declare const DeleteGroupResponseFilterSensitiveLog: (
|
|
665
|
+
obj: DeleteGroupResponse
|
|
666
|
+
) => any;
|
|
667
|
+
|
|
668
|
+
export declare const DescribeCanariesRequestFilterSensitiveLog: (
|
|
669
|
+
obj: DescribeCanariesRequest
|
|
670
|
+
) => any;
|
|
671
|
+
|
|
672
|
+
export declare const DescribeCanariesResponseFilterSensitiveLog: (
|
|
673
|
+
obj: DescribeCanariesResponse
|
|
674
|
+
) => any;
|
|
675
|
+
|
|
676
|
+
export declare const DescribeCanariesLastRunRequestFilterSensitiveLog: (
|
|
677
|
+
obj: DescribeCanariesLastRunRequest
|
|
678
|
+
) => any;
|
|
679
|
+
|
|
680
|
+
export declare const DescribeCanariesLastRunResponseFilterSensitiveLog: (
|
|
681
|
+
obj: DescribeCanariesLastRunResponse
|
|
682
|
+
) => any;
|
|
683
|
+
|
|
684
|
+
export declare const DescribeRuntimeVersionsRequestFilterSensitiveLog: (
|
|
685
|
+
obj: DescribeRuntimeVersionsRequest
|
|
686
|
+
) => any;
|
|
687
|
+
|
|
688
|
+
export declare const RuntimeVersionFilterSensitiveLog: (
|
|
689
|
+
obj: RuntimeVersion
|
|
690
|
+
) => any;
|
|
691
|
+
|
|
692
|
+
export declare const DescribeRuntimeVersionsResponseFilterSensitiveLog: (
|
|
693
|
+
obj: DescribeRuntimeVersionsResponse
|
|
694
|
+
) => any;
|
|
695
|
+
|
|
696
|
+
export declare const DisassociateResourceRequestFilterSensitiveLog: (
|
|
697
|
+
obj: DisassociateResourceRequest
|
|
698
|
+
) => any;
|
|
699
|
+
|
|
700
|
+
export declare const DisassociateResourceResponseFilterSensitiveLog: (
|
|
701
|
+
obj: DisassociateResourceResponse
|
|
702
|
+
) => any;
|
|
703
|
+
|
|
704
|
+
export declare const GetCanaryRequestFilterSensitiveLog: (
|
|
705
|
+
obj: GetCanaryRequest
|
|
706
|
+
) => any;
|
|
707
|
+
|
|
708
|
+
export declare const GetCanaryResponseFilterSensitiveLog: (
|
|
709
|
+
obj: GetCanaryResponse
|
|
710
|
+
) => any;
|
|
711
|
+
|
|
712
|
+
export declare const GetCanaryRunsRequestFilterSensitiveLog: (
|
|
713
|
+
obj: GetCanaryRunsRequest
|
|
714
|
+
) => any;
|
|
715
|
+
|
|
716
|
+
export declare const GetCanaryRunsResponseFilterSensitiveLog: (
|
|
717
|
+
obj: GetCanaryRunsResponse
|
|
718
|
+
) => any;
|
|
719
|
+
|
|
720
|
+
export declare const GetGroupRequestFilterSensitiveLog: (
|
|
721
|
+
obj: GetGroupRequest
|
|
722
|
+
) => any;
|
|
723
|
+
|
|
724
|
+
export declare const GetGroupResponseFilterSensitiveLog: (
|
|
725
|
+
obj: GetGroupResponse
|
|
726
|
+
) => any;
|
|
727
|
+
|
|
728
|
+
export declare const GroupSummaryFilterSensitiveLog: (obj: GroupSummary) => any;
|
|
729
|
+
|
|
730
|
+
export declare const ListAssociatedGroupsRequestFilterSensitiveLog: (
|
|
731
|
+
obj: ListAssociatedGroupsRequest
|
|
732
|
+
) => any;
|
|
733
|
+
|
|
734
|
+
export declare const ListAssociatedGroupsResponseFilterSensitiveLog: (
|
|
735
|
+
obj: ListAssociatedGroupsResponse
|
|
736
|
+
) => any;
|
|
737
|
+
|
|
738
|
+
export declare const ListGroupResourcesRequestFilterSensitiveLog: (
|
|
739
|
+
obj: ListGroupResourcesRequest
|
|
740
|
+
) => any;
|
|
741
|
+
|
|
742
|
+
export declare const ListGroupResourcesResponseFilterSensitiveLog: (
|
|
743
|
+
obj: ListGroupResourcesResponse
|
|
744
|
+
) => any;
|
|
745
|
+
|
|
746
|
+
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
747
|
+
obj: ListGroupsRequest
|
|
748
|
+
) => any;
|
|
749
|
+
|
|
750
|
+
export declare const ListGroupsResponseFilterSensitiveLog: (
|
|
751
|
+
obj: ListGroupsResponse
|
|
752
|
+
) => any;
|
|
753
|
+
|
|
754
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
755
|
+
obj: ListTagsForResourceRequest
|
|
756
|
+
) => any;
|
|
757
|
+
|
|
758
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
759
|
+
obj: ListTagsForResourceResponse
|
|
760
|
+
) => any;
|
|
761
|
+
|
|
762
|
+
export declare const StartCanaryRequestFilterSensitiveLog: (
|
|
763
|
+
obj: StartCanaryRequest
|
|
764
|
+
) => any;
|
|
765
|
+
|
|
766
|
+
export declare const StartCanaryResponseFilterSensitiveLog: (
|
|
767
|
+
obj: StartCanaryResponse
|
|
768
|
+
) => any;
|
|
769
|
+
|
|
770
|
+
export declare const StopCanaryRequestFilterSensitiveLog: (
|
|
771
|
+
obj: StopCanaryRequest
|
|
772
|
+
) => any;
|
|
773
|
+
|
|
774
|
+
export declare const StopCanaryResponseFilterSensitiveLog: (
|
|
775
|
+
obj: StopCanaryResponse
|
|
776
|
+
) => any;
|
|
777
|
+
|
|
778
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
779
|
+
obj: TagResourceRequest
|
|
780
|
+
) => any;
|
|
781
|
+
|
|
782
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
783
|
+
obj: TagResourceResponse
|
|
784
|
+
) => any;
|
|
785
|
+
|
|
786
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
787
|
+
obj: UntagResourceRequest
|
|
788
|
+
) => any;
|
|
789
|
+
|
|
790
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
791
|
+
obj: UntagResourceResponse
|
|
792
|
+
) => any;
|
|
793
|
+
|
|
794
|
+
export declare const VisualReferenceInputFilterSensitiveLog: (
|
|
795
|
+
obj: VisualReferenceInput
|
|
796
|
+
) => any;
|
|
797
|
+
|
|
798
|
+
export declare const UpdateCanaryRequestFilterSensitiveLog: (
|
|
799
|
+
obj: UpdateCanaryRequest
|
|
800
|
+
) => any;
|
|
801
|
+
|
|
802
|
+
export declare const UpdateCanaryResponseFilterSensitiveLog: (
|
|
803
|
+
obj: UpdateCanaryResponse
|
|
804
|
+
) => any;
|