@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Synthetics.d.ts +382 -110
  3. package/dist-types/ts3.4/SyntheticsClient.d.ts +255 -94
  4. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +6 -6
  28. package/dist-types/ts3.4/models/SyntheticsServiceException.d.ts +8 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +804 -732
  31. package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListAssociatedGroupsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  45. 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
- SSE_KMS = "SSE_KMS",
5
- SSE_S3 = "SSE_S3"
6
- }
7
-
8
- export interface S3EncryptionConfig {
9
-
10
- EncryptionMode?: EncryptionMode | string;
11
-
12
- KmsKeyArn?: string;
13
- }
14
-
15
- export interface ArtifactConfigInput {
16
-
17
- S3Encryption?: S3EncryptionConfig;
18
- }
19
-
20
- export interface ArtifactConfigOutput {
21
-
22
- S3Encryption?: S3EncryptionConfig;
23
- }
24
- export interface AssociateResourceRequest {
25
-
26
- GroupIdentifier: string | undefined;
27
-
28
- ResourceArn: string | undefined;
29
- }
30
- export interface AssociateResourceResponse {
31
- }
32
-
33
- export declare class ConflictException extends __BaseException {
34
- readonly name: "ConflictException";
35
- readonly $fault: "client";
36
- Message?: string;
37
-
38
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
39
- }
40
-
41
- export declare class InternalServerException extends __BaseException {
42
- readonly name: "InternalServerException";
43
- readonly $fault: "server";
44
- Message?: string;
45
-
46
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
47
- }
48
-
49
- export declare class ResourceNotFoundException extends __BaseException {
50
- readonly name: "ResourceNotFoundException";
51
- readonly $fault: "client";
52
- Message?: string;
53
-
54
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
55
- }
56
-
57
- export declare class ServiceQuotaExceededException extends __BaseException {
58
- readonly name: "ServiceQuotaExceededException";
59
- readonly $fault: "client";
60
- Message?: string;
61
-
62
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
63
- }
64
-
65
- export declare class ValidationException extends __BaseException {
66
- readonly name: "ValidationException";
67
- readonly $fault: "client";
68
- Message?: string;
69
-
70
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
71
- }
72
-
73
- export declare class BadRequestException extends __BaseException {
74
- readonly name: "BadRequestException";
75
- readonly $fault: "client";
76
- Message?: string;
77
-
78
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
79
- }
80
-
81
- export interface BaseScreenshot {
82
-
83
- ScreenshotName: string | undefined;
84
-
85
- IgnoreCoordinates?: string[];
86
- }
87
-
88
- export interface CanaryCodeOutput {
89
-
90
- SourceLocationArn?: string;
91
-
92
- Handler?: string;
93
- }
94
-
95
- export interface CanaryRunConfigOutput {
96
-
97
- TimeoutInSeconds?: number;
98
-
99
- MemoryInMB?: number;
100
-
101
- ActiveTracing?: boolean;
102
- }
103
-
104
- export interface CanaryScheduleOutput {
105
-
106
- Expression?: string;
107
-
108
- DurationInSeconds?: number;
109
- }
110
- export declare enum CanaryState {
111
- CREATING = "CREATING",
112
- DELETING = "DELETING",
113
- ERROR = "ERROR",
114
- READY = "READY",
115
- RUNNING = "RUNNING",
116
- STARTING = "STARTING",
117
- STOPPED = "STOPPED",
118
- STOPPING = "STOPPING",
119
- UPDATING = "UPDATING"
120
- }
121
- export declare enum CanaryStateReasonCode {
122
- CREATE_FAILED = "CREATE_FAILED",
123
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
124
- CREATE_PENDING = "CREATE_PENDING",
125
- DELETE_FAILED = "DELETE_FAILED",
126
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
127
- INVALID_PERMISSIONS = "INVALID_PERMISSIONS",
128
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
129
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
130
- SYNC_DELETE_IN_PROGRESS = "SYNC_DELETE_IN_PROGRESS",
131
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
132
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
133
- UPDATE_PENDING = "UPDATE_PENDING"
134
- }
135
-
136
- export interface CanaryStatus {
137
-
138
- State?: CanaryState | string;
139
-
140
- StateReason?: string;
141
-
142
- StateReasonCode?: CanaryStateReasonCode | string;
143
- }
144
-
145
- export interface CanaryTimeline {
146
-
147
- Created?: Date;
148
-
149
- LastModified?: Date;
150
-
151
- LastStarted?: Date;
152
-
153
- LastStopped?: Date;
154
- }
155
-
156
- export interface VisualReferenceOutput {
157
-
158
- BaseScreenshots?: BaseScreenshot[];
159
-
160
- BaseCanaryRunId?: string;
161
- }
162
-
163
- export interface VpcConfigOutput {
164
-
165
- VpcId?: string;
166
-
167
- SubnetIds?: string[];
168
-
169
- SecurityGroupIds?: string[];
170
- }
171
-
172
- export interface Canary {
173
-
174
- Id?: string;
175
-
176
- Name?: string;
177
-
178
- Code?: CanaryCodeOutput;
179
-
180
- ExecutionRoleArn?: string;
181
-
182
- Schedule?: CanaryScheduleOutput;
183
-
184
- RunConfig?: CanaryRunConfigOutput;
185
-
186
- SuccessRetentionPeriodInDays?: number;
187
-
188
- FailureRetentionPeriodInDays?: number;
189
-
190
- Status?: CanaryStatus;
191
-
192
- Timeline?: CanaryTimeline;
193
-
194
- ArtifactS3Location?: string;
195
-
196
- EngineArn?: string;
197
-
198
- RuntimeVersion?: string;
199
-
200
- VpcConfig?: VpcConfigOutput;
201
-
202
- VisualReference?: VisualReferenceOutput;
203
-
204
- Tags?: Record<string, string>;
205
-
206
- ArtifactConfig?: ArtifactConfigOutput;
207
- }
208
- export declare enum CanaryRunState {
209
- FAILED = "FAILED",
210
- PASSED = "PASSED",
211
- RUNNING = "RUNNING"
212
- }
213
- export declare enum CanaryRunStateReasonCode {
214
- CANARY_FAILURE = "CANARY_FAILURE",
215
- EXECUTION_FAILURE = "EXECUTION_FAILURE"
216
- }
217
-
218
- export interface CanaryRunStatus {
219
-
220
- State?: CanaryRunState | string;
221
-
222
- StateReason?: string;
223
-
224
- StateReasonCode?: CanaryRunStateReasonCode | string;
225
- }
226
-
227
- export interface CanaryRunTimeline {
228
-
229
- Started?: Date;
230
-
231
- Completed?: Date;
232
- }
233
-
234
- export interface CanaryRun {
235
-
236
- Id?: string;
237
-
238
- Name?: string;
239
-
240
- Status?: CanaryRunStatus;
241
-
242
- Timeline?: CanaryRunTimeline;
243
-
244
- ArtifactS3Location?: string;
245
- }
246
-
247
- export interface CanaryLastRun {
248
-
249
- CanaryName?: string;
250
-
251
- LastRun?: CanaryRun;
252
- }
253
-
254
- export interface CanaryCodeInput {
255
-
256
- S3Bucket?: string;
257
-
258
- S3Key?: string;
259
-
260
- S3Version?: string;
261
-
262
- ZipFile?: Uint8Array;
263
-
264
- Handler: string | undefined;
265
- }
266
-
267
- export interface CanaryRunConfigInput {
268
-
269
- TimeoutInSeconds?: number;
270
-
271
- MemoryInMB?: number;
272
-
273
- ActiveTracing?: boolean;
274
-
275
- EnvironmentVariables?: Record<string, string>;
276
- }
277
-
278
- export interface CanaryScheduleInput {
279
-
280
- Expression: string | undefined;
281
-
282
- DurationInSeconds?: number;
283
- }
284
-
285
- export interface VpcConfigInput {
286
-
287
- SubnetIds?: string[];
288
-
289
- SecurityGroupIds?: string[];
290
- }
291
- export interface CreateCanaryRequest {
292
-
293
- Name: string | undefined;
294
-
295
- Code: CanaryCodeInput | undefined;
296
-
297
- ArtifactS3Location: string | undefined;
298
-
299
- ExecutionRoleArn: string | undefined;
300
-
301
- Schedule: CanaryScheduleInput | undefined;
302
-
303
- RunConfig?: CanaryRunConfigInput;
304
-
305
- SuccessRetentionPeriodInDays?: number;
306
-
307
- FailureRetentionPeriodInDays?: number;
308
-
309
- RuntimeVersion: string | undefined;
310
-
311
- VpcConfig?: VpcConfigInput;
312
-
313
- Tags?: Record<string, string>;
314
-
315
- ArtifactConfig?: ArtifactConfigInput;
316
- }
317
- export interface CreateCanaryResponse {
318
-
319
- Canary?: Canary;
320
- }
321
-
322
- export declare class RequestEntityTooLargeException extends __BaseException {
323
- readonly name: "RequestEntityTooLargeException";
324
- readonly $fault: "client";
325
- Message?: string;
326
-
327
- constructor(opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>);
328
- }
329
- export interface CreateGroupRequest {
330
-
331
- Name: string | undefined;
332
-
333
- Tags?: Record<string, string>;
334
- }
335
-
336
- export interface Group {
337
-
338
- Id?: string;
339
-
340
- Name?: string;
341
-
342
- Arn?: string;
343
-
344
- Tags?: Record<string, string>;
345
-
346
- CreatedTime?: Date;
347
-
348
- LastModifiedTime?: Date;
349
- }
350
- export interface CreateGroupResponse {
351
-
352
- Group?: Group;
353
- }
354
- export interface DeleteCanaryRequest {
355
-
356
- Name: string | undefined;
357
-
358
- DeleteLambda?: boolean;
359
- }
360
- export interface DeleteCanaryResponse {
361
- }
362
- export interface DeleteGroupRequest {
363
-
364
- GroupIdentifier: string | undefined;
365
- }
366
- export interface DeleteGroupResponse {
367
- }
368
- export interface DescribeCanariesRequest {
369
-
370
- NextToken?: string;
371
-
372
- MaxResults?: number;
373
-
374
- Names?: string[];
375
- }
376
- export interface DescribeCanariesResponse {
377
-
378
- Canaries?: Canary[];
379
-
380
- NextToken?: string;
381
- }
382
- export interface DescribeCanariesLastRunRequest {
383
-
384
- NextToken?: string;
385
-
386
- MaxResults?: number;
387
-
388
- Names?: string[];
389
- }
390
- export interface DescribeCanariesLastRunResponse {
391
-
392
- CanariesLastRun?: CanaryLastRun[];
393
-
394
- NextToken?: string;
395
- }
396
- export interface DescribeRuntimeVersionsRequest {
397
-
398
- NextToken?: string;
399
-
400
- MaxResults?: number;
401
- }
402
-
403
- export interface RuntimeVersion {
404
-
405
- VersionName?: string;
406
-
407
- Description?: string;
408
-
409
- ReleaseDate?: Date;
410
-
411
- DeprecationDate?: Date;
412
- }
413
- export interface DescribeRuntimeVersionsResponse {
414
-
415
- RuntimeVersions?: RuntimeVersion[];
416
-
417
- NextToken?: string;
418
- }
419
- export interface DisassociateResourceRequest {
420
-
421
- GroupIdentifier: string | undefined;
422
-
423
- ResourceArn: string | undefined;
424
- }
425
- export interface DisassociateResourceResponse {
426
- }
427
- export interface GetCanaryRequest {
428
-
429
- Name: string | undefined;
430
- }
431
- export interface GetCanaryResponse {
432
-
433
- Canary?: Canary;
434
- }
435
- export interface GetCanaryRunsRequest {
436
-
437
- Name: string | undefined;
438
-
439
- NextToken?: string;
440
-
441
- MaxResults?: number;
442
- }
443
- export interface GetCanaryRunsResponse {
444
-
445
- CanaryRuns?: CanaryRun[];
446
-
447
- NextToken?: string;
448
- }
449
- export interface GetGroupRequest {
450
-
451
- GroupIdentifier: string | undefined;
452
- }
453
- export interface GetGroupResponse {
454
-
455
- Group?: Group;
456
- }
457
-
458
- export interface GroupSummary {
459
-
460
- Id?: string;
461
-
462
- Name?: string;
463
-
464
- Arn?: string;
465
- }
466
-
467
- export declare class InternalFailureException extends __BaseException {
468
- readonly name: "InternalFailureException";
469
- readonly $fault: "server";
470
- Message?: string;
471
-
472
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
473
- }
474
- export interface ListAssociatedGroupsRequest {
475
-
476
- NextToken?: string;
477
-
478
- MaxResults?: number;
479
-
480
- ResourceArn: string | undefined;
481
- }
482
- export interface ListAssociatedGroupsResponse {
483
-
484
- Groups?: GroupSummary[];
485
-
486
- NextToken?: string;
487
- }
488
- export interface ListGroupResourcesRequest {
489
-
490
- NextToken?: string;
491
-
492
- MaxResults?: number;
493
-
494
- GroupIdentifier: string | undefined;
495
- }
496
- export interface ListGroupResourcesResponse {
497
-
498
- Resources?: string[];
499
-
500
- NextToken?: string;
501
- }
502
- export interface ListGroupsRequest {
503
-
504
- NextToken?: string;
505
-
506
- MaxResults?: number;
507
- }
508
- export interface ListGroupsResponse {
509
-
510
- Groups?: GroupSummary[];
511
-
512
- NextToken?: string;
513
- }
514
- export interface ListTagsForResourceRequest {
515
-
516
- ResourceArn: string | undefined;
517
- }
518
- export interface ListTagsForResourceResponse {
519
-
520
- Tags?: Record<string, string>;
521
- }
522
-
523
- export declare class NotFoundException extends __BaseException {
524
- readonly name: "NotFoundException";
525
- readonly $fault: "client";
526
- Message?: string;
527
-
528
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
529
- }
530
-
531
- export declare class TooManyRequestsException extends __BaseException {
532
- readonly name: "TooManyRequestsException";
533
- readonly $fault: "client";
534
- Message?: string;
535
-
536
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
537
- }
538
- export interface StartCanaryRequest {
539
-
540
- Name: string | undefined;
541
- }
542
- export interface StartCanaryResponse {
543
- }
544
- export interface StopCanaryRequest {
545
-
546
- Name: string | undefined;
547
- }
548
- export interface StopCanaryResponse {
549
- }
550
- export interface TagResourceRequest {
551
-
552
- ResourceArn: string | undefined;
553
-
554
- Tags: Record<string, string> | undefined;
555
- }
556
- export interface TagResourceResponse {
557
- }
558
- export interface UntagResourceRequest {
559
-
560
- ResourceArn: string | undefined;
561
-
562
- TagKeys: string[] | undefined;
563
- }
564
- export interface UntagResourceResponse {
565
- }
566
-
567
- export interface VisualReferenceInput {
568
-
569
- BaseScreenshots?: BaseScreenshot[];
570
-
571
- BaseCanaryRunId: string | undefined;
572
- }
573
- export interface UpdateCanaryRequest {
574
-
575
- Name: string | undefined;
576
-
577
- Code?: CanaryCodeInput;
578
-
579
- ExecutionRoleArn?: string;
580
-
581
- RuntimeVersion?: string;
582
-
583
- Schedule?: CanaryScheduleInput;
584
-
585
- RunConfig?: CanaryRunConfigInput;
586
-
587
- SuccessRetentionPeriodInDays?: number;
588
-
589
- FailureRetentionPeriodInDays?: number;
590
-
591
- VpcConfig?: VpcConfigInput;
592
-
593
- VisualReference?: VisualReferenceInput;
594
-
595
- ArtifactS3Location?: string;
596
-
597
- ArtifactConfig?: ArtifactConfigInput;
598
- }
599
- export interface UpdateCanaryResponse {
600
- }
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;
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;