@aws-sdk/client-networkmanager 3.934.0 → 3.936.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,513 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AttachmentType: {
6
+ readonly CONNECT: "CONNECT";
7
+ readonly DIRECT_CONNECT_GATEWAY: "DIRECT_CONNECT_GATEWAY";
8
+ readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
9
+ readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
10
+ readonly VPC: "VPC";
11
+ };
12
+ /**
13
+ * @public
14
+ */
15
+ export type AttachmentType = (typeof AttachmentType)[keyof typeof AttachmentType];
16
+ /**
17
+ * @public
18
+ * @enum
19
+ */
20
+ export declare const AttachmentErrorCode: {
21
+ readonly DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS: "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS";
22
+ readonly DIRECT_CONNECT_GATEWAY_NOT_FOUND: "DIRECT_CONNECT_GATEWAY_NOT_FOUND";
23
+ readonly DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF: "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF";
24
+ readonly MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED: "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED";
25
+ readonly SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE: "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE";
26
+ readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
27
+ readonly SUBNET_NO_FREE_ADDRESSES: "SUBNET_NO_FREE_ADDRESSES";
28
+ readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
29
+ readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
30
+ readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
31
+ readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type AttachmentErrorCode = (typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const AttachmentState: {
42
+ readonly AVAILABLE: "AVAILABLE";
43
+ readonly CREATING: "CREATING";
44
+ readonly DELETING: "DELETING";
45
+ readonly FAILED: "FAILED";
46
+ readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
47
+ readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
48
+ readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
49
+ readonly REJECTED: "REJECTED";
50
+ readonly UPDATING: "UPDATING";
51
+ };
52
+ /**
53
+ * @public
54
+ */
55
+ export type AttachmentState = (typeof AttachmentState)[keyof typeof AttachmentState];
56
+ /**
57
+ * @public
58
+ * @enum
59
+ */
60
+ export declare const ValidationExceptionReason: {
61
+ readonly CANNOT_PARSE: "CannotParse";
62
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
63
+ readonly OTHER: "Other";
64
+ readonly UNKNOWN_OPERATION: "UnknownOperation";
65
+ };
66
+ /**
67
+ * @public
68
+ */
69
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
70
+ /**
71
+ * @public
72
+ * @enum
73
+ */
74
+ export declare const ConnectPeerAssociationState: {
75
+ readonly available: "AVAILABLE";
76
+ readonly deleted: "DELETED";
77
+ readonly deleting: "DELETING";
78
+ readonly pending: "PENDING";
79
+ };
80
+ /**
81
+ * @public
82
+ */
83
+ export type ConnectPeerAssociationState = (typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
84
+ /**
85
+ * @public
86
+ * @enum
87
+ */
88
+ export declare const CustomerGatewayAssociationState: {
89
+ readonly available: "AVAILABLE";
90
+ readonly deleted: "DELETED";
91
+ readonly deleting: "DELETING";
92
+ readonly pending: "PENDING";
93
+ };
94
+ /**
95
+ * @public
96
+ */
97
+ export type CustomerGatewayAssociationState = (typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
98
+ /**
99
+ * @public
100
+ * @enum
101
+ */
102
+ export declare const LinkAssociationState: {
103
+ readonly available: "AVAILABLE";
104
+ readonly deleted: "DELETED";
105
+ readonly deleting: "DELETING";
106
+ readonly pending: "PENDING";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type LinkAssociationState = (typeof LinkAssociationState)[keyof typeof LinkAssociationState];
112
+ /**
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const TransitGatewayConnectPeerAssociationState: {
117
+ readonly available: "AVAILABLE";
118
+ readonly deleted: "DELETED";
119
+ readonly deleting: "DELETING";
120
+ readonly pending: "PENDING";
121
+ };
122
+ /**
123
+ * @public
124
+ */
125
+ export type TransitGatewayConnectPeerAssociationState = (typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
126
+ /**
127
+ * @public
128
+ * @enum
129
+ */
130
+ export declare const ChangeAction: {
131
+ readonly ADD: "ADD";
132
+ readonly MODIFY: "MODIFY";
133
+ readonly REMOVE: "REMOVE";
134
+ };
135
+ /**
136
+ * @public
137
+ */
138
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
139
+ /**
140
+ * @public
141
+ * @enum
142
+ */
143
+ export declare const ChangeSetState: {
144
+ readonly EXECUTING: "EXECUTING";
145
+ readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
146
+ readonly FAILED_GENERATION: "FAILED_GENERATION";
147
+ readonly OUT_OF_DATE: "OUT_OF_DATE";
148
+ readonly PENDING_GENERATION: "PENDING_GENERATION";
149
+ readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
150
+ };
151
+ /**
152
+ * @public
153
+ */
154
+ export type ChangeSetState = (typeof ChangeSetState)[keyof typeof ChangeSetState];
155
+ /**
156
+ * @public
157
+ * @enum
158
+ */
159
+ export declare const ChangeStatus: {
160
+ readonly COMPLETE: "COMPLETE";
161
+ readonly FAILED: "FAILED";
162
+ readonly IN_PROGRESS: "IN_PROGRESS";
163
+ readonly NOT_STARTED: "NOT_STARTED";
164
+ };
165
+ /**
166
+ * @public
167
+ */
168
+ export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
169
+ /**
170
+ * @public
171
+ * @enum
172
+ */
173
+ export declare const ChangeType: {
174
+ readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
175
+ readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
176
+ readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
177
+ readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
178
+ readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
179
+ readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
180
+ readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
181
+ readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
182
+ readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
183
+ readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
184
+ };
185
+ /**
186
+ * @public
187
+ */
188
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
189
+ /**
190
+ * @public
191
+ * @enum
192
+ */
193
+ export declare const TunnelProtocol: {
194
+ readonly GRE: "GRE";
195
+ readonly NO_ENCAP: "NO_ENCAP";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type TunnelProtocol = (typeof TunnelProtocol)[keyof typeof TunnelProtocol];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const ConnectionState: {
206
+ readonly available: "AVAILABLE";
207
+ readonly deleting: "DELETING";
208
+ readonly pending: "PENDING";
209
+ readonly updating: "UPDATING";
210
+ };
211
+ /**
212
+ * @public
213
+ */
214
+ export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
215
+ /**
216
+ * @public
217
+ * @enum
218
+ */
219
+ export declare const ConnectionStatus: {
220
+ readonly DOWN: "DOWN";
221
+ readonly UP: "UP";
222
+ };
223
+ /**
224
+ * @public
225
+ */
226
+ export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
227
+ /**
228
+ * @public
229
+ * @enum
230
+ */
231
+ export declare const ConnectionType: {
232
+ readonly BGP: "BGP";
233
+ readonly IPSEC: "IPSEC";
234
+ };
235
+ /**
236
+ * @public
237
+ */
238
+ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
239
+ /**
240
+ * @public
241
+ * @enum
242
+ */
243
+ export declare const ConnectPeerErrorCode: {
244
+ readonly EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS";
245
+ readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
246
+ readonly INVALID_INSIDE_CIDR_BLOCK: "INVALID_INSIDE_CIDR_BLOCK";
247
+ readonly IP_OUTSIDE_SUBNET_CIDR_RANGE: "IP_OUTSIDE_SUBNET_CIDR_RANGE";
248
+ readonly NO_ASSOCIATED_CIDR_BLOCK: "NO_ASSOCIATED_CIDR_BLOCK";
249
+ readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
250
+ };
251
+ /**
252
+ * @public
253
+ */
254
+ export type ConnectPeerErrorCode = (typeof ConnectPeerErrorCode)[keyof typeof ConnectPeerErrorCode];
255
+ /**
256
+ * @public
257
+ * @enum
258
+ */
259
+ export declare const ConnectPeerState: {
260
+ readonly AVAILABLE: "AVAILABLE";
261
+ readonly CREATING: "CREATING";
262
+ readonly DELETING: "DELETING";
263
+ readonly FAILED: "FAILED";
264
+ };
265
+ /**
266
+ * @public
267
+ */
268
+ export type ConnectPeerState = (typeof ConnectPeerState)[keyof typeof ConnectPeerState];
269
+ /**
270
+ * @public
271
+ * @enum
272
+ */
273
+ export declare const CoreNetworkState: {
274
+ readonly AVAILABLE: "AVAILABLE";
275
+ readonly CREATING: "CREATING";
276
+ readonly DELETING: "DELETING";
277
+ readonly UPDATING: "UPDATING";
278
+ };
279
+ /**
280
+ * @public
281
+ */
282
+ export type CoreNetworkState = (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
283
+ /**
284
+ * @public
285
+ * @enum
286
+ */
287
+ export declare const SegmentActionServiceInsertion: {
288
+ readonly SEND_TO: "send-to";
289
+ readonly SEND_VIA: "send-via";
290
+ };
291
+ /**
292
+ * @public
293
+ */
294
+ export type SegmentActionServiceInsertion = (typeof SegmentActionServiceInsertion)[keyof typeof SegmentActionServiceInsertion];
295
+ /**
296
+ * @public
297
+ * @enum
298
+ */
299
+ export declare const SendViaMode: {
300
+ readonly DUAL_HOP: "dual-hop";
301
+ readonly SINGLE_HOP: "single-hop";
302
+ };
303
+ /**
304
+ * @public
305
+ */
306
+ export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
307
+ /**
308
+ * @public
309
+ * @enum
310
+ */
311
+ export declare const CoreNetworkPolicyAlias: {
312
+ readonly LATEST: "LATEST";
313
+ readonly LIVE: "LIVE";
314
+ };
315
+ /**
316
+ * @public
317
+ */
318
+ export type CoreNetworkPolicyAlias = (typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
319
+ /**
320
+ * @public
321
+ * @enum
322
+ */
323
+ export declare const DeviceState: {
324
+ readonly available: "AVAILABLE";
325
+ readonly deleting: "DELETING";
326
+ readonly pending: "PENDING";
327
+ readonly updating: "UPDATING";
328
+ };
329
+ /**
330
+ * @public
331
+ */
332
+ export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
333
+ /**
334
+ * @public
335
+ * @enum
336
+ */
337
+ export declare const GlobalNetworkState: {
338
+ readonly available: "AVAILABLE";
339
+ readonly deleting: "DELETING";
340
+ readonly pending: "PENDING";
341
+ readonly updating: "UPDATING";
342
+ };
343
+ /**
344
+ * @public
345
+ */
346
+ export type GlobalNetworkState = (typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
347
+ /**
348
+ * @public
349
+ * @enum
350
+ */
351
+ export declare const LinkState: {
352
+ readonly available: "AVAILABLE";
353
+ readonly deleting: "DELETING";
354
+ readonly pending: "PENDING";
355
+ readonly updating: "UPDATING";
356
+ };
357
+ /**
358
+ * @public
359
+ */
360
+ export type LinkState = (typeof LinkState)[keyof typeof LinkState];
361
+ /**
362
+ * @public
363
+ * @enum
364
+ */
365
+ export declare const SiteState: {
366
+ readonly available: "AVAILABLE";
367
+ readonly deleting: "DELETING";
368
+ readonly pending: "PENDING";
369
+ readonly updating: "UPDATING";
370
+ };
371
+ /**
372
+ * @public
373
+ */
374
+ export type SiteState = (typeof SiteState)[keyof typeof SiteState];
375
+ /**
376
+ * @public
377
+ * @enum
378
+ */
379
+ export declare const PeeringErrorCode: {
380
+ readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
381
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
382
+ readonly INVALID_TRANSIT_GATEWAY_STATE: "INVALID_TRANSIT_GATEWAY_STATE";
383
+ readonly MISSING_REQUIRED_PERMISSIONS: "MISSING_PERMISSIONS";
384
+ readonly TRANSIT_GATEWAY_NOT_FOUND: "TRANSIT_GATEWAY_NOT_FOUND";
385
+ readonly TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED: "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED";
386
+ };
387
+ /**
388
+ * @public
389
+ */
390
+ export type PeeringErrorCode = (typeof PeeringErrorCode)[keyof typeof PeeringErrorCode];
391
+ /**
392
+ * @public
393
+ * @enum
394
+ */
395
+ export declare const PeeringType: {
396
+ readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
397
+ };
398
+ /**
399
+ * @public
400
+ */
401
+ export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
402
+ /**
403
+ * @public
404
+ * @enum
405
+ */
406
+ export declare const PeeringState: {
407
+ readonly AVAILABLE: "AVAILABLE";
408
+ readonly CREATING: "CREATING";
409
+ readonly DELETING: "DELETING";
410
+ readonly FAILED: "FAILED";
411
+ };
412
+ /**
413
+ * @public
414
+ */
415
+ export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
416
+ /**
417
+ * @public
418
+ * @enum
419
+ */
420
+ export declare const TransitGatewayRegistrationState: {
421
+ readonly available: "AVAILABLE";
422
+ readonly deleted: "DELETED";
423
+ readonly deleting: "DELETING";
424
+ readonly failed: "FAILED";
425
+ readonly pending: "PENDING";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type TransitGatewayRegistrationState = (typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
431
+ /**
432
+ * @public
433
+ * @enum
434
+ */
435
+ export declare const RouteState: {
436
+ readonly ACTIVE: "ACTIVE";
437
+ readonly BLACKHOLE: "BLACKHOLE";
438
+ };
439
+ /**
440
+ * @public
441
+ */
442
+ export type RouteState = (typeof RouteState)[keyof typeof RouteState];
443
+ /**
444
+ * @public
445
+ * @enum
446
+ */
447
+ export declare const RouteType: {
448
+ readonly PROPAGATED: "PROPAGATED";
449
+ readonly STATIC: "STATIC";
450
+ };
451
+ /**
452
+ * @public
453
+ */
454
+ export type RouteType = (typeof RouteType)[keyof typeof RouteType];
455
+ /**
456
+ * @public
457
+ * @enum
458
+ */
459
+ export declare const RouteTableType: {
460
+ readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
461
+ readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
462
+ readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
463
+ };
464
+ /**
465
+ * @public
466
+ */
467
+ export type RouteTableType = (typeof RouteTableType)[keyof typeof RouteTableType];
468
+ /**
469
+ * @public
470
+ * @enum
471
+ */
472
+ export declare const RouteAnalysisCompletionReasonCode: {
473
+ readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
474
+ readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
475
+ readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
476
+ readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
477
+ readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
478
+ readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
479
+ readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
480
+ readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
481
+ readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
482
+ readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
483
+ readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
484
+ };
485
+ /**
486
+ * @public
487
+ */
488
+ export type RouteAnalysisCompletionReasonCode = (typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
489
+ /**
490
+ * @public
491
+ * @enum
492
+ */
493
+ export declare const RouteAnalysisCompletionResultCode: {
494
+ readonly CONNECTED: "CONNECTED";
495
+ readonly NOT_CONNECTED: "NOT_CONNECTED";
496
+ };
497
+ /**
498
+ * @public
499
+ */
500
+ export type RouteAnalysisCompletionResultCode = (typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
501
+ /**
502
+ * @public
503
+ * @enum
504
+ */
505
+ export declare const RouteAnalysisStatus: {
506
+ readonly completed: "COMPLETED";
507
+ readonly failed: "FAILED";
508
+ readonly running: "RUNNING";
509
+ };
510
+ /**
511
+ * @public
512
+ */
513
+ export type RouteAnalysisStatus = (typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
@@ -0,0 +1,183 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { CoreNetworkPolicyError, ValidationExceptionField } from "./models_0";
4
+ import { NetworkManagerServiceException as __BaseException } from "./NetworkManagerServiceException";
5
+ /**
6
+ * <p>You do not have sufficient access to perform this action.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ Message: string | undefined;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
17
+ }
18
+ /**
19
+ * <p>There was a conflict processing the request. Updating or deleting the resource can
20
+ * cause an inconsistent state.</p>
21
+ * @public
22
+ */
23
+ export declare class ConflictException extends __BaseException {
24
+ readonly name: "ConflictException";
25
+ readonly $fault: "client";
26
+ Message: string | undefined;
27
+ /**
28
+ * <p>The ID of the resource.</p>
29
+ * @public
30
+ */
31
+ ResourceId: string | undefined;
32
+ /**
33
+ * <p>The resource type.</p>
34
+ * @public
35
+ */
36
+ ResourceType: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>The request has failed due to an internal error.</p>
44
+ * @public
45
+ */
46
+ export declare class InternalServerException extends __BaseException {
47
+ readonly name: "InternalServerException";
48
+ readonly $fault: "server";
49
+ Message: string | undefined;
50
+ /**
51
+ * <p>Indicates when to retry the request.</p>
52
+ * @public
53
+ */
54
+ RetryAfterSeconds?: number | undefined;
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>The specified resource could not be found.</p>
62
+ * @public
63
+ */
64
+ export declare class ResourceNotFoundException extends __BaseException {
65
+ readonly name: "ResourceNotFoundException";
66
+ readonly $fault: "client";
67
+ Message: string | undefined;
68
+ /**
69
+ * <p>The ID of the resource.</p>
70
+ * @public
71
+ */
72
+ ResourceId: string | undefined;
73
+ /**
74
+ * <p>The resource type.</p>
75
+ * @public
76
+ */
77
+ ResourceType: string | undefined;
78
+ /**
79
+ * <p>The specified resource could not be found.</p>
80
+ * @public
81
+ */
82
+ Context?: Record<string, string> | undefined;
83
+ /**
84
+ * @internal
85
+ */
86
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
87
+ }
88
+ /**
89
+ * <p>The request was denied due to request throttling.</p>
90
+ * @public
91
+ */
92
+ export declare class ThrottlingException extends __BaseException {
93
+ readonly name: "ThrottlingException";
94
+ readonly $fault: "client";
95
+ Message: string | undefined;
96
+ /**
97
+ * <p>Indicates when to retry the request.</p>
98
+ * @public
99
+ */
100
+ RetryAfterSeconds?: number | undefined;
101
+ /**
102
+ * @internal
103
+ */
104
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
105
+ }
106
+ /**
107
+ * <p>The input fails to satisfy the constraints.</p>
108
+ * @public
109
+ */
110
+ export declare class ValidationException extends __BaseException {
111
+ readonly name: "ValidationException";
112
+ readonly $fault: "client";
113
+ Message: string | undefined;
114
+ /**
115
+ * <p>The reason for the error.</p>
116
+ * @public
117
+ */
118
+ Reason?: ValidationExceptionReason | undefined;
119
+ /**
120
+ * <p>The fields that caused the error, if applicable.</p>
121
+ * @public
122
+ */
123
+ Fields?: ValidationExceptionField[] | undefined;
124
+ /**
125
+ * @internal
126
+ */
127
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
128
+ }
129
+ /**
130
+ * <p>A service limit was exceeded.</p>
131
+ * @public
132
+ */
133
+ export declare class ServiceQuotaExceededException extends __BaseException {
134
+ readonly name: "ServiceQuotaExceededException";
135
+ readonly $fault: "client";
136
+ /**
137
+ * <p>The error message.</p>
138
+ * @public
139
+ */
140
+ Message: string | undefined;
141
+ /**
142
+ * <p>The ID of the resource.</p>
143
+ * @public
144
+ */
145
+ ResourceId?: string | undefined;
146
+ /**
147
+ * <p>The resource type.</p>
148
+ * @public
149
+ */
150
+ ResourceType?: string | undefined;
151
+ /**
152
+ * <p>The limit code.</p>
153
+ * @public
154
+ */
155
+ LimitCode: string | undefined;
156
+ /**
157
+ * <p>The service code.</p>
158
+ * @public
159
+ */
160
+ ServiceCode: string | undefined;
161
+ /**
162
+ * @internal
163
+ */
164
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
165
+ }
166
+ /**
167
+ * <p>Describes a core network policy exception.</p>
168
+ * @public
169
+ */
170
+ export declare class CoreNetworkPolicyException extends __BaseException {
171
+ readonly name: "CoreNetworkPolicyException";
172
+ readonly $fault: "client";
173
+ Message: string | undefined;
174
+ /**
175
+ * <p>Describes a core network policy exception.</p>
176
+ * @public
177
+ */
178
+ Errors?: CoreNetworkPolicyError[] | undefined;
179
+ /**
180
+ * @internal
181
+ */
182
+ constructor(opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>);
183
+ }