@aws-sdk/client-synthetics 3.934.0 → 3.935.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.
@@ -0,0 +1,149 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const EncryptionMode: {
6
+ readonly SSE_KMS: "SSE_KMS";
7
+ readonly SSE_S3: "SSE_S3";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const BrowserType: {
18
+ readonly CHROME: "CHROME";
19
+ readonly FIREFOX: "FIREFOX";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const DependencyType: {
30
+ readonly LambdaLayer: "LambdaLayer";
31
+ };
32
+ /**
33
+ * @public
34
+ */
35
+ export type DependencyType = (typeof DependencyType)[keyof typeof DependencyType];
36
+ /**
37
+ * @public
38
+ * @enum
39
+ */
40
+ export declare const ProvisionedResourceCleanupSetting: {
41
+ readonly AUTOMATIC: "AUTOMATIC";
42
+ readonly OFF: "OFF";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type ProvisionedResourceCleanupSetting = (typeof ProvisionedResourceCleanupSetting)[keyof typeof ProvisionedResourceCleanupSetting];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const CanaryState: {
53
+ readonly CREATING: "CREATING";
54
+ readonly DELETING: "DELETING";
55
+ readonly ERROR: "ERROR";
56
+ readonly READY: "READY";
57
+ readonly RUNNING: "RUNNING";
58
+ readonly STARTING: "STARTING";
59
+ readonly STOPPED: "STOPPED";
60
+ readonly STOPPING: "STOPPING";
61
+ readonly UPDATING: "UPDATING";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type CanaryState = (typeof CanaryState)[keyof typeof CanaryState];
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const CanaryStateReasonCode: {
72
+ readonly CREATE_FAILED: "CREATE_FAILED";
73
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
74
+ readonly CREATE_PENDING: "CREATE_PENDING";
75
+ readonly DELETE_FAILED: "DELETE_FAILED";
76
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
77
+ readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
78
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
79
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
80
+ readonly SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS";
81
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
82
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
83
+ readonly UPDATE_PENDING: "UPDATE_PENDING";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type CanaryStateReasonCode = (typeof CanaryStateReasonCode)[keyof typeof CanaryStateReasonCode];
89
+ /**
90
+ * @public
91
+ * @enum
92
+ */
93
+ export declare const CanaryRunState: {
94
+ readonly FAILED: "FAILED";
95
+ readonly PASSED: "PASSED";
96
+ readonly RUNNING: "RUNNING";
97
+ };
98
+ /**
99
+ * @public
100
+ */
101
+ export type CanaryRunState = (typeof CanaryRunState)[keyof typeof CanaryRunState];
102
+ /**
103
+ * @public
104
+ * @enum
105
+ */
106
+ export declare const CanaryRunStateReasonCode: {
107
+ readonly CANARY_FAILURE: "CANARY_FAILURE";
108
+ readonly EXECUTION_FAILURE: "EXECUTION_FAILURE";
109
+ };
110
+ /**
111
+ * @public
112
+ */
113
+ export type CanaryRunStateReasonCode = (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
114
+ /**
115
+ * @public
116
+ * @enum
117
+ */
118
+ export declare const CanaryRunTestResult: {
119
+ readonly FAILED: "FAILED";
120
+ readonly PASSED: "PASSED";
121
+ readonly UNKNOWN: "UNKNOWN";
122
+ };
123
+ /**
124
+ * @public
125
+ */
126
+ export type CanaryRunTestResult = (typeof CanaryRunTestResult)[keyof typeof CanaryRunTestResult];
127
+ /**
128
+ * @public
129
+ * @enum
130
+ */
131
+ export declare const ResourceToTag: {
132
+ readonly LAMBDA_FUNCTION: "lambda-function";
133
+ };
134
+ /**
135
+ * @public
136
+ */
137
+ export type ResourceToTag = (typeof ResourceToTag)[keyof typeof ResourceToTag];
138
+ /**
139
+ * @public
140
+ * @enum
141
+ */
142
+ export declare const RunType: {
143
+ readonly CANARY_RUN: "CANARY_RUN";
144
+ readonly DRY_RUN: "DRY_RUN";
145
+ };
146
+ /**
147
+ * @public
148
+ */
149
+ export type RunType = (typeof RunType)[keyof typeof RunType];
@@ -0,0 +1,145 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
3
+ /**
4
+ * <p>You don't have permission to perform this operation on this resource.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>A conflicting operation is already in progress.</p>
18
+ * @public
19
+ */
20
+ export declare class ConflictException extends __BaseException {
21
+ readonly name: "ConflictException";
22
+ readonly $fault: "client";
23
+ Message?: string | undefined;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>An unknown internal error occurred.</p>
31
+ * @public
32
+ */
33
+ export declare class InternalServerException extends __BaseException {
34
+ readonly name: "InternalServerException";
35
+ readonly $fault: "server";
36
+ Message?: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>One of the specified resources was not found.</p>
44
+ * @public
45
+ */
46
+ export declare class ResourceNotFoundException extends __BaseException {
47
+ readonly name: "ResourceNotFoundException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p>The request exceeded a service quota value.</p>
57
+ * @public
58
+ */
59
+ export declare class ServiceQuotaExceededException extends __BaseException {
60
+ readonly name: "ServiceQuotaExceededException";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p>A parameter could not be validated.</p>
70
+ * @public
71
+ */
72
+ export declare class ValidationException extends __BaseException {
73
+ readonly name: "ValidationException";
74
+ readonly $fault: "client";
75
+ Message?: string | undefined;
76
+ /**
77
+ * @internal
78
+ */
79
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
80
+ }
81
+ /**
82
+ * <p>The request was not valid.</p>
83
+ * @public
84
+ */
85
+ export declare class BadRequestException extends __BaseException {
86
+ readonly name: "BadRequestException";
87
+ readonly $fault: "client";
88
+ Message?: string | undefined;
89
+ /**
90
+ * @internal
91
+ */
92
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
93
+ }
94
+ /**
95
+ * <p>One of the input resources is larger than is allowed.</p>
96
+ * @public
97
+ */
98
+ export declare class RequestEntityTooLargeException extends __BaseException {
99
+ readonly name: "RequestEntityTooLargeException";
100
+ readonly $fault: "client";
101
+ Message?: string | undefined;
102
+ /**
103
+ * @internal
104
+ */
105
+ constructor(opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>);
106
+ }
107
+ /**
108
+ * <p>An internal failure occurred. Try the operation again.</p>
109
+ * @public
110
+ */
111
+ export declare class InternalFailureException extends __BaseException {
112
+ readonly name: "InternalFailureException";
113
+ readonly $fault: "server";
114
+ Message?: string | undefined;
115
+ /**
116
+ * @internal
117
+ */
118
+ constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
119
+ }
120
+ /**
121
+ * <p>The specified resource was not found.</p>
122
+ * @public
123
+ */
124
+ export declare class NotFoundException extends __BaseException {
125
+ readonly name: "NotFoundException";
126
+ readonly $fault: "client";
127
+ Message?: string | undefined;
128
+ /**
129
+ * @internal
130
+ */
131
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
132
+ }
133
+ /**
134
+ * <p>There were too many simultaneous requests. Try the operation again.</p>
135
+ * @public
136
+ */
137
+ export declare class TooManyRequestsException extends __BaseException {
138
+ readonly name: "TooManyRequestsException";
139
+ readonly $fault: "client";
140
+ Message?: string | undefined;
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
145
+ }
@@ -1,30 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
3
- /**
4
- * <p>You don't have permission to perform this operation on this resource.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const EncryptionMode: {
21
- readonly SSE_KMS: "SSE_KMS";
22
- readonly SSE_S3: "SSE_S3";
23
- };
24
- /**
25
- * @public
26
- */
27
- export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode];
1
+ import { BrowserType, CanaryRunState, CanaryRunStateReasonCode, CanaryRunTestResult, CanaryState, CanaryStateReasonCode, DependencyType, EncryptionMode, ProvisionedResourceCleanupSetting, ResourceToTag, RunType } from "./enums";
28
2
  /**
29
3
  * <p>A structure that contains the configuration of encryption-at-rest settings for canary artifacts that the canary
30
4
  * uploads to Amazon S3. </p>
@@ -102,84 +76,6 @@ export interface AssociateResourceRequest {
102
76
  */
103
77
  export interface AssociateResourceResponse {
104
78
  }
105
- /**
106
- * <p>A conflicting operation is already in progress.</p>
107
- * @public
108
- */
109
- export declare class ConflictException extends __BaseException {
110
- readonly name: "ConflictException";
111
- readonly $fault: "client";
112
- Message?: string | undefined;
113
- /**
114
- * @internal
115
- */
116
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
117
- }
118
- /**
119
- * <p>An unknown internal error occurred.</p>
120
- * @public
121
- */
122
- export declare class InternalServerException extends __BaseException {
123
- readonly name: "InternalServerException";
124
- readonly $fault: "server";
125
- Message?: string | undefined;
126
- /**
127
- * @internal
128
- */
129
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
130
- }
131
- /**
132
- * <p>One of the specified resources was not found.</p>
133
- * @public
134
- */
135
- export declare class ResourceNotFoundException extends __BaseException {
136
- readonly name: "ResourceNotFoundException";
137
- readonly $fault: "client";
138
- Message?: string | undefined;
139
- /**
140
- * @internal
141
- */
142
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
143
- }
144
- /**
145
- * <p>The request exceeded a service quota value.</p>
146
- * @public
147
- */
148
- export declare class ServiceQuotaExceededException extends __BaseException {
149
- readonly name: "ServiceQuotaExceededException";
150
- readonly $fault: "client";
151
- Message?: string | undefined;
152
- /**
153
- * @internal
154
- */
155
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
156
- }
157
- /**
158
- * <p>A parameter could not be validated.</p>
159
- * @public
160
- */
161
- export declare class ValidationException extends __BaseException {
162
- readonly name: "ValidationException";
163
- readonly $fault: "client";
164
- Message?: string | undefined;
165
- /**
166
- * @internal
167
- */
168
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
169
- }
170
- /**
171
- * <p>The request was not valid.</p>
172
- * @public
173
- */
174
- export declare class BadRequestException extends __BaseException {
175
- readonly name: "BadRequestException";
176
- readonly $fault: "client";
177
- Message?: string | undefined;
178
- /**
179
- * @internal
180
- */
181
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
182
- }
183
79
  /**
184
80
  * <p>A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary.</p>
185
81
  * @public
@@ -202,18 +98,6 @@ export interface BaseScreenshot {
202
98
  */
203
99
  IgnoreCoordinates?: string[] | undefined;
204
100
  }
205
- /**
206
- * @public
207
- * @enum
208
- */
209
- export declare const BrowserType: {
210
- readonly CHROME: "CHROME";
211
- readonly FIREFOX: "FIREFOX";
212
- };
213
- /**
214
- * @public
215
- */
216
- export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
217
101
  /**
218
102
  * <p>A structure that specifies the browser type to use for a canary run.</p>
219
103
  * @public
@@ -225,17 +109,6 @@ export interface BrowserConfig {
225
109
  */
226
110
  BrowserType?: BrowserType | undefined;
227
111
  }
228
- /**
229
- * @public
230
- * @enum
231
- */
232
- export declare const DependencyType: {
233
- readonly LambdaLayer: "LambdaLayer";
234
- };
235
- /**
236
- * @public
237
- */
238
- export type DependencyType = (typeof DependencyType)[keyof typeof DependencyType];
239
112
  /**
240
113
  * <p>A structure that contains information about a dependency for a canary.</p>
241
114
  * @public
@@ -318,18 +191,6 @@ export interface EngineConfig {
318
191
  */
319
192
  BrowserType?: BrowserType | undefined;
320
193
  }
321
- /**
322
- * @public
323
- * @enum
324
- */
325
- export declare const ProvisionedResourceCleanupSetting: {
326
- readonly AUTOMATIC: "AUTOMATIC";
327
- readonly OFF: "OFF";
328
- };
329
- /**
330
- * @public
331
- */
332
- export type ProvisionedResourceCleanupSetting = (typeof ProvisionedResourceCleanupSetting)[keyof typeof ProvisionedResourceCleanupSetting];
333
194
  /**
334
195
  * <p>A structure that contains information about a canary run.</p>
335
196
  * @public
@@ -405,47 +266,6 @@ export interface CanaryScheduleOutput {
405
266
  */
406
267
  RetryConfig?: RetryConfigOutput | undefined;
407
268
  }
408
- /**
409
- * @public
410
- * @enum
411
- */
412
- export declare const CanaryState: {
413
- readonly CREATING: "CREATING";
414
- readonly DELETING: "DELETING";
415
- readonly ERROR: "ERROR";
416
- readonly READY: "READY";
417
- readonly RUNNING: "RUNNING";
418
- readonly STARTING: "STARTING";
419
- readonly STOPPED: "STOPPED";
420
- readonly STOPPING: "STOPPING";
421
- readonly UPDATING: "UPDATING";
422
- };
423
- /**
424
- * @public
425
- */
426
- export type CanaryState = (typeof CanaryState)[keyof typeof CanaryState];
427
- /**
428
- * @public
429
- * @enum
430
- */
431
- export declare const CanaryStateReasonCode: {
432
- readonly CREATE_FAILED: "CREATE_FAILED";
433
- readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
434
- readonly CREATE_PENDING: "CREATE_PENDING";
435
- readonly DELETE_FAILED: "DELETE_FAILED";
436
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
437
- readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
438
- readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
439
- readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
440
- readonly SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS";
441
- readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
442
- readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
443
- readonly UPDATE_PENDING: "UPDATE_PENDING";
444
- };
445
- /**
446
- * @public
447
- */
448
- export type CanaryStateReasonCode = (typeof CanaryStateReasonCode)[keyof typeof CanaryStateReasonCode];
449
269
  /**
450
270
  * <p>A structure that contains the current state of the canary.</p>
451
271
  * @public
@@ -707,44 +527,6 @@ export interface CanaryDryRunConfigOutput {
707
527
  */
708
528
  DryRunId?: string | undefined;
709
529
  }
710
- /**
711
- * @public
712
- * @enum
713
- */
714
- export declare const CanaryRunState: {
715
- readonly FAILED: "FAILED";
716
- readonly PASSED: "PASSED";
717
- readonly RUNNING: "RUNNING";
718
- };
719
- /**
720
- * @public
721
- */
722
- export type CanaryRunState = (typeof CanaryRunState)[keyof typeof CanaryRunState];
723
- /**
724
- * @public
725
- * @enum
726
- */
727
- export declare const CanaryRunStateReasonCode: {
728
- readonly CANARY_FAILURE: "CANARY_FAILURE";
729
- readonly EXECUTION_FAILURE: "EXECUTION_FAILURE";
730
- };
731
- /**
732
- * @public
733
- */
734
- export type CanaryRunStateReasonCode = (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
735
- /**
736
- * @public
737
- * @enum
738
- */
739
- export declare const CanaryRunTestResult: {
740
- readonly FAILED: "FAILED";
741
- readonly PASSED: "PASSED";
742
- readonly UNKNOWN: "UNKNOWN";
743
- };
744
- /**
745
- * @public
746
- */
747
- export type CanaryRunTestResult = (typeof CanaryRunTestResult)[keyof typeof CanaryRunTestResult];
748
530
  /**
749
531
  * <p>This structure contains the status information about a canary run.</p>
750
532
  * @public
@@ -1056,17 +838,6 @@ export interface CanaryScheduleInput {
1056
838
  */
1057
839
  RetryConfig?: RetryConfigInput | undefined;
1058
840
  }
1059
- /**
1060
- * @public
1061
- * @enum
1062
- */
1063
- export declare const ResourceToTag: {
1064
- readonly LAMBDA_FUNCTION: "lambda-function";
1065
- };
1066
- /**
1067
- * @public
1068
- */
1069
- export type ResourceToTag = (typeof ResourceToTag)[keyof typeof ResourceToTag];
1070
841
  /**
1071
842
  * <p>If this canary is to test an endpoint in a VPC, this structure contains
1072
843
  * information about the subnets and security groups of the VPC endpoint.
@@ -1272,19 +1043,6 @@ export interface CreateCanaryResponse {
1272
1043
  */
1273
1044
  Canary?: Canary | undefined;
1274
1045
  }
1275
- /**
1276
- * <p>One of the input resources is larger than is allowed.</p>
1277
- * @public
1278
- */
1279
- export declare class RequestEntityTooLargeException extends __BaseException {
1280
- readonly name: "RequestEntityTooLargeException";
1281
- readonly $fault: "client";
1282
- Message?: string | undefined;
1283
- /**
1284
- * @internal
1285
- */
1286
- constructor(opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>);
1287
- }
1288
1046
  /**
1289
1047
  * @public
1290
1048
  */
@@ -1608,18 +1366,6 @@ export interface GetCanaryResponse {
1608
1366
  */
1609
1367
  Canary?: Canary | undefined;
1610
1368
  }
1611
- /**
1612
- * @public
1613
- * @enum
1614
- */
1615
- export declare const RunType: {
1616
- readonly CANARY_RUN: "CANARY_RUN";
1617
- readonly DRY_RUN: "DRY_RUN";
1618
- };
1619
- /**
1620
- * @public
1621
- */
1622
- export type RunType = (typeof RunType)[keyof typeof RunType];
1623
1369
  /**
1624
1370
  * @public
1625
1371
  */
@@ -1734,19 +1480,6 @@ export interface GroupSummary {
1734
1480
  */
1735
1481
  Arn?: string | undefined;
1736
1482
  }
1737
- /**
1738
- * <p>An internal failure occurred. Try the operation again.</p>
1739
- * @public
1740
- */
1741
- export declare class InternalFailureException extends __BaseException {
1742
- readonly name: "InternalFailureException";
1743
- readonly $fault: "server";
1744
- Message?: string | undefined;
1745
- /**
1746
- * @internal
1747
- */
1748
- constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
1749
- }
1750
1483
  /**
1751
1484
  * @public
1752
1485
  */
@@ -1890,32 +1623,6 @@ export interface ListTagsForResourceResponse {
1890
1623
  */
1891
1624
  Tags?: Record<string, string> | undefined;
1892
1625
  }
1893
- /**
1894
- * <p>The specified resource was not found.</p>
1895
- * @public
1896
- */
1897
- export declare class NotFoundException extends __BaseException {
1898
- readonly name: "NotFoundException";
1899
- readonly $fault: "client";
1900
- Message?: string | undefined;
1901
- /**
1902
- * @internal
1903
- */
1904
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1905
- }
1906
- /**
1907
- * <p>There were too many simultaneous requests. Try the operation again.</p>
1908
- * @public
1909
- */
1910
- export declare class TooManyRequestsException extends __BaseException {
1911
- readonly name: "TooManyRequestsException";
1912
- readonly $fault: "client";
1913
- Message?: string | undefined;
1914
- /**
1915
- * @internal
1916
- */
1917
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
1918
- }
1919
1626
  /**
1920
1627
  * @public
1921
1628
  */
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SyntheticsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { SyntheticsServiceException } from "./models/SyntheticsServiceException";