@aws-sdk/client-route53resolver 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,251 @@
1
+ import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class ConflictException extends __BaseException {
17
+ name = "ConflictException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "ConflictException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, ConflictException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class InternalServiceErrorException extends __BaseException {
31
+ name = "InternalServiceErrorException";
32
+ $fault = "client";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "InternalServiceErrorException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class LimitExceededException extends __BaseException {
45
+ name = "LimitExceededException";
46
+ $fault = "client";
47
+ Message;
48
+ ResourceType;
49
+ constructor(opts) {
50
+ super({
51
+ name: "LimitExceededException",
52
+ $fault: "client",
53
+ ...opts,
54
+ });
55
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
56
+ this.Message = opts.Message;
57
+ this.ResourceType = opts.ResourceType;
58
+ }
59
+ }
60
+ export class ResourceNotFoundException extends __BaseException {
61
+ name = "ResourceNotFoundException";
62
+ $fault = "client";
63
+ Message;
64
+ ResourceType;
65
+ constructor(opts) {
66
+ super({
67
+ name: "ResourceNotFoundException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
72
+ this.Message = opts.Message;
73
+ this.ResourceType = opts.ResourceType;
74
+ }
75
+ }
76
+ export class ThrottlingException extends __BaseException {
77
+ name = "ThrottlingException";
78
+ $fault = "client";
79
+ Message;
80
+ constructor(opts) {
81
+ super({
82
+ name: "ThrottlingException",
83
+ $fault: "client",
84
+ ...opts,
85
+ });
86
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
87
+ this.Message = opts.Message;
88
+ }
89
+ }
90
+ export class ValidationException extends __BaseException {
91
+ name = "ValidationException";
92
+ $fault = "client";
93
+ Message;
94
+ constructor(opts) {
95
+ super({
96
+ name: "ValidationException",
97
+ $fault: "client",
98
+ ...opts,
99
+ });
100
+ Object.setPrototypeOf(this, ValidationException.prototype);
101
+ this.Message = opts.Message;
102
+ }
103
+ }
104
+ export class InvalidParameterException extends __BaseException {
105
+ name = "InvalidParameterException";
106
+ $fault = "client";
107
+ Message;
108
+ FieldName;
109
+ constructor(opts) {
110
+ super({
111
+ name: "InvalidParameterException",
112
+ $fault: "client",
113
+ ...opts,
114
+ });
115
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
116
+ this.Message = opts.Message;
117
+ this.FieldName = opts.FieldName;
118
+ }
119
+ }
120
+ export class InvalidRequestException extends __BaseException {
121
+ name = "InvalidRequestException";
122
+ $fault = "client";
123
+ Message;
124
+ constructor(opts) {
125
+ super({
126
+ name: "InvalidRequestException",
127
+ $fault: "client",
128
+ ...opts,
129
+ });
130
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
131
+ this.Message = opts.Message;
132
+ }
133
+ }
134
+ export class ResourceExistsException extends __BaseException {
135
+ name = "ResourceExistsException";
136
+ $fault = "client";
137
+ Message;
138
+ ResourceType;
139
+ constructor(opts) {
140
+ super({
141
+ name: "ResourceExistsException",
142
+ $fault: "client",
143
+ ...opts,
144
+ });
145
+ Object.setPrototypeOf(this, ResourceExistsException.prototype);
146
+ this.Message = opts.Message;
147
+ this.ResourceType = opts.ResourceType;
148
+ }
149
+ }
150
+ export class ResourceUnavailableException extends __BaseException {
151
+ name = "ResourceUnavailableException";
152
+ $fault = "client";
153
+ Message;
154
+ ResourceType;
155
+ constructor(opts) {
156
+ super({
157
+ name: "ResourceUnavailableException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
162
+ this.Message = opts.Message;
163
+ this.ResourceType = opts.ResourceType;
164
+ }
165
+ }
166
+ export class ServiceQuotaExceededException extends __BaseException {
167
+ name = "ServiceQuotaExceededException";
168
+ $fault = "client";
169
+ Message;
170
+ constructor(opts) {
171
+ super({
172
+ name: "ServiceQuotaExceededException",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
177
+ this.Message = opts.Message;
178
+ }
179
+ }
180
+ export class ResourceInUseException extends __BaseException {
181
+ name = "ResourceInUseException";
182
+ $fault = "client";
183
+ Message;
184
+ ResourceType;
185
+ constructor(opts) {
186
+ super({
187
+ name: "ResourceInUseException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
192
+ this.Message = opts.Message;
193
+ this.ResourceType = opts.ResourceType;
194
+ }
195
+ }
196
+ export class UnknownResourceException extends __BaseException {
197
+ name = "UnknownResourceException";
198
+ $fault = "client";
199
+ Message;
200
+ constructor(opts) {
201
+ super({
202
+ name: "UnknownResourceException",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ Object.setPrototypeOf(this, UnknownResourceException.prototype);
207
+ this.Message = opts.Message;
208
+ }
209
+ }
210
+ export class InvalidNextTokenException extends __BaseException {
211
+ name = "InvalidNextTokenException";
212
+ $fault = "client";
213
+ Message;
214
+ constructor(opts) {
215
+ super({
216
+ name: "InvalidNextTokenException",
217
+ $fault: "client",
218
+ ...opts,
219
+ });
220
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
221
+ this.Message = opts.Message;
222
+ }
223
+ }
224
+ export class InvalidPolicyDocument extends __BaseException {
225
+ name = "InvalidPolicyDocument";
226
+ $fault = "client";
227
+ Message;
228
+ constructor(opts) {
229
+ super({
230
+ name: "InvalidPolicyDocument",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ Object.setPrototypeOf(this, InvalidPolicyDocument.prototype);
235
+ this.Message = opts.Message;
236
+ }
237
+ }
238
+ export class InvalidTagException extends __BaseException {
239
+ name = "InvalidTagException";
240
+ $fault = "client";
241
+ Message;
242
+ constructor(opts) {
243
+ super({
244
+ name: "InvalidTagException",
245
+ $fault: "client",
246
+ ...opts,
247
+ });
248
+ Object.setPrototypeOf(this, InvalidTagException.prototype);
249
+ this.Message = opts.Message;
250
+ }
251
+ }
@@ -1,432 +1 @@
1
- import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const Action = {
17
- ALERT: "ALERT",
18
- ALLOW: "ALLOW",
19
- BLOCK: "BLOCK",
20
- };
21
- export const MutationProtectionStatus = {
22
- DISABLED: "DISABLED",
23
- ENABLED: "ENABLED",
24
- };
25
- export const FirewallRuleGroupAssociationStatus = {
26
- COMPLETE: "COMPLETE",
27
- DELETING: "DELETING",
28
- UPDATING: "UPDATING",
29
- };
30
- export class ConflictException extends __BaseException {
31
- name = "ConflictException";
32
- $fault = "client";
33
- Message;
34
- constructor(opts) {
35
- super({
36
- name: "ConflictException",
37
- $fault: "client",
38
- ...opts,
39
- });
40
- Object.setPrototypeOf(this, ConflictException.prototype);
41
- this.Message = opts.Message;
42
- }
43
- }
44
- export class InternalServiceErrorException extends __BaseException {
45
- name = "InternalServiceErrorException";
46
- $fault = "client";
47
- Message;
48
- constructor(opts) {
49
- super({
50
- name: "InternalServiceErrorException",
51
- $fault: "client",
52
- ...opts,
53
- });
54
- Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
55
- this.Message = opts.Message;
56
- }
57
- }
58
- export class LimitExceededException extends __BaseException {
59
- name = "LimitExceededException";
60
- $fault = "client";
61
- Message;
62
- ResourceType;
63
- constructor(opts) {
64
- super({
65
- name: "LimitExceededException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- Object.setPrototypeOf(this, LimitExceededException.prototype);
70
- this.Message = opts.Message;
71
- this.ResourceType = opts.ResourceType;
72
- }
73
- }
74
- export class ResourceNotFoundException extends __BaseException {
75
- name = "ResourceNotFoundException";
76
- $fault = "client";
77
- Message;
78
- ResourceType;
79
- constructor(opts) {
80
- super({
81
- name: "ResourceNotFoundException",
82
- $fault: "client",
83
- ...opts,
84
- });
85
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
86
- this.Message = opts.Message;
87
- this.ResourceType = opts.ResourceType;
88
- }
89
- }
90
- export class ThrottlingException extends __BaseException {
91
- name = "ThrottlingException";
92
- $fault = "client";
93
- Message;
94
- constructor(opts) {
95
- super({
96
- name: "ThrottlingException",
97
- $fault: "client",
98
- ...opts,
99
- });
100
- Object.setPrototypeOf(this, ThrottlingException.prototype);
101
- this.Message = opts.Message;
102
- }
103
- }
104
- export class ValidationException extends __BaseException {
105
- name = "ValidationException";
106
- $fault = "client";
107
- Message;
108
- constructor(opts) {
109
- super({
110
- name: "ValidationException",
111
- $fault: "client",
112
- ...opts,
113
- });
114
- Object.setPrototypeOf(this, ValidationException.prototype);
115
- this.Message = opts.Message;
116
- }
117
- }
118
- export const ResolverEndpointDirection = {
119
- Inbound: "INBOUND",
120
- InboundDelegation: "INBOUND_DELEGATION",
121
- Outbound: "OUTBOUND",
122
- };
123
- export const Protocol = {
124
- DO53: "Do53",
125
- DOH: "DoH",
126
- DOHFIPS: "DoH-FIPS",
127
- };
128
- export const ResolverEndpointType = {
129
- DUALSTACK: "DUALSTACK",
130
- IPV4: "IPV4",
131
- IPV6: "IPV6",
132
- };
133
- export const ResolverEndpointStatus = {
134
- ActionNeeded: "ACTION_NEEDED",
135
- AutoRecovering: "AUTO_RECOVERING",
136
- Creating: "CREATING",
137
- Deleting: "DELETING",
138
- Operational: "OPERATIONAL",
139
- Updating: "UPDATING",
140
- };
141
- export class InvalidParameterException extends __BaseException {
142
- name = "InvalidParameterException";
143
- $fault = "client";
144
- Message;
145
- FieldName;
146
- constructor(opts) {
147
- super({
148
- name: "InvalidParameterException",
149
- $fault: "client",
150
- ...opts,
151
- });
152
- Object.setPrototypeOf(this, InvalidParameterException.prototype);
153
- this.Message = opts.Message;
154
- this.FieldName = opts.FieldName;
155
- }
156
- }
157
- export class InvalidRequestException extends __BaseException {
158
- name = "InvalidRequestException";
159
- $fault = "client";
160
- Message;
161
- constructor(opts) {
162
- super({
163
- name: "InvalidRequestException",
164
- $fault: "client",
165
- ...opts,
166
- });
167
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
168
- this.Message = opts.Message;
169
- }
170
- }
171
- export class ResourceExistsException extends __BaseException {
172
- name = "ResourceExistsException";
173
- $fault = "client";
174
- Message;
175
- ResourceType;
176
- constructor(opts) {
177
- super({
178
- name: "ResourceExistsException",
179
- $fault: "client",
180
- ...opts,
181
- });
182
- Object.setPrototypeOf(this, ResourceExistsException.prototype);
183
- this.Message = opts.Message;
184
- this.ResourceType = opts.ResourceType;
185
- }
186
- }
187
- export const ResolverQueryLogConfigAssociationError = {
188
- AccessDenied: "ACCESS_DENIED",
189
- DestinationNotFound: "DESTINATION_NOT_FOUND",
190
- InternalServiceError: "INTERNAL_SERVICE_ERROR",
191
- None: "NONE",
192
- };
193
- export const ResolverQueryLogConfigAssociationStatus = {
194
- ActionNeeded: "ACTION_NEEDED",
195
- Active: "ACTIVE",
196
- Creating: "CREATING",
197
- Deleting: "DELETING",
198
- Failed: "FAILED",
199
- };
200
- export const ResolverRuleAssociationStatus = {
201
- Complete: "COMPLETE",
202
- Creating: "CREATING",
203
- Deleting: "DELETING",
204
- Failed: "FAILED",
205
- Overridden: "OVERRIDDEN",
206
- };
207
- export class ResourceUnavailableException extends __BaseException {
208
- name = "ResourceUnavailableException";
209
- $fault = "client";
210
- Message;
211
- ResourceType;
212
- constructor(opts) {
213
- super({
214
- name: "ResourceUnavailableException",
215
- $fault: "client",
216
- ...opts,
217
- });
218
- Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
219
- this.Message = opts.Message;
220
- this.ResourceType = opts.ResourceType;
221
- }
222
- }
223
- export const AutodefinedReverseFlag = {
224
- DISABLE: "DISABLE",
225
- ENABLE: "ENABLE",
226
- USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING",
227
- };
228
- export const BlockOverrideDnsType = {
229
- CNAME: "CNAME",
230
- };
231
- export const BlockResponse = {
232
- NODATA: "NODATA",
233
- NXDOMAIN: "NXDOMAIN",
234
- OVERRIDE: "OVERRIDE",
235
- };
236
- export const ConfidenceThreshold = {
237
- HIGH: "HIGH",
238
- LOW: "LOW",
239
- MEDIUM: "MEDIUM",
240
- };
241
- export const FirewallDomainListStatus = {
242
- COMPLETE: "COMPLETE",
243
- COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED",
244
- DELETING: "DELETING",
245
- IMPORTING: "IMPORTING",
246
- UPDATING: "UPDATING",
247
- };
248
- export const DnsThreatProtection = {
249
- DGA: "DGA",
250
- DICTIONARY_DGA: "DICTIONARY_DGA",
251
- DNS_TUNNELING: "DNS_TUNNELING",
252
- };
253
- export const FirewallDomainRedirectionAction = {
254
- INSPECT_REDIRECTION_DOMAIN: "INSPECT_REDIRECTION_DOMAIN",
255
- TRUST_REDIRECTION_DOMAIN: "TRUST_REDIRECTION_DOMAIN",
256
- };
257
- export const ShareStatus = {
258
- NotShared: "NOT_SHARED",
259
- SharedByMe: "SHARED_BY_ME",
260
- SharedWithMe: "SHARED_WITH_ME",
261
- };
262
- export const FirewallRuleGroupStatus = {
263
- COMPLETE: "COMPLETE",
264
- DELETING: "DELETING",
265
- UPDATING: "UPDATING",
266
- };
267
- export const OutpostResolverStatus = {
268
- ACTION_NEEDED: "ACTION_NEEDED",
269
- CREATING: "CREATING",
270
- DELETING: "DELETING",
271
- FAILED_CREATION: "FAILED_CREATION",
272
- FAILED_DELETION: "FAILED_DELETION",
273
- OPERATIONAL: "OPERATIONAL",
274
- UPDATING: "UPDATING",
275
- };
276
- export class ServiceQuotaExceededException extends __BaseException {
277
- name = "ServiceQuotaExceededException";
278
- $fault = "client";
279
- Message;
280
- constructor(opts) {
281
- super({
282
- name: "ServiceQuotaExceededException",
283
- $fault: "client",
284
- ...opts,
285
- });
286
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
287
- this.Message = opts.Message;
288
- }
289
- }
290
- export const ResolverQueryLogConfigStatus = {
291
- Created: "CREATED",
292
- Creating: "CREATING",
293
- Deleting: "DELETING",
294
- Failed: "FAILED",
295
- };
296
- export const RuleTypeOption = {
297
- Delegate: "DELEGATE",
298
- Forward: "FORWARD",
299
- Recursive: "RECURSIVE",
300
- System: "SYSTEM",
301
- };
302
- export const ResolverRuleStatus = {
303
- Complete: "COMPLETE",
304
- Deleting: "DELETING",
305
- Failed: "FAILED",
306
- Updating: "UPDATING",
307
- };
308
- export class ResourceInUseException extends __BaseException {
309
- name = "ResourceInUseException";
310
- $fault = "client";
311
- Message;
312
- ResourceType;
313
- constructor(opts) {
314
- super({
315
- name: "ResourceInUseException",
316
- $fault: "client",
317
- ...opts,
318
- });
319
- Object.setPrototypeOf(this, ResourceInUseException.prototype);
320
- this.Message = opts.Message;
321
- this.ResourceType = opts.ResourceType;
322
- }
323
- }
324
- export const FirewallFailOpenStatus = {
325
- DISABLED: "DISABLED",
326
- ENABLED: "ENABLED",
327
- USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING",
328
- };
329
- export const FirewallDomainImportOperation = {
330
- REPLACE: "REPLACE",
331
- };
332
- export const FirewallDomainUpdateOperation = {
333
- ADD: "ADD",
334
- REMOVE: "REMOVE",
335
- REPLACE: "REPLACE",
336
- };
337
- export const ResolverAutodefinedReverseStatus = {
338
- Disabled: "DISABLED",
339
- Disabling: "DISABLING",
340
- Enabled: "ENABLED",
341
- Enabling: "ENABLING",
342
- UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
343
- UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING",
344
- };
345
- export const ResolverDNSSECValidationStatus = {
346
- Disabled: "DISABLED",
347
- Disabling: "DISABLING",
348
- Enabled: "ENABLED",
349
- Enabling: "ENABLING",
350
- UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING",
351
- UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING",
352
- };
353
- export class UnknownResourceException extends __BaseException {
354
- name = "UnknownResourceException";
355
- $fault = "client";
356
- Message;
357
- constructor(opts) {
358
- super({
359
- name: "UnknownResourceException",
360
- $fault: "client",
361
- ...opts,
362
- });
363
- Object.setPrototypeOf(this, UnknownResourceException.prototype);
364
- this.Message = opts.Message;
365
- }
366
- }
367
- export class InvalidNextTokenException extends __BaseException {
368
- name = "InvalidNextTokenException";
369
- $fault = "client";
370
- Message;
371
- constructor(opts) {
372
- super({
373
- name: "InvalidNextTokenException",
374
- $fault: "client",
375
- ...opts,
376
- });
377
- Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
378
- this.Message = opts.Message;
379
- }
380
- }
381
- export class InvalidPolicyDocument extends __BaseException {
382
- name = "InvalidPolicyDocument";
383
- $fault = "client";
384
- Message;
385
- constructor(opts) {
386
- super({
387
- name: "InvalidPolicyDocument",
388
- $fault: "client",
389
- ...opts,
390
- });
391
- Object.setPrototypeOf(this, InvalidPolicyDocument.prototype);
392
- this.Message = opts.Message;
393
- }
394
- }
395
- export class InvalidTagException extends __BaseException {
396
- name = "InvalidTagException";
397
- $fault = "client";
398
- Message;
399
- constructor(opts) {
400
- super({
401
- name: "InvalidTagException",
402
- $fault: "client",
403
- ...opts,
404
- });
405
- Object.setPrototypeOf(this, InvalidTagException.prototype);
406
- this.Message = opts.Message;
407
- }
408
- }
409
- export const IpAddressStatus = {
410
- Attached: "ATTACHED",
411
- Attaching: "ATTACHING",
412
- Creating: "CREATING",
413
- DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED",
414
- Deleting: "DELETING",
415
- Detaching: "DETACHING",
416
- FailedCreation: "FAILED_CREATION",
417
- FailedResourceGone: "FAILED_RESOURCE_GONE",
418
- Isolated: "ISOLATED",
419
- RemapAttaching: "REMAP_ATTACHING",
420
- RemapDetaching: "REMAP_DETACHING",
421
- UpdateFailed: "UPDATE_FAILED",
422
- Updating: "UPDATING",
423
- };
424
- export const SortOrder = {
425
- Ascending: "ASCENDING",
426
- Descending: "DESCENDING",
427
- };
428
- export const Validation = {
429
- DISABLE: "DISABLE",
430
- ENABLE: "ENABLE",
431
- USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING",
432
- };
1
+ export {};
@@ -365,7 +365,7 @@ const _e = "error";
365
365
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53resolver";
366
366
  const n0 = "com.amazonaws.route53resolver";
367
367
  import { TypeRegistry } from "@smithy/core/schema";
368
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServiceErrorException as __InternalServiceErrorException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, InvalidPolicyDocument as __InvalidPolicyDocument, InvalidRequestException as __InvalidRequestException, InvalidTagException as __InvalidTagException, LimitExceededException as __LimitExceededException, ResourceExistsException as __ResourceExistsException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, UnknownResourceException as __UnknownResourceException, ValidationException as __ValidationException, } from "../models/index";
368
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServiceErrorException as __InternalServiceErrorException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, InvalidPolicyDocument as __InvalidPolicyDocument, InvalidRequestException as __InvalidRequestException, InvalidTagException as __InvalidTagException, LimitExceededException as __LimitExceededException, ResourceExistsException as __ResourceExistsException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, UnknownResourceException as __UnknownResourceException, ValidationException as __ValidationException, } from "../models/errors";
369
369
  import { Route53ResolverServiceException as __Route53ResolverServiceException } from "../models/Route53ResolverServiceException";
370
370
  export var AccessDeniedException = [
371
371
  -3,
@@ -36,5 +36,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
36
36
  export type { Route53ResolverExtensionConfiguration } from "./extensionConfiguration";
37
37
  export * from "./commands";
38
38
  export * from "./pagination";
39
- export * from "./models";
39
+ export * from "./models/enums";
40
+ export * from "./models/errors";
41
+ export type * from "./models/models_0";
40
42
  export { Route53ResolverServiceException } from "./models/Route53ResolverServiceException";