@aws-sdk/client-synthetics 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateResourceCommand.js +2 -2
- package/dist-cjs/commands/CreateCanaryCommand.js +2 -2
- package/dist-cjs/commands/CreateGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteCanaryCommand.js +2 -2
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeCanariesCommand.js +2 -2
- package/dist-cjs/commands/DescribeCanariesLastRunCommand.js +2 -2
- package/dist-cjs/commands/DescribeRuntimeVersionsCommand.js +2 -2
- package/dist-cjs/commands/DisassociateResourceCommand.js +2 -2
- package/dist-cjs/commands/GetCanaryCommand.js +2 -2
- package/dist-cjs/commands/GetCanaryRunsCommand.js +2 -2
- package/dist-cjs/commands/GetGroupCommand.js +2 -2
- package/dist-cjs/commands/ListAssociatedGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListGroupResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartCanaryCommand.js +2 -2
- package/dist-cjs/commands/StopCanaryCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateCanaryCommand.js +2 -2
- package/dist-cjs/models/models_0.js +266 -398
- package/dist-cjs/protocols/Aws_restJson1.js +229 -463
- package/dist-es/commands/AssociateResourceCommand.js +3 -3
- package/dist-es/commands/CreateCanaryCommand.js +3 -3
- package/dist-es/commands/CreateGroupCommand.js +3 -3
- package/dist-es/commands/DeleteCanaryCommand.js +3 -3
- package/dist-es/commands/DeleteGroupCommand.js +3 -3
- package/dist-es/commands/DescribeCanariesCommand.js +3 -3
- package/dist-es/commands/DescribeCanariesLastRunCommand.js +3 -3
- package/dist-es/commands/DescribeRuntimeVersionsCommand.js +3 -3
- package/dist-es/commands/DisassociateResourceCommand.js +3 -3
- package/dist-es/commands/GetCanaryCommand.js +3 -3
- package/dist-es/commands/GetCanaryRunsCommand.js +3 -3
- package/dist-es/commands/GetGroupCommand.js +3 -3
- package/dist-es/commands/ListAssociatedGroupsCommand.js +3 -3
- package/dist-es/commands/ListGroupResourcesCommand.js +3 -3
- package/dist-es/commands/ListGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartCanaryCommand.js +3 -3
- package/dist-es/commands/StopCanaryCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateCanaryCommand.js +3 -3
- package/dist-es/models/models_0.js +66 -264
- package/dist-es/protocols/Aws_restJson1.js +308 -475
- package/dist-types/models/models_0.d.ts +264 -396
- package/dist-types/ts3.4/models/models_0.d.ts +132 -264
- package/package.json +6 -6
|
@@ -11,44 +11,24 @@ export interface S3EncryptionConfig {
|
|
|
11
11
|
|
|
12
12
|
KmsKeyArn?: string;
|
|
13
13
|
}
|
|
14
|
-
export declare namespace S3EncryptionConfig {
|
|
15
|
-
|
|
16
|
-
const filterSensitiveLog: (obj: S3EncryptionConfig) => any;
|
|
17
|
-
}
|
|
18
14
|
|
|
19
15
|
export interface ArtifactConfigInput {
|
|
20
16
|
|
|
21
17
|
S3Encryption?: S3EncryptionConfig;
|
|
22
18
|
}
|
|
23
|
-
export declare namespace ArtifactConfigInput {
|
|
24
|
-
|
|
25
|
-
const filterSensitiveLog: (obj: ArtifactConfigInput) => any;
|
|
26
|
-
}
|
|
27
19
|
|
|
28
20
|
export interface ArtifactConfigOutput {
|
|
29
21
|
|
|
30
22
|
S3Encryption?: S3EncryptionConfig;
|
|
31
23
|
}
|
|
32
|
-
export declare namespace ArtifactConfigOutput {
|
|
33
|
-
|
|
34
|
-
const filterSensitiveLog: (obj: ArtifactConfigOutput) => any;
|
|
35
|
-
}
|
|
36
24
|
export interface AssociateResourceRequest {
|
|
37
25
|
|
|
38
26
|
GroupIdentifier: string | undefined;
|
|
39
27
|
|
|
40
28
|
ResourceArn: string | undefined;
|
|
41
29
|
}
|
|
42
|
-
export declare namespace AssociateResourceRequest {
|
|
43
|
-
|
|
44
|
-
const filterSensitiveLog: (obj: AssociateResourceRequest) => any;
|
|
45
|
-
}
|
|
46
30
|
export interface AssociateResourceResponse {
|
|
47
31
|
}
|
|
48
|
-
export declare namespace AssociateResourceResponse {
|
|
49
|
-
|
|
50
|
-
const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
51
|
-
}
|
|
52
32
|
|
|
53
33
|
export declare class ConflictException extends __BaseException {
|
|
54
34
|
readonly name: "ConflictException";
|
|
@@ -104,10 +84,6 @@ export interface BaseScreenshot {
|
|
|
104
84
|
|
|
105
85
|
IgnoreCoordinates?: string[];
|
|
106
86
|
}
|
|
107
|
-
export declare namespace BaseScreenshot {
|
|
108
|
-
|
|
109
|
-
const filterSensitiveLog: (obj: BaseScreenshot) => any;
|
|
110
|
-
}
|
|
111
87
|
|
|
112
88
|
export interface CanaryCodeOutput {
|
|
113
89
|
|
|
@@ -115,10 +91,6 @@ export interface CanaryCodeOutput {
|
|
|
115
91
|
|
|
116
92
|
Handler?: string;
|
|
117
93
|
}
|
|
118
|
-
export declare namespace CanaryCodeOutput {
|
|
119
|
-
|
|
120
|
-
const filterSensitiveLog: (obj: CanaryCodeOutput) => any;
|
|
121
|
-
}
|
|
122
94
|
|
|
123
95
|
export interface CanaryRunConfigOutput {
|
|
124
96
|
|
|
@@ -128,10 +100,6 @@ export interface CanaryRunConfigOutput {
|
|
|
128
100
|
|
|
129
101
|
ActiveTracing?: boolean;
|
|
130
102
|
}
|
|
131
|
-
export declare namespace CanaryRunConfigOutput {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: CanaryRunConfigOutput) => any;
|
|
134
|
-
}
|
|
135
103
|
|
|
136
104
|
export interface CanaryScheduleOutput {
|
|
137
105
|
|
|
@@ -139,10 +107,6 @@ export interface CanaryScheduleOutput {
|
|
|
139
107
|
|
|
140
108
|
DurationInSeconds?: number;
|
|
141
109
|
}
|
|
142
|
-
export declare namespace CanaryScheduleOutput {
|
|
143
|
-
|
|
144
|
-
const filterSensitiveLog: (obj: CanaryScheduleOutput) => any;
|
|
145
|
-
}
|
|
146
110
|
export declare enum CanaryState {
|
|
147
111
|
CREATING = "CREATING",
|
|
148
112
|
DELETING = "DELETING",
|
|
@@ -177,10 +141,6 @@ export interface CanaryStatus {
|
|
|
177
141
|
|
|
178
142
|
StateReasonCode?: CanaryStateReasonCode | string;
|
|
179
143
|
}
|
|
180
|
-
export declare namespace CanaryStatus {
|
|
181
|
-
|
|
182
|
-
const filterSensitiveLog: (obj: CanaryStatus) => any;
|
|
183
|
-
}
|
|
184
144
|
|
|
185
145
|
export interface CanaryTimeline {
|
|
186
146
|
|
|
@@ -192,10 +152,6 @@ export interface CanaryTimeline {
|
|
|
192
152
|
|
|
193
153
|
LastStopped?: Date;
|
|
194
154
|
}
|
|
195
|
-
export declare namespace CanaryTimeline {
|
|
196
|
-
|
|
197
|
-
const filterSensitiveLog: (obj: CanaryTimeline) => any;
|
|
198
|
-
}
|
|
199
155
|
|
|
200
156
|
export interface VisualReferenceOutput {
|
|
201
157
|
|
|
@@ -203,10 +159,6 @@ export interface VisualReferenceOutput {
|
|
|
203
159
|
|
|
204
160
|
BaseCanaryRunId?: string;
|
|
205
161
|
}
|
|
206
|
-
export declare namespace VisualReferenceOutput {
|
|
207
|
-
|
|
208
|
-
const filterSensitiveLog: (obj: VisualReferenceOutput) => any;
|
|
209
|
-
}
|
|
210
162
|
|
|
211
163
|
export interface VpcConfigOutput {
|
|
212
164
|
|
|
@@ -216,10 +168,6 @@ export interface VpcConfigOutput {
|
|
|
216
168
|
|
|
217
169
|
SecurityGroupIds?: string[];
|
|
218
170
|
}
|
|
219
|
-
export declare namespace VpcConfigOutput {
|
|
220
|
-
|
|
221
|
-
const filterSensitiveLog: (obj: VpcConfigOutput) => any;
|
|
222
|
-
}
|
|
223
171
|
|
|
224
172
|
export interface Canary {
|
|
225
173
|
|
|
@@ -257,10 +205,6 @@ export interface Canary {
|
|
|
257
205
|
|
|
258
206
|
ArtifactConfig?: ArtifactConfigOutput;
|
|
259
207
|
}
|
|
260
|
-
export declare namespace Canary {
|
|
261
|
-
|
|
262
|
-
const filterSensitiveLog: (obj: Canary) => any;
|
|
263
|
-
}
|
|
264
208
|
export declare enum CanaryRunState {
|
|
265
209
|
FAILED = "FAILED",
|
|
266
210
|
PASSED = "PASSED",
|
|
@@ -279,10 +223,6 @@ export interface CanaryRunStatus {
|
|
|
279
223
|
|
|
280
224
|
StateReasonCode?: CanaryRunStateReasonCode | string;
|
|
281
225
|
}
|
|
282
|
-
export declare namespace CanaryRunStatus {
|
|
283
|
-
|
|
284
|
-
const filterSensitiveLog: (obj: CanaryRunStatus) => any;
|
|
285
|
-
}
|
|
286
226
|
|
|
287
227
|
export interface CanaryRunTimeline {
|
|
288
228
|
|
|
@@ -290,10 +230,6 @@ export interface CanaryRunTimeline {
|
|
|
290
230
|
|
|
291
231
|
Completed?: Date;
|
|
292
232
|
}
|
|
293
|
-
export declare namespace CanaryRunTimeline {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: CanaryRunTimeline) => any;
|
|
296
|
-
}
|
|
297
233
|
|
|
298
234
|
export interface CanaryRun {
|
|
299
235
|
|
|
@@ -307,10 +243,6 @@ export interface CanaryRun {
|
|
|
307
243
|
|
|
308
244
|
ArtifactS3Location?: string;
|
|
309
245
|
}
|
|
310
|
-
export declare namespace CanaryRun {
|
|
311
|
-
|
|
312
|
-
const filterSensitiveLog: (obj: CanaryRun) => any;
|
|
313
|
-
}
|
|
314
246
|
|
|
315
247
|
export interface CanaryLastRun {
|
|
316
248
|
|
|
@@ -318,10 +250,6 @@ export interface CanaryLastRun {
|
|
|
318
250
|
|
|
319
251
|
LastRun?: CanaryRun;
|
|
320
252
|
}
|
|
321
|
-
export declare namespace CanaryLastRun {
|
|
322
|
-
|
|
323
|
-
const filterSensitiveLog: (obj: CanaryLastRun) => any;
|
|
324
|
-
}
|
|
325
253
|
|
|
326
254
|
export interface CanaryCodeInput {
|
|
327
255
|
|
|
@@ -335,10 +263,6 @@ export interface CanaryCodeInput {
|
|
|
335
263
|
|
|
336
264
|
Handler: string | undefined;
|
|
337
265
|
}
|
|
338
|
-
export declare namespace CanaryCodeInput {
|
|
339
|
-
|
|
340
|
-
const filterSensitiveLog: (obj: CanaryCodeInput) => any;
|
|
341
|
-
}
|
|
342
266
|
|
|
343
267
|
export interface CanaryRunConfigInput {
|
|
344
268
|
|
|
@@ -350,10 +274,6 @@ export interface CanaryRunConfigInput {
|
|
|
350
274
|
|
|
351
275
|
EnvironmentVariables?: Record<string, string>;
|
|
352
276
|
}
|
|
353
|
-
export declare namespace CanaryRunConfigInput {
|
|
354
|
-
|
|
355
|
-
const filterSensitiveLog: (obj: CanaryRunConfigInput) => any;
|
|
356
|
-
}
|
|
357
277
|
|
|
358
278
|
export interface CanaryScheduleInput {
|
|
359
279
|
|
|
@@ -361,10 +281,6 @@ export interface CanaryScheduleInput {
|
|
|
361
281
|
|
|
362
282
|
DurationInSeconds?: number;
|
|
363
283
|
}
|
|
364
|
-
export declare namespace CanaryScheduleInput {
|
|
365
|
-
|
|
366
|
-
const filterSensitiveLog: (obj: CanaryScheduleInput) => any;
|
|
367
|
-
}
|
|
368
284
|
|
|
369
285
|
export interface VpcConfigInput {
|
|
370
286
|
|
|
@@ -372,10 +288,6 @@ export interface VpcConfigInput {
|
|
|
372
288
|
|
|
373
289
|
SecurityGroupIds?: string[];
|
|
374
290
|
}
|
|
375
|
-
export declare namespace VpcConfigInput {
|
|
376
|
-
|
|
377
|
-
const filterSensitiveLog: (obj: VpcConfigInput) => any;
|
|
378
|
-
}
|
|
379
291
|
export interface CreateCanaryRequest {
|
|
380
292
|
|
|
381
293
|
Name: string | undefined;
|
|
@@ -402,18 +314,10 @@ export interface CreateCanaryRequest {
|
|
|
402
314
|
|
|
403
315
|
ArtifactConfig?: ArtifactConfigInput;
|
|
404
316
|
}
|
|
405
|
-
export declare namespace CreateCanaryRequest {
|
|
406
|
-
|
|
407
|
-
const filterSensitiveLog: (obj: CreateCanaryRequest) => any;
|
|
408
|
-
}
|
|
409
317
|
export interface CreateCanaryResponse {
|
|
410
318
|
|
|
411
319
|
Canary?: Canary;
|
|
412
320
|
}
|
|
413
|
-
export declare namespace CreateCanaryResponse {
|
|
414
|
-
|
|
415
|
-
const filterSensitiveLog: (obj: CreateCanaryResponse) => any;
|
|
416
|
-
}
|
|
417
321
|
|
|
418
322
|
export declare class RequestEntityTooLargeException extends __BaseException {
|
|
419
323
|
readonly name: "RequestEntityTooLargeException";
|
|
@@ -428,10 +332,6 @@ export interface CreateGroupRequest {
|
|
|
428
332
|
|
|
429
333
|
Tags?: Record<string, string>;
|
|
430
334
|
}
|
|
431
|
-
export declare namespace CreateGroupRequest {
|
|
432
|
-
|
|
433
|
-
const filterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
434
|
-
}
|
|
435
335
|
|
|
436
336
|
export interface Group {
|
|
437
337
|
|
|
@@ -447,48 +347,24 @@ export interface Group {
|
|
|
447
347
|
|
|
448
348
|
LastModifiedTime?: Date;
|
|
449
349
|
}
|
|
450
|
-
export declare namespace Group {
|
|
451
|
-
|
|
452
|
-
const filterSensitiveLog: (obj: Group) => any;
|
|
453
|
-
}
|
|
454
350
|
export interface CreateGroupResponse {
|
|
455
351
|
|
|
456
352
|
Group?: Group;
|
|
457
353
|
}
|
|
458
|
-
export declare namespace CreateGroupResponse {
|
|
459
|
-
|
|
460
|
-
const filterSensitiveLog: (obj: CreateGroupResponse) => any;
|
|
461
|
-
}
|
|
462
354
|
export interface DeleteCanaryRequest {
|
|
463
355
|
|
|
464
356
|
Name: string | undefined;
|
|
465
357
|
|
|
466
358
|
DeleteLambda?: boolean;
|
|
467
359
|
}
|
|
468
|
-
export declare namespace DeleteCanaryRequest {
|
|
469
|
-
|
|
470
|
-
const filterSensitiveLog: (obj: DeleteCanaryRequest) => any;
|
|
471
|
-
}
|
|
472
360
|
export interface DeleteCanaryResponse {
|
|
473
361
|
}
|
|
474
|
-
export declare namespace DeleteCanaryResponse {
|
|
475
|
-
|
|
476
|
-
const filterSensitiveLog: (obj: DeleteCanaryResponse) => any;
|
|
477
|
-
}
|
|
478
362
|
export interface DeleteGroupRequest {
|
|
479
363
|
|
|
480
364
|
GroupIdentifier: string | undefined;
|
|
481
365
|
}
|
|
482
|
-
export declare namespace DeleteGroupRequest {
|
|
483
|
-
|
|
484
|
-
const filterSensitiveLog: (obj: DeleteGroupRequest) => any;
|
|
485
|
-
}
|
|
486
366
|
export interface DeleteGroupResponse {
|
|
487
367
|
}
|
|
488
|
-
export declare namespace DeleteGroupResponse {
|
|
489
|
-
|
|
490
|
-
const filterSensitiveLog: (obj: DeleteGroupResponse) => any;
|
|
491
|
-
}
|
|
492
368
|
export interface DescribeCanariesRequest {
|
|
493
369
|
|
|
494
370
|
NextToken?: string;
|
|
@@ -497,20 +373,12 @@ export interface DescribeCanariesRequest {
|
|
|
497
373
|
|
|
498
374
|
Names?: string[];
|
|
499
375
|
}
|
|
500
|
-
export declare namespace DescribeCanariesRequest {
|
|
501
|
-
|
|
502
|
-
const filterSensitiveLog: (obj: DescribeCanariesRequest) => any;
|
|
503
|
-
}
|
|
504
376
|
export interface DescribeCanariesResponse {
|
|
505
377
|
|
|
506
378
|
Canaries?: Canary[];
|
|
507
379
|
|
|
508
380
|
NextToken?: string;
|
|
509
381
|
}
|
|
510
|
-
export declare namespace DescribeCanariesResponse {
|
|
511
|
-
|
|
512
|
-
const filterSensitiveLog: (obj: DescribeCanariesResponse) => any;
|
|
513
|
-
}
|
|
514
382
|
export interface DescribeCanariesLastRunRequest {
|
|
515
383
|
|
|
516
384
|
NextToken?: string;
|
|
@@ -519,30 +387,18 @@ export interface DescribeCanariesLastRunRequest {
|
|
|
519
387
|
|
|
520
388
|
Names?: string[];
|
|
521
389
|
}
|
|
522
|
-
export declare namespace DescribeCanariesLastRunRequest {
|
|
523
|
-
|
|
524
|
-
const filterSensitiveLog: (obj: DescribeCanariesLastRunRequest) => any;
|
|
525
|
-
}
|
|
526
390
|
export interface DescribeCanariesLastRunResponse {
|
|
527
391
|
|
|
528
392
|
CanariesLastRun?: CanaryLastRun[];
|
|
529
393
|
|
|
530
394
|
NextToken?: string;
|
|
531
395
|
}
|
|
532
|
-
export declare namespace DescribeCanariesLastRunResponse {
|
|
533
|
-
|
|
534
|
-
const filterSensitiveLog: (obj: DescribeCanariesLastRunResponse) => any;
|
|
535
|
-
}
|
|
536
396
|
export interface DescribeRuntimeVersionsRequest {
|
|
537
397
|
|
|
538
398
|
NextToken?: string;
|
|
539
399
|
|
|
540
400
|
MaxResults?: number;
|
|
541
401
|
}
|
|
542
|
-
export declare namespace DescribeRuntimeVersionsRequest {
|
|
543
|
-
|
|
544
|
-
const filterSensitiveLog: (obj: DescribeRuntimeVersionsRequest) => any;
|
|
545
|
-
}
|
|
546
402
|
|
|
547
403
|
export interface RuntimeVersion {
|
|
548
404
|
|
|
@@ -554,52 +410,28 @@ export interface RuntimeVersion {
|
|
|
554
410
|
|
|
555
411
|
DeprecationDate?: Date;
|
|
556
412
|
}
|
|
557
|
-
export declare namespace RuntimeVersion {
|
|
558
|
-
|
|
559
|
-
const filterSensitiveLog: (obj: RuntimeVersion) => any;
|
|
560
|
-
}
|
|
561
413
|
export interface DescribeRuntimeVersionsResponse {
|
|
562
414
|
|
|
563
415
|
RuntimeVersions?: RuntimeVersion[];
|
|
564
416
|
|
|
565
417
|
NextToken?: string;
|
|
566
418
|
}
|
|
567
|
-
export declare namespace DescribeRuntimeVersionsResponse {
|
|
568
|
-
|
|
569
|
-
const filterSensitiveLog: (obj: DescribeRuntimeVersionsResponse) => any;
|
|
570
|
-
}
|
|
571
419
|
export interface DisassociateResourceRequest {
|
|
572
420
|
|
|
573
421
|
GroupIdentifier: string | undefined;
|
|
574
422
|
|
|
575
423
|
ResourceArn: string | undefined;
|
|
576
424
|
}
|
|
577
|
-
export declare namespace DisassociateResourceRequest {
|
|
578
|
-
|
|
579
|
-
const filterSensitiveLog: (obj: DisassociateResourceRequest) => any;
|
|
580
|
-
}
|
|
581
425
|
export interface DisassociateResourceResponse {
|
|
582
426
|
}
|
|
583
|
-
export declare namespace DisassociateResourceResponse {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: DisassociateResourceResponse) => any;
|
|
586
|
-
}
|
|
587
427
|
export interface GetCanaryRequest {
|
|
588
428
|
|
|
589
429
|
Name: string | undefined;
|
|
590
430
|
}
|
|
591
|
-
export declare namespace GetCanaryRequest {
|
|
592
|
-
|
|
593
|
-
const filterSensitiveLog: (obj: GetCanaryRequest) => any;
|
|
594
|
-
}
|
|
595
431
|
export interface GetCanaryResponse {
|
|
596
432
|
|
|
597
433
|
Canary?: Canary;
|
|
598
434
|
}
|
|
599
|
-
export declare namespace GetCanaryResponse {
|
|
600
|
-
|
|
601
|
-
const filterSensitiveLog: (obj: GetCanaryResponse) => any;
|
|
602
|
-
}
|
|
603
435
|
export interface GetCanaryRunsRequest {
|
|
604
436
|
|
|
605
437
|
Name: string | undefined;
|
|
@@ -608,36 +440,20 @@ export interface GetCanaryRunsRequest {
|
|
|
608
440
|
|
|
609
441
|
MaxResults?: number;
|
|
610
442
|
}
|
|
611
|
-
export declare namespace GetCanaryRunsRequest {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: GetCanaryRunsRequest) => any;
|
|
614
|
-
}
|
|
615
443
|
export interface GetCanaryRunsResponse {
|
|
616
444
|
|
|
617
445
|
CanaryRuns?: CanaryRun[];
|
|
618
446
|
|
|
619
447
|
NextToken?: string;
|
|
620
448
|
}
|
|
621
|
-
export declare namespace GetCanaryRunsResponse {
|
|
622
|
-
|
|
623
|
-
const filterSensitiveLog: (obj: GetCanaryRunsResponse) => any;
|
|
624
|
-
}
|
|
625
449
|
export interface GetGroupRequest {
|
|
626
450
|
|
|
627
451
|
GroupIdentifier: string | undefined;
|
|
628
452
|
}
|
|
629
|
-
export declare namespace GetGroupRequest {
|
|
630
|
-
|
|
631
|
-
const filterSensitiveLog: (obj: GetGroupRequest) => any;
|
|
632
|
-
}
|
|
633
453
|
export interface GetGroupResponse {
|
|
634
454
|
|
|
635
455
|
Group?: Group;
|
|
636
456
|
}
|
|
637
|
-
export declare namespace GetGroupResponse {
|
|
638
|
-
|
|
639
|
-
const filterSensitiveLog: (obj: GetGroupResponse) => any;
|
|
640
|
-
}
|
|
641
457
|
|
|
642
458
|
export interface GroupSummary {
|
|
643
459
|
|
|
@@ -647,10 +463,6 @@ export interface GroupSummary {
|
|
|
647
463
|
|
|
648
464
|
Arn?: string;
|
|
649
465
|
}
|
|
650
|
-
export declare namespace GroupSummary {
|
|
651
|
-
|
|
652
|
-
const filterSensitiveLog: (obj: GroupSummary) => any;
|
|
653
|
-
}
|
|
654
466
|
|
|
655
467
|
export declare class InternalFailureException extends __BaseException {
|
|
656
468
|
readonly name: "InternalFailureException";
|
|
@@ -667,20 +479,12 @@ export interface ListAssociatedGroupsRequest {
|
|
|
667
479
|
|
|
668
480
|
ResourceArn: string | undefined;
|
|
669
481
|
}
|
|
670
|
-
export declare namespace ListAssociatedGroupsRequest {
|
|
671
|
-
|
|
672
|
-
const filterSensitiveLog: (obj: ListAssociatedGroupsRequest) => any;
|
|
673
|
-
}
|
|
674
482
|
export interface ListAssociatedGroupsResponse {
|
|
675
483
|
|
|
676
484
|
Groups?: GroupSummary[];
|
|
677
485
|
|
|
678
486
|
NextToken?: string;
|
|
679
487
|
}
|
|
680
|
-
export declare namespace ListAssociatedGroupsResponse {
|
|
681
|
-
|
|
682
|
-
const filterSensitiveLog: (obj: ListAssociatedGroupsResponse) => any;
|
|
683
|
-
}
|
|
684
488
|
export interface ListGroupResourcesRequest {
|
|
685
489
|
|
|
686
490
|
NextToken?: string;
|
|
@@ -689,56 +493,32 @@ export interface ListGroupResourcesRequest {
|
|
|
689
493
|
|
|
690
494
|
GroupIdentifier: string | undefined;
|
|
691
495
|
}
|
|
692
|
-
export declare namespace ListGroupResourcesRequest {
|
|
693
|
-
|
|
694
|
-
const filterSensitiveLog: (obj: ListGroupResourcesRequest) => any;
|
|
695
|
-
}
|
|
696
496
|
export interface ListGroupResourcesResponse {
|
|
697
497
|
|
|
698
498
|
Resources?: string[];
|
|
699
499
|
|
|
700
500
|
NextToken?: string;
|
|
701
501
|
}
|
|
702
|
-
export declare namespace ListGroupResourcesResponse {
|
|
703
|
-
|
|
704
|
-
const filterSensitiveLog: (obj: ListGroupResourcesResponse) => any;
|
|
705
|
-
}
|
|
706
502
|
export interface ListGroupsRequest {
|
|
707
503
|
|
|
708
504
|
NextToken?: string;
|
|
709
505
|
|
|
710
506
|
MaxResults?: number;
|
|
711
507
|
}
|
|
712
|
-
export declare namespace ListGroupsRequest {
|
|
713
|
-
|
|
714
|
-
const filterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
715
|
-
}
|
|
716
508
|
export interface ListGroupsResponse {
|
|
717
509
|
|
|
718
510
|
Groups?: GroupSummary[];
|
|
719
511
|
|
|
720
512
|
NextToken?: string;
|
|
721
513
|
}
|
|
722
|
-
export declare namespace ListGroupsResponse {
|
|
723
|
-
|
|
724
|
-
const filterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
725
|
-
}
|
|
726
514
|
export interface ListTagsForResourceRequest {
|
|
727
515
|
|
|
728
516
|
ResourceArn: string | undefined;
|
|
729
517
|
}
|
|
730
|
-
export declare namespace ListTagsForResourceRequest {
|
|
731
|
-
|
|
732
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
733
|
-
}
|
|
734
518
|
export interface ListTagsForResourceResponse {
|
|
735
519
|
|
|
736
520
|
Tags?: Record<string, string>;
|
|
737
521
|
}
|
|
738
|
-
export declare namespace ListTagsForResourceResponse {
|
|
739
|
-
|
|
740
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
741
|
-
}
|
|
742
522
|
|
|
743
523
|
export declare class NotFoundException extends __BaseException {
|
|
744
524
|
readonly name: "NotFoundException";
|
|
@@ -759,62 +539,30 @@ export interface StartCanaryRequest {
|
|
|
759
539
|
|
|
760
540
|
Name: string | undefined;
|
|
761
541
|
}
|
|
762
|
-
export declare namespace StartCanaryRequest {
|
|
763
|
-
|
|
764
|
-
const filterSensitiveLog: (obj: StartCanaryRequest) => any;
|
|
765
|
-
}
|
|
766
542
|
export interface StartCanaryResponse {
|
|
767
543
|
}
|
|
768
|
-
export declare namespace StartCanaryResponse {
|
|
769
|
-
|
|
770
|
-
const filterSensitiveLog: (obj: StartCanaryResponse) => any;
|
|
771
|
-
}
|
|
772
544
|
export interface StopCanaryRequest {
|
|
773
545
|
|
|
774
546
|
Name: string | undefined;
|
|
775
547
|
}
|
|
776
|
-
export declare namespace StopCanaryRequest {
|
|
777
|
-
|
|
778
|
-
const filterSensitiveLog: (obj: StopCanaryRequest) => any;
|
|
779
|
-
}
|
|
780
548
|
export interface StopCanaryResponse {
|
|
781
549
|
}
|
|
782
|
-
export declare namespace StopCanaryResponse {
|
|
783
|
-
|
|
784
|
-
const filterSensitiveLog: (obj: StopCanaryResponse) => any;
|
|
785
|
-
}
|
|
786
550
|
export interface TagResourceRequest {
|
|
787
551
|
|
|
788
552
|
ResourceArn: string | undefined;
|
|
789
553
|
|
|
790
554
|
Tags: Record<string, string> | undefined;
|
|
791
555
|
}
|
|
792
|
-
export declare namespace TagResourceRequest {
|
|
793
|
-
|
|
794
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
795
|
-
}
|
|
796
556
|
export interface TagResourceResponse {
|
|
797
557
|
}
|
|
798
|
-
export declare namespace TagResourceResponse {
|
|
799
|
-
|
|
800
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
801
|
-
}
|
|
802
558
|
export interface UntagResourceRequest {
|
|
803
559
|
|
|
804
560
|
ResourceArn: string | undefined;
|
|
805
561
|
|
|
806
562
|
TagKeys: string[] | undefined;
|
|
807
563
|
}
|
|
808
|
-
export declare namespace UntagResourceRequest {
|
|
809
|
-
|
|
810
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
811
|
-
}
|
|
812
564
|
export interface UntagResourceResponse {
|
|
813
565
|
}
|
|
814
|
-
export declare namespace UntagResourceResponse {
|
|
815
|
-
|
|
816
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
817
|
-
}
|
|
818
566
|
|
|
819
567
|
export interface VisualReferenceInput {
|
|
820
568
|
|
|
@@ -822,10 +570,6 @@ export interface VisualReferenceInput {
|
|
|
822
570
|
|
|
823
571
|
BaseCanaryRunId: string | undefined;
|
|
824
572
|
}
|
|
825
|
-
export declare namespace VisualReferenceInput {
|
|
826
|
-
|
|
827
|
-
const filterSensitiveLog: (obj: VisualReferenceInput) => any;
|
|
828
|
-
}
|
|
829
573
|
export interface UpdateCanaryRequest {
|
|
830
574
|
|
|
831
575
|
Name: string | undefined;
|
|
@@ -852,13 +596,137 @@ export interface UpdateCanaryRequest {
|
|
|
852
596
|
|
|
853
597
|
ArtifactConfig?: ArtifactConfigInput;
|
|
854
598
|
}
|
|
855
|
-
export declare namespace UpdateCanaryRequest {
|
|
856
|
-
|
|
857
|
-
const filterSensitiveLog: (obj: UpdateCanaryRequest) => any;
|
|
858
|
-
}
|
|
859
599
|
export interface UpdateCanaryResponse {
|
|
860
600
|
}
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
601
|
+
|
|
602
|
+
export declare const S3EncryptionConfigFilterSensitiveLog: (obj: S3EncryptionConfig) => any;
|
|
603
|
+
|
|
604
|
+
export declare const ArtifactConfigInputFilterSensitiveLog: (obj: ArtifactConfigInput) => any;
|
|
605
|
+
|
|
606
|
+
export declare const ArtifactConfigOutputFilterSensitiveLog: (obj: ArtifactConfigOutput) => any;
|
|
607
|
+
|
|
608
|
+
export declare const AssociateResourceRequestFilterSensitiveLog: (obj: AssociateResourceRequest) => any;
|
|
609
|
+
|
|
610
|
+
export declare const AssociateResourceResponseFilterSensitiveLog: (obj: AssociateResourceResponse) => any;
|
|
611
|
+
|
|
612
|
+
export declare const BaseScreenshotFilterSensitiveLog: (obj: BaseScreenshot) => any;
|
|
613
|
+
|
|
614
|
+
export declare const CanaryCodeOutputFilterSensitiveLog: (obj: CanaryCodeOutput) => any;
|
|
615
|
+
|
|
616
|
+
export declare const CanaryRunConfigOutputFilterSensitiveLog: (obj: CanaryRunConfigOutput) => any;
|
|
617
|
+
|
|
618
|
+
export declare const CanaryScheduleOutputFilterSensitiveLog: (obj: CanaryScheduleOutput) => any;
|
|
619
|
+
|
|
620
|
+
export declare const CanaryStatusFilterSensitiveLog: (obj: CanaryStatus) => any;
|
|
621
|
+
|
|
622
|
+
export declare const CanaryTimelineFilterSensitiveLog: (obj: CanaryTimeline) => any;
|
|
623
|
+
|
|
624
|
+
export declare const VisualReferenceOutputFilterSensitiveLog: (obj: VisualReferenceOutput) => any;
|
|
625
|
+
|
|
626
|
+
export declare const VpcConfigOutputFilterSensitiveLog: (obj: VpcConfigOutput) => any;
|
|
627
|
+
|
|
628
|
+
export declare const CanaryFilterSensitiveLog: (obj: Canary) => any;
|
|
629
|
+
|
|
630
|
+
export declare const CanaryRunStatusFilterSensitiveLog: (obj: CanaryRunStatus) => any;
|
|
631
|
+
|
|
632
|
+
export declare const CanaryRunTimelineFilterSensitiveLog: (obj: CanaryRunTimeline) => any;
|
|
633
|
+
|
|
634
|
+
export declare const CanaryRunFilterSensitiveLog: (obj: CanaryRun) => any;
|
|
635
|
+
|
|
636
|
+
export declare const CanaryLastRunFilterSensitiveLog: (obj: CanaryLastRun) => any;
|
|
637
|
+
|
|
638
|
+
export declare const CanaryCodeInputFilterSensitiveLog: (obj: CanaryCodeInput) => any;
|
|
639
|
+
|
|
640
|
+
export declare const CanaryRunConfigInputFilterSensitiveLog: (obj: CanaryRunConfigInput) => any;
|
|
641
|
+
|
|
642
|
+
export declare const CanaryScheduleInputFilterSensitiveLog: (obj: CanaryScheduleInput) => any;
|
|
643
|
+
|
|
644
|
+
export declare const VpcConfigInputFilterSensitiveLog: (obj: VpcConfigInput) => any;
|
|
645
|
+
|
|
646
|
+
export declare const CreateCanaryRequestFilterSensitiveLog: (obj: CreateCanaryRequest) => any;
|
|
647
|
+
|
|
648
|
+
export declare const CreateCanaryResponseFilterSensitiveLog: (obj: CreateCanaryResponse) => any;
|
|
649
|
+
|
|
650
|
+
export declare const CreateGroupRequestFilterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
651
|
+
|
|
652
|
+
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
653
|
+
|
|
654
|
+
export declare const CreateGroupResponseFilterSensitiveLog: (obj: CreateGroupResponse) => any;
|
|
655
|
+
|
|
656
|
+
export declare const DeleteCanaryRequestFilterSensitiveLog: (obj: DeleteCanaryRequest) => any;
|
|
657
|
+
|
|
658
|
+
export declare const DeleteCanaryResponseFilterSensitiveLog: (obj: DeleteCanaryResponse) => any;
|
|
659
|
+
|
|
660
|
+
export declare const DeleteGroupRequestFilterSensitiveLog: (obj: DeleteGroupRequest) => any;
|
|
661
|
+
|
|
662
|
+
export declare const DeleteGroupResponseFilterSensitiveLog: (obj: DeleteGroupResponse) => any;
|
|
663
|
+
|
|
664
|
+
export declare const DescribeCanariesRequestFilterSensitiveLog: (obj: DescribeCanariesRequest) => any;
|
|
665
|
+
|
|
666
|
+
export declare const DescribeCanariesResponseFilterSensitiveLog: (obj: DescribeCanariesResponse) => any;
|
|
667
|
+
|
|
668
|
+
export declare const DescribeCanariesLastRunRequestFilterSensitiveLog: (obj: DescribeCanariesLastRunRequest) => any;
|
|
669
|
+
|
|
670
|
+
export declare const DescribeCanariesLastRunResponseFilterSensitiveLog: (obj: DescribeCanariesLastRunResponse) => any;
|
|
671
|
+
|
|
672
|
+
export declare const DescribeRuntimeVersionsRequestFilterSensitiveLog: (obj: DescribeRuntimeVersionsRequest) => any;
|
|
673
|
+
|
|
674
|
+
export declare const RuntimeVersionFilterSensitiveLog: (obj: RuntimeVersion) => any;
|
|
675
|
+
|
|
676
|
+
export declare const DescribeRuntimeVersionsResponseFilterSensitiveLog: (obj: DescribeRuntimeVersionsResponse) => any;
|
|
677
|
+
|
|
678
|
+
export declare const DisassociateResourceRequestFilterSensitiveLog: (obj: DisassociateResourceRequest) => any;
|
|
679
|
+
|
|
680
|
+
export declare const DisassociateResourceResponseFilterSensitiveLog: (obj: DisassociateResourceResponse) => any;
|
|
681
|
+
|
|
682
|
+
export declare const GetCanaryRequestFilterSensitiveLog: (obj: GetCanaryRequest) => any;
|
|
683
|
+
|
|
684
|
+
export declare const GetCanaryResponseFilterSensitiveLog: (obj: GetCanaryResponse) => any;
|
|
685
|
+
|
|
686
|
+
export declare const GetCanaryRunsRequestFilterSensitiveLog: (obj: GetCanaryRunsRequest) => any;
|
|
687
|
+
|
|
688
|
+
export declare const GetCanaryRunsResponseFilterSensitiveLog: (obj: GetCanaryRunsResponse) => any;
|
|
689
|
+
|
|
690
|
+
export declare const GetGroupRequestFilterSensitiveLog: (obj: GetGroupRequest) => any;
|
|
691
|
+
|
|
692
|
+
export declare const GetGroupResponseFilterSensitiveLog: (obj: GetGroupResponse) => any;
|
|
693
|
+
|
|
694
|
+
export declare const GroupSummaryFilterSensitiveLog: (obj: GroupSummary) => any;
|
|
695
|
+
|
|
696
|
+
export declare const ListAssociatedGroupsRequestFilterSensitiveLog: (obj: ListAssociatedGroupsRequest) => any;
|
|
697
|
+
|
|
698
|
+
export declare const ListAssociatedGroupsResponseFilterSensitiveLog: (obj: ListAssociatedGroupsResponse) => any;
|
|
699
|
+
|
|
700
|
+
export declare const ListGroupResourcesRequestFilterSensitiveLog: (obj: ListGroupResourcesRequest) => any;
|
|
701
|
+
|
|
702
|
+
export declare const ListGroupResourcesResponseFilterSensitiveLog: (obj: ListGroupResourcesResponse) => any;
|
|
703
|
+
|
|
704
|
+
export declare const ListGroupsRequestFilterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
705
|
+
|
|
706
|
+
export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
707
|
+
|
|
708
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
709
|
+
|
|
710
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
711
|
+
|
|
712
|
+
export declare const StartCanaryRequestFilterSensitiveLog: (obj: StartCanaryRequest) => any;
|
|
713
|
+
|
|
714
|
+
export declare const StartCanaryResponseFilterSensitiveLog: (obj: StartCanaryResponse) => any;
|
|
715
|
+
|
|
716
|
+
export declare const StopCanaryRequestFilterSensitiveLog: (obj: StopCanaryRequest) => any;
|
|
717
|
+
|
|
718
|
+
export declare const StopCanaryResponseFilterSensitiveLog: (obj: StopCanaryResponse) => any;
|
|
719
|
+
|
|
720
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
721
|
+
|
|
722
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
723
|
+
|
|
724
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
725
|
+
|
|
726
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
727
|
+
|
|
728
|
+
export declare const VisualReferenceInputFilterSensitiveLog: (obj: VisualReferenceInput) => any;
|
|
729
|
+
|
|
730
|
+
export declare const UpdateCanaryRequestFilterSensitiveLog: (obj: UpdateCanaryRequest) => any;
|
|
731
|
+
|
|
732
|
+
export declare const UpdateCanaryResponseFilterSensitiveLog: (obj: UpdateCanaryResponse) => any;
|