@aws-sdk/client-route53resolver 3.933.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.
- package/dist-cjs/index.js +182 -181
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +181 -0
- package/dist-es/models/errors.js +251 -0
- package/dist-es/models/models_0.js +1 -432
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +429 -0
- package/dist-types/models/errors.d.ts +258 -0
- package/dist-types/models/models_0.d.ts +1 -687
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +142 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -379
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Action: {
|
|
6
|
+
readonly ALERT: "ALERT";
|
|
7
|
+
readonly ALLOW: "ALLOW";
|
|
8
|
+
readonly BLOCK: "BLOCK";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* @enum
|
|
17
|
+
*/
|
|
18
|
+
export declare const MutationProtectionStatus: {
|
|
19
|
+
readonly DISABLED: "DISABLED";
|
|
20
|
+
readonly ENABLED: "ENABLED";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type MutationProtectionStatus = (typeof MutationProtectionStatus)[keyof typeof MutationProtectionStatus];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const FirewallRuleGroupAssociationStatus: {
|
|
31
|
+
readonly COMPLETE: "COMPLETE";
|
|
32
|
+
readonly DELETING: "DELETING";
|
|
33
|
+
readonly UPDATING: "UPDATING";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type FirewallRuleGroupAssociationStatus = (typeof FirewallRuleGroupAssociationStatus)[keyof typeof FirewallRuleGroupAssociationStatus];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const ResolverEndpointDirection: {
|
|
44
|
+
readonly Inbound: "INBOUND";
|
|
45
|
+
readonly InboundDelegation: "INBOUND_DELEGATION";
|
|
46
|
+
readonly Outbound: "OUTBOUND";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type ResolverEndpointDirection = (typeof ResolverEndpointDirection)[keyof typeof ResolverEndpointDirection];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const Protocol: {
|
|
57
|
+
readonly DO53: "Do53";
|
|
58
|
+
readonly DOH: "DoH";
|
|
59
|
+
readonly DOHFIPS: "DoH-FIPS";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const ResolverEndpointType: {
|
|
70
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
71
|
+
readonly IPV4: "IPV4";
|
|
72
|
+
readonly IPV6: "IPV6";
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export type ResolverEndpointType = (typeof ResolverEndpointType)[keyof typeof ResolverEndpointType];
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* @enum
|
|
81
|
+
*/
|
|
82
|
+
export declare const ResolverEndpointStatus: {
|
|
83
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
84
|
+
readonly AutoRecovering: "AUTO_RECOVERING";
|
|
85
|
+
readonly Creating: "CREATING";
|
|
86
|
+
readonly Deleting: "DELETING";
|
|
87
|
+
readonly Operational: "OPERATIONAL";
|
|
88
|
+
readonly Updating: "UPDATING";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type ResolverEndpointStatus = (typeof ResolverEndpointStatus)[keyof typeof ResolverEndpointStatus];
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
* @enum
|
|
97
|
+
*/
|
|
98
|
+
export declare const ResolverQueryLogConfigAssociationError: {
|
|
99
|
+
readonly AccessDenied: "ACCESS_DENIED";
|
|
100
|
+
readonly DestinationNotFound: "DESTINATION_NOT_FOUND";
|
|
101
|
+
readonly InternalServiceError: "INTERNAL_SERVICE_ERROR";
|
|
102
|
+
readonly None: "NONE";
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export type ResolverQueryLogConfigAssociationError = (typeof ResolverQueryLogConfigAssociationError)[keyof typeof ResolverQueryLogConfigAssociationError];
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
* @enum
|
|
111
|
+
*/
|
|
112
|
+
export declare const ResolverQueryLogConfigAssociationStatus: {
|
|
113
|
+
readonly ActionNeeded: "ACTION_NEEDED";
|
|
114
|
+
readonly Active: "ACTIVE";
|
|
115
|
+
readonly Creating: "CREATING";
|
|
116
|
+
readonly Deleting: "DELETING";
|
|
117
|
+
readonly Failed: "FAILED";
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export type ResolverQueryLogConfigAssociationStatus = (typeof ResolverQueryLogConfigAssociationStatus)[keyof typeof ResolverQueryLogConfigAssociationStatus];
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const ResolverRuleAssociationStatus: {
|
|
128
|
+
readonly Complete: "COMPLETE";
|
|
129
|
+
readonly Creating: "CREATING";
|
|
130
|
+
readonly Deleting: "DELETING";
|
|
131
|
+
readonly Failed: "FAILED";
|
|
132
|
+
readonly Overridden: "OVERRIDDEN";
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export type ResolverRuleAssociationStatus = (typeof ResolverRuleAssociationStatus)[keyof typeof ResolverRuleAssociationStatus];
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* @enum
|
|
141
|
+
*/
|
|
142
|
+
export declare const AutodefinedReverseFlag: {
|
|
143
|
+
readonly DISABLE: "DISABLE";
|
|
144
|
+
readonly ENABLE: "ENABLE";
|
|
145
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export type AutodefinedReverseFlag = (typeof AutodefinedReverseFlag)[keyof typeof AutodefinedReverseFlag];
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* @enum
|
|
154
|
+
*/
|
|
155
|
+
export declare const BlockOverrideDnsType: {
|
|
156
|
+
readonly CNAME: "CNAME";
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export type BlockOverrideDnsType = (typeof BlockOverrideDnsType)[keyof typeof BlockOverrideDnsType];
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* @enum
|
|
165
|
+
*/
|
|
166
|
+
export declare const BlockResponse: {
|
|
167
|
+
readonly NODATA: "NODATA";
|
|
168
|
+
readonly NXDOMAIN: "NXDOMAIN";
|
|
169
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
export type BlockResponse = (typeof BlockResponse)[keyof typeof BlockResponse];
|
|
175
|
+
/**
|
|
176
|
+
* @public
|
|
177
|
+
* @enum
|
|
178
|
+
*/
|
|
179
|
+
export declare const ConfidenceThreshold: {
|
|
180
|
+
readonly HIGH: "HIGH";
|
|
181
|
+
readonly LOW: "LOW";
|
|
182
|
+
readonly MEDIUM: "MEDIUM";
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
export type ConfidenceThreshold = (typeof ConfidenceThreshold)[keyof typeof ConfidenceThreshold];
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
* @enum
|
|
191
|
+
*/
|
|
192
|
+
export declare const FirewallDomainListStatus: {
|
|
193
|
+
readonly COMPLETE: "COMPLETE";
|
|
194
|
+
readonly COMPLETE_IMPORT_FAILED: "COMPLETE_IMPORT_FAILED";
|
|
195
|
+
readonly DELETING: "DELETING";
|
|
196
|
+
readonly IMPORTING: "IMPORTING";
|
|
197
|
+
readonly UPDATING: "UPDATING";
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export type FirewallDomainListStatus = (typeof FirewallDomainListStatus)[keyof typeof FirewallDomainListStatus];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* @enum
|
|
206
|
+
*/
|
|
207
|
+
export declare const DnsThreatProtection: {
|
|
208
|
+
readonly DGA: "DGA";
|
|
209
|
+
readonly DICTIONARY_DGA: "DICTIONARY_DGA";
|
|
210
|
+
readonly DNS_TUNNELING: "DNS_TUNNELING";
|
|
211
|
+
};
|
|
212
|
+
/**
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export type DnsThreatProtection = (typeof DnsThreatProtection)[keyof typeof DnsThreatProtection];
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
* @enum
|
|
219
|
+
*/
|
|
220
|
+
export declare const FirewallDomainRedirectionAction: {
|
|
221
|
+
readonly INSPECT_REDIRECTION_DOMAIN: "INSPECT_REDIRECTION_DOMAIN";
|
|
222
|
+
readonly TRUST_REDIRECTION_DOMAIN: "TRUST_REDIRECTION_DOMAIN";
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
export type FirewallDomainRedirectionAction = (typeof FirewallDomainRedirectionAction)[keyof typeof FirewallDomainRedirectionAction];
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
* @enum
|
|
231
|
+
*/
|
|
232
|
+
export declare const ShareStatus: {
|
|
233
|
+
readonly NotShared: "NOT_SHARED";
|
|
234
|
+
readonly SharedByMe: "SHARED_BY_ME";
|
|
235
|
+
readonly SharedWithMe: "SHARED_WITH_ME";
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
* @enum
|
|
244
|
+
*/
|
|
245
|
+
export declare const FirewallRuleGroupStatus: {
|
|
246
|
+
readonly COMPLETE: "COMPLETE";
|
|
247
|
+
readonly DELETING: "DELETING";
|
|
248
|
+
readonly UPDATING: "UPDATING";
|
|
249
|
+
};
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
export type FirewallRuleGroupStatus = (typeof FirewallRuleGroupStatus)[keyof typeof FirewallRuleGroupStatus];
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
* @enum
|
|
257
|
+
*/
|
|
258
|
+
export declare const OutpostResolverStatus: {
|
|
259
|
+
readonly ACTION_NEEDED: "ACTION_NEEDED";
|
|
260
|
+
readonly CREATING: "CREATING";
|
|
261
|
+
readonly DELETING: "DELETING";
|
|
262
|
+
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
263
|
+
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
264
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
265
|
+
readonly UPDATING: "UPDATING";
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export type OutpostResolverStatus = (typeof OutpostResolverStatus)[keyof typeof OutpostResolverStatus];
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
* @enum
|
|
274
|
+
*/
|
|
275
|
+
export declare const ResolverQueryLogConfigStatus: {
|
|
276
|
+
readonly Created: "CREATED";
|
|
277
|
+
readonly Creating: "CREATING";
|
|
278
|
+
readonly Deleting: "DELETING";
|
|
279
|
+
readonly Failed: "FAILED";
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* @public
|
|
283
|
+
*/
|
|
284
|
+
export type ResolverQueryLogConfigStatus = (typeof ResolverQueryLogConfigStatus)[keyof typeof ResolverQueryLogConfigStatus];
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
* @enum
|
|
288
|
+
*/
|
|
289
|
+
export declare const RuleTypeOption: {
|
|
290
|
+
readonly Delegate: "DELEGATE";
|
|
291
|
+
readonly Forward: "FORWARD";
|
|
292
|
+
readonly Recursive: "RECURSIVE";
|
|
293
|
+
readonly System: "SYSTEM";
|
|
294
|
+
};
|
|
295
|
+
/**
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
export type RuleTypeOption = (typeof RuleTypeOption)[keyof typeof RuleTypeOption];
|
|
299
|
+
/**
|
|
300
|
+
* @public
|
|
301
|
+
* @enum
|
|
302
|
+
*/
|
|
303
|
+
export declare const ResolverRuleStatus: {
|
|
304
|
+
readonly Complete: "COMPLETE";
|
|
305
|
+
readonly Deleting: "DELETING";
|
|
306
|
+
readonly Failed: "FAILED";
|
|
307
|
+
readonly Updating: "UPDATING";
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export type ResolverRuleStatus = (typeof ResolverRuleStatus)[keyof typeof ResolverRuleStatus];
|
|
313
|
+
/**
|
|
314
|
+
* @public
|
|
315
|
+
* @enum
|
|
316
|
+
*/
|
|
317
|
+
export declare const FirewallFailOpenStatus: {
|
|
318
|
+
readonly DISABLED: "DISABLED";
|
|
319
|
+
readonly ENABLED: "ENABLED";
|
|
320
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
321
|
+
};
|
|
322
|
+
/**
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
export type FirewallFailOpenStatus = (typeof FirewallFailOpenStatus)[keyof typeof FirewallFailOpenStatus];
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
* @enum
|
|
329
|
+
*/
|
|
330
|
+
export declare const FirewallDomainImportOperation: {
|
|
331
|
+
readonly REPLACE: "REPLACE";
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export type FirewallDomainImportOperation = (typeof FirewallDomainImportOperation)[keyof typeof FirewallDomainImportOperation];
|
|
337
|
+
/**
|
|
338
|
+
* @public
|
|
339
|
+
* @enum
|
|
340
|
+
*/
|
|
341
|
+
export declare const FirewallDomainUpdateOperation: {
|
|
342
|
+
readonly ADD: "ADD";
|
|
343
|
+
readonly REMOVE: "REMOVE";
|
|
344
|
+
readonly REPLACE: "REPLACE";
|
|
345
|
+
};
|
|
346
|
+
/**
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
export type FirewallDomainUpdateOperation = (typeof FirewallDomainUpdateOperation)[keyof typeof FirewallDomainUpdateOperation];
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
* @enum
|
|
353
|
+
*/
|
|
354
|
+
export declare const ResolverAutodefinedReverseStatus: {
|
|
355
|
+
readonly Disabled: "DISABLED";
|
|
356
|
+
readonly Disabling: "DISABLING";
|
|
357
|
+
readonly Enabled: "ENABLED";
|
|
358
|
+
readonly Enabling: "ENABLING";
|
|
359
|
+
readonly UpdatingToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
360
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
361
|
+
};
|
|
362
|
+
/**
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export type ResolverAutodefinedReverseStatus = (typeof ResolverAutodefinedReverseStatus)[keyof typeof ResolverAutodefinedReverseStatus];
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
* @enum
|
|
369
|
+
*/
|
|
370
|
+
export declare const ResolverDNSSECValidationStatus: {
|
|
371
|
+
readonly Disabled: "DISABLED";
|
|
372
|
+
readonly Disabling: "DISABLING";
|
|
373
|
+
readonly Enabled: "ENABLED";
|
|
374
|
+
readonly Enabling: "ENABLING";
|
|
375
|
+
readonly UpdateToUseLocalResourceSetting: "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING";
|
|
376
|
+
readonly UseLocalResourceSetting: "USE_LOCAL_RESOURCE_SETTING";
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
export type ResolverDNSSECValidationStatus = (typeof ResolverDNSSECValidationStatus)[keyof typeof ResolverDNSSECValidationStatus];
|
|
382
|
+
/**
|
|
383
|
+
* @public
|
|
384
|
+
* @enum
|
|
385
|
+
*/
|
|
386
|
+
export declare const IpAddressStatus: {
|
|
387
|
+
readonly Attached: "ATTACHED";
|
|
388
|
+
readonly Attaching: "ATTACHING";
|
|
389
|
+
readonly Creating: "CREATING";
|
|
390
|
+
readonly DeleteFailedFasExpired: "DELETE_FAILED_FAS_EXPIRED";
|
|
391
|
+
readonly Deleting: "DELETING";
|
|
392
|
+
readonly Detaching: "DETACHING";
|
|
393
|
+
readonly FailedCreation: "FAILED_CREATION";
|
|
394
|
+
readonly FailedResourceGone: "FAILED_RESOURCE_GONE";
|
|
395
|
+
readonly Isolated: "ISOLATED";
|
|
396
|
+
readonly RemapAttaching: "REMAP_ATTACHING";
|
|
397
|
+
readonly RemapDetaching: "REMAP_DETACHING";
|
|
398
|
+
readonly UpdateFailed: "UPDATE_FAILED";
|
|
399
|
+
readonly Updating: "UPDATING";
|
|
400
|
+
};
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
404
|
+
export type IpAddressStatus = (typeof IpAddressStatus)[keyof typeof IpAddressStatus];
|
|
405
|
+
/**
|
|
406
|
+
* @public
|
|
407
|
+
* @enum
|
|
408
|
+
*/
|
|
409
|
+
export declare const SortOrder: {
|
|
410
|
+
readonly Ascending: "ASCENDING";
|
|
411
|
+
readonly Descending: "DESCENDING";
|
|
412
|
+
};
|
|
413
|
+
/**
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
417
|
+
/**
|
|
418
|
+
* @public
|
|
419
|
+
* @enum
|
|
420
|
+
*/
|
|
421
|
+
export declare const Validation: {
|
|
422
|
+
readonly DISABLE: "DISABLE";
|
|
423
|
+
readonly ENABLE: "ENABLE";
|
|
424
|
+
readonly USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING";
|
|
425
|
+
};
|
|
426
|
+
/**
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
export type Validation = (typeof Validation)[keyof typeof Validation];
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
|
|
5
|
+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
|
|
6
|
+
* resource policy for CloudWatch Logs.</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>The requested state transition isn't valid. For example, you can't delete a firewall
|
|
20
|
+
* domain list if it is in the process of being deleted, or you can't import domains into a
|
|
21
|
+
* domain list that is in the process of being deleted.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export declare class ConflictException extends __BaseException {
|
|
25
|
+
readonly name: "ConflictException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
Message?: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* <p>We encountered an unknown error. Try again in a few minutes.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
38
|
+
readonly name: "InternalServiceErrorException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
Message?: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* @internal
|
|
43
|
+
*/
|
|
44
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p>The request caused one or more limits to be exceeded.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export declare class LimitExceededException extends __BaseException {
|
|
51
|
+
readonly name: "LimitExceededException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message?: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>For a <code>LimitExceededException</code> error, the type of resource that exceeded the current limit.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
ResourceType?: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>The specified resource doesn't exist.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
69
|
+
readonly name: "ResourceNotFoundException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>For a <code>ResourceNotFoundException</code> error, the type of resource that doesn't exist.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
ResourceType?: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
80
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* <p>The request was throttled. Try again in a few minutes.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class ThrottlingException extends __BaseException {
|
|
87
|
+
readonly name: "ThrottlingException";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
Message?: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* <p>You have provided an invalid command. If you ran the <code>UpdateFirewallDomains</code> request. supported values are <code>ADD</code>,
|
|
97
|
+
* <code>REMOVE</code>, or <code>REPLACE</code> a domain.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class ValidationException extends __BaseException {
|
|
101
|
+
readonly name: "ValidationException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
Message?: string | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* <p>One or more parameters in this request are not valid.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
114
|
+
readonly name: "InvalidParameterException";
|
|
115
|
+
readonly $fault: "client";
|
|
116
|
+
Message: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>For an <code>InvalidParameterException</code> error, the name of the parameter that's invalid.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
FieldName?: string | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* <p>The request is invalid.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
132
|
+
readonly name: "InvalidRequestException";
|
|
133
|
+
readonly $fault: "client";
|
|
134
|
+
Message?: string | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
138
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* <p>The resource that you tried to create already exists.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
145
|
+
readonly name: "ResourceExistsException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
Message?: string | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* <p>For a <code>ResourceExistsException</code> error, the type of resource that the error applies to.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
ResourceType?: string | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* @internal
|
|
155
|
+
*/
|
|
156
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* <p>The specified resource isn't available.</p>
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
163
|
+
readonly name: "ResourceUnavailableException";
|
|
164
|
+
readonly $fault: "client";
|
|
165
|
+
Message?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>For a <code>ResourceUnavailableException</code> error, the type of resource that isn't available.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
ResourceType?: string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* @internal
|
|
173
|
+
*/
|
|
174
|
+
constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* <p>Fulfilling the request would cause one or more quotas to be exceeded.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
181
|
+
readonly name: "ServiceQuotaExceededException";
|
|
182
|
+
readonly $fault: "client";
|
|
183
|
+
Message?: string | undefined;
|
|
184
|
+
/**
|
|
185
|
+
* @internal
|
|
186
|
+
*/
|
|
187
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* <p>The resource that you tried to update or delete is currently in use.</p>
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
194
|
+
readonly name: "ResourceInUseException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
Message?: string | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* <p>For a <code>ResourceInUseException</code> error, the type of resource that is currently in use.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
ResourceType?: string | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>The specified resource doesn't exist.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export declare class UnknownResourceException extends __BaseException {
|
|
212
|
+
readonly name: "UnknownResourceException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
Message?: string | undefined;
|
|
215
|
+
/**
|
|
216
|
+
* @internal
|
|
217
|
+
*/
|
|
218
|
+
constructor(opts: __ExceptionOptionType<UnknownResourceException, __BaseException>);
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* <p>The value that you specified for <code>NextToken</code> in a <code>List</code> request isn't valid.</p>
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
225
|
+
readonly name: "InvalidNextTokenException";
|
|
226
|
+
readonly $fault: "client";
|
|
227
|
+
Message?: string | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* <p>The specified Resolver rule policy is invalid.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export declare class InvalidPolicyDocument extends __BaseException {
|
|
238
|
+
readonly name: "InvalidPolicyDocument";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
Message?: string | undefined;
|
|
241
|
+
/**
|
|
242
|
+
* @internal
|
|
243
|
+
*/
|
|
244
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyDocument, __BaseException>);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* <p>The specified tag is invalid.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export declare class InvalidTagException extends __BaseException {
|
|
251
|
+
readonly name: "InvalidTagException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
Message?: string | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* @internal
|
|
256
|
+
*/
|
|
257
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
258
|
+
}
|