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