@aws-sdk/client-route-53 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.
@@ -0,0 +1,981 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { Route53ServiceException as __BaseException } from "./Route53ServiceException";
3
+ /**
4
+ * <p>Another user submitted a request to create, update, or delete the object at the same
5
+ * time that you did. Retry the request. </p>
6
+ * @public
7
+ */
8
+ export declare class ConcurrentModification extends __BaseException {
9
+ readonly name: "ConcurrentModification";
10
+ readonly $fault: "client";
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<ConcurrentModification, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>The input is not valid.</p>
18
+ * @public
19
+ */
20
+ export declare class InvalidInput extends __BaseException {
21
+ readonly name: "InvalidInput";
22
+ readonly $fault: "client";
23
+ /**
24
+ * @internal
25
+ */
26
+ constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
27
+ }
28
+ /**
29
+ * <p>The key-signing key (KSK) status isn't valid or another KSK has the status
30
+ * <code>INTERNAL_FAILURE</code>.</p>
31
+ * @public
32
+ */
33
+ export declare class InvalidKeySigningKeyStatus extends __BaseException {
34
+ readonly name: "InvalidKeySigningKeyStatus";
35
+ readonly $fault: "client";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<InvalidKeySigningKeyStatus, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC
43
+ * signing.</p>
44
+ * @public
45
+ */
46
+ export declare class InvalidKMSArn extends __BaseException {
47
+ readonly name: "InvalidKMSArn";
48
+ readonly $fault: "client";
49
+ /**
50
+ * @internal
51
+ */
52
+ constructor(opts: __ExceptionOptionType<InvalidKMSArn, __BaseException>);
53
+ }
54
+ /**
55
+ * <p>Your hosted zone status isn't valid for this operation. In the hosted zone, change the
56
+ * status to enable <code>DNSSEC</code> or disable <code>DNSSEC</code>.</p>
57
+ * @public
58
+ */
59
+ export declare class InvalidSigningStatus extends __BaseException {
60
+ readonly name: "InvalidSigningStatus";
61
+ readonly $fault: "client";
62
+ /**
63
+ * @internal
64
+ */
65
+ constructor(opts: __ExceptionOptionType<InvalidSigningStatus, __BaseException>);
66
+ }
67
+ /**
68
+ * <p>The specified key-signing key (KSK) doesn't exist.</p>
69
+ * @public
70
+ */
71
+ export declare class NoSuchKeySigningKey extends __BaseException {
72
+ readonly name: "NoSuchKeySigningKey";
73
+ readonly $fault: "client";
74
+ /**
75
+ * @internal
76
+ */
77
+ constructor(opts: __ExceptionOptionType<NoSuchKeySigningKey, __BaseException>);
78
+ }
79
+ /**
80
+ * <p>The cause of this error depends on the operation that you're performing:</p>
81
+ * <ul>
82
+ * <li>
83
+ * <p>
84
+ * <b>Create a public hosted zone:</b> Two hosted zones
85
+ * that have the same name or that have a parent/child relationship (example.com
86
+ * and test.example.com) can't have any common name servers. You tried to create a
87
+ * hosted zone that has the same name as an existing hosted zone or that's the
88
+ * parent or child of an existing hosted zone, and you specified a delegation set
89
+ * that shares one or more name servers with the existing hosted zone. For more
90
+ * information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html">CreateReusableDelegationSet</a>.</p>
91
+ * </li>
92
+ * <li>
93
+ * <p>
94
+ * <b>Create a private hosted zone:</b> A hosted zone
95
+ * with the specified name already exists and is already associated with the Amazon
96
+ * VPC that you specified.</p>
97
+ * </li>
98
+ * <li>
99
+ * <p>
100
+ * <b>Associate VPCs with a private hosted zone:</b>
101
+ * The VPC that you specified is already associated with another hosted zone that
102
+ * has the same name.</p>
103
+ * </li>
104
+ * </ul>
105
+ * @public
106
+ */
107
+ export declare class ConflictingDomainExists extends __BaseException {
108
+ readonly name: "ConflictingDomainExists";
109
+ readonly $fault: "client";
110
+ /**
111
+ * @internal
112
+ */
113
+ constructor(opts: __ExceptionOptionType<ConflictingDomainExists, __BaseException>);
114
+ }
115
+ /**
116
+ * <p>The VPC ID that you specified either isn't a valid ID or the current account is not
117
+ * authorized to access this VPC.</p>
118
+ * @public
119
+ */
120
+ export declare class InvalidVPCId extends __BaseException {
121
+ readonly name: "InvalidVPCId";
122
+ readonly $fault: "client";
123
+ /**
124
+ * @internal
125
+ */
126
+ constructor(opts: __ExceptionOptionType<InvalidVPCId, __BaseException>);
127
+ }
128
+ /**
129
+ * <p>This operation can't be completed because the current account has reached the
130
+ * limit on the resource you are trying to create. To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a case</a> with the Amazon Web Services Support
131
+ * Center.</p>
132
+ * @public
133
+ */
134
+ export declare class LimitsExceeded extends __BaseException {
135
+ readonly name: "LimitsExceeded";
136
+ readonly $fault: "client";
137
+ /**
138
+ * @internal
139
+ */
140
+ constructor(opts: __ExceptionOptionType<LimitsExceeded, __BaseException>);
141
+ }
142
+ /**
143
+ * <p>No hosted zone exists with the ID that you specified.</p>
144
+ * @public
145
+ */
146
+ export declare class NoSuchHostedZone extends __BaseException {
147
+ readonly name: "NoSuchHostedZone";
148
+ readonly $fault: "client";
149
+ /**
150
+ * @internal
151
+ */
152
+ constructor(opts: __ExceptionOptionType<NoSuchHostedZone, __BaseException>);
153
+ }
154
+ /**
155
+ * <p>Associating the specified VPC with the specified hosted zone has not been
156
+ * authorized.</p>
157
+ * @public
158
+ */
159
+ export declare class NotAuthorizedException extends __BaseException {
160
+ readonly name: "NotAuthorizedException";
161
+ readonly $fault: "client";
162
+ /**
163
+ * @internal
164
+ */
165
+ constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
166
+ }
167
+ /**
168
+ * <p>If Amazon Route 53 can't process a request before the next request arrives, it will
169
+ * reject subsequent requests for the same hosted zone and return an <code>HTTP 400
170
+ * error</code> (<code>Bad request</code>). If Route 53 returns this error repeatedly
171
+ * for the same request, we recommend that you wait, in intervals of increasing duration,
172
+ * before you try the request again.</p>
173
+ * @public
174
+ */
175
+ export declare class PriorRequestNotComplete extends __BaseException {
176
+ readonly name: "PriorRequestNotComplete";
177
+ readonly $fault: "client";
178
+ /**
179
+ * @internal
180
+ */
181
+ constructor(opts: __ExceptionOptionType<PriorRequestNotComplete, __BaseException>);
182
+ }
183
+ /**
184
+ * <p>You're trying to associate a VPC with a public hosted zone. Amazon Route 53 doesn't
185
+ * support associating a VPC with a public hosted zone.</p>
186
+ * @public
187
+ */
188
+ export declare class PublicZoneVPCAssociation extends __BaseException {
189
+ readonly name: "PublicZoneVPCAssociation";
190
+ readonly $fault: "client";
191
+ /**
192
+ * @internal
193
+ */
194
+ constructor(opts: __ExceptionOptionType<PublicZoneVPCAssociation, __BaseException>);
195
+ }
196
+ /**
197
+ * <p>This CIDR block is already in use.</p>
198
+ * @public
199
+ */
200
+ export declare class CidrBlockInUseException extends __BaseException {
201
+ readonly name: "CidrBlockInUseException";
202
+ readonly $fault: "client";
203
+ Message?: string | undefined;
204
+ /**
205
+ * @internal
206
+ */
207
+ constructor(opts: __ExceptionOptionType<CidrBlockInUseException, __BaseException>);
208
+ }
209
+ /**
210
+ * <p>The CIDR collection version you provided, doesn't match the one in the
211
+ * <code>ListCidrCollections</code> operation.</p>
212
+ * @public
213
+ */
214
+ export declare class CidrCollectionVersionMismatchException extends __BaseException {
215
+ readonly name: "CidrCollectionVersionMismatchException";
216
+ readonly $fault: "client";
217
+ Message?: string | undefined;
218
+ /**
219
+ * @internal
220
+ */
221
+ constructor(opts: __ExceptionOptionType<CidrCollectionVersionMismatchException, __BaseException>);
222
+ }
223
+ /**
224
+ * <p>The CIDR collection you specified, doesn't exist.</p>
225
+ * @public
226
+ */
227
+ export declare class NoSuchCidrCollectionException extends __BaseException {
228
+ readonly name: "NoSuchCidrCollectionException";
229
+ readonly $fault: "client";
230
+ Message?: string | undefined;
231
+ /**
232
+ * @internal
233
+ */
234
+ constructor(opts: __ExceptionOptionType<NoSuchCidrCollectionException, __BaseException>);
235
+ }
236
+ /**
237
+ * <p>This exception contains a list of messages that might contain one or more error
238
+ * messages. Each error message indicates one error in the change batch.</p>
239
+ * @public
240
+ */
241
+ export declare class InvalidChangeBatch extends __BaseException {
242
+ readonly name: "InvalidChangeBatch";
243
+ readonly $fault: "client";
244
+ /**
245
+ * <p></p>
246
+ * @public
247
+ */
248
+ messages?: string[] | undefined;
249
+ /**
250
+ * @internal
251
+ */
252
+ constructor(opts: __ExceptionOptionType<InvalidChangeBatch, __BaseException>);
253
+ }
254
+ /**
255
+ * <p>No health check exists with the specified ID.</p>
256
+ * @public
257
+ */
258
+ export declare class NoSuchHealthCheck extends __BaseException {
259
+ readonly name: "NoSuchHealthCheck";
260
+ readonly $fault: "client";
261
+ /**
262
+ * @internal
263
+ */
264
+ constructor(opts: __ExceptionOptionType<NoSuchHealthCheck, __BaseException>);
265
+ }
266
+ /**
267
+ * <p>The limit on the number of requests per second was exceeded.</p>
268
+ * @public
269
+ */
270
+ export declare class ThrottlingException extends __BaseException {
271
+ readonly name: "ThrottlingException";
272
+ readonly $fault: "client";
273
+ /**
274
+ * @internal
275
+ */
276
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
277
+ }
278
+ /**
279
+ * <p>A CIDR collection with this name and a different caller reference already exists in this account.</p>
280
+ * @public
281
+ */
282
+ export declare class CidrCollectionAlreadyExistsException extends __BaseException {
283
+ readonly name: "CidrCollectionAlreadyExistsException";
284
+ readonly $fault: "client";
285
+ Message?: string | undefined;
286
+ /**
287
+ * @internal
288
+ */
289
+ constructor(opts: __ExceptionOptionType<CidrCollectionAlreadyExistsException, __BaseException>);
290
+ }
291
+ /**
292
+ * <p> The health check you're attempting to create already exists. Amazon Route 53 returns
293
+ * this error when you submit a request that has the following values:</p>
294
+ * <ul>
295
+ * <li>
296
+ * <p>The same value for <code>CallerReference</code> as an existing health check,
297
+ * and one or more values that differ from the existing health check that has the
298
+ * same caller reference.</p>
299
+ * </li>
300
+ * <li>
301
+ * <p>The same value for <code>CallerReference</code> as a health check that you
302
+ * created and later deleted, regardless of the other settings in the
303
+ * request.</p>
304
+ * </li>
305
+ * </ul>
306
+ * @public
307
+ */
308
+ export declare class HealthCheckAlreadyExists extends __BaseException {
309
+ readonly name: "HealthCheckAlreadyExists";
310
+ readonly $fault: "client";
311
+ /**
312
+ * @internal
313
+ */
314
+ constructor(opts: __ExceptionOptionType<HealthCheckAlreadyExists, __BaseException>);
315
+ }
316
+ /**
317
+ * <p>This health check can't be created because the current account has reached the limit
318
+ * on the number of active health checks.</p>
319
+ * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
320
+ * <i>Amazon Route 53 Developer Guide</i>.</p>
321
+ * <p>For information about how to get the current limit for an account, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html">GetAccountLimit</a>. To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a case</a> with the Amazon Web Services Support
322
+ * Center.</p>
323
+ * <p>You have reached the maximum number of active health checks for an Amazon Web Services account. To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a case</a> with the Amazon Web Services Support
324
+ * Center.</p>
325
+ * @public
326
+ */
327
+ export declare class TooManyHealthChecks extends __BaseException {
328
+ readonly name: "TooManyHealthChecks";
329
+ readonly $fault: "client";
330
+ /**
331
+ * @internal
332
+ */
333
+ constructor(opts: __ExceptionOptionType<TooManyHealthChecks, __BaseException>);
334
+ }
335
+ /**
336
+ * <p>You can create a hosted zone that has the same name as an existing hosted zone
337
+ * (example.com is common), but there is a limit to the number of hosted zones that have
338
+ * the same name. If you get this error, Amazon Route 53 has reached that limit. If you own
339
+ * the domain name and Route 53 generates this error, contact Customer Support.</p>
340
+ * @public
341
+ */
342
+ export declare class DelegationSetNotAvailable extends __BaseException {
343
+ readonly name: "DelegationSetNotAvailable";
344
+ readonly $fault: "client";
345
+ /**
346
+ * @internal
347
+ */
348
+ constructor(opts: __ExceptionOptionType<DelegationSetNotAvailable, __BaseException>);
349
+ }
350
+ /**
351
+ * <p>A reusable delegation set with the specified ID does not exist.</p>
352
+ * @public
353
+ */
354
+ export declare class DelegationSetNotReusable extends __BaseException {
355
+ readonly name: "DelegationSetNotReusable";
356
+ readonly $fault: "client";
357
+ /**
358
+ * @internal
359
+ */
360
+ constructor(opts: __ExceptionOptionType<DelegationSetNotReusable, __BaseException>);
361
+ }
362
+ /**
363
+ * <p>The hosted zone you're trying to create already exists. Amazon Route 53 returns this
364
+ * error when a hosted zone has already been created with the specified
365
+ * <code>CallerReference</code>.</p>
366
+ * @public
367
+ */
368
+ export declare class HostedZoneAlreadyExists extends __BaseException {
369
+ readonly name: "HostedZoneAlreadyExists";
370
+ readonly $fault: "client";
371
+ /**
372
+ * @internal
373
+ */
374
+ constructor(opts: __ExceptionOptionType<HostedZoneAlreadyExists, __BaseException>);
375
+ }
376
+ /**
377
+ * <p>The specified domain name is not valid.</p>
378
+ * @public
379
+ */
380
+ export declare class InvalidDomainName extends __BaseException {
381
+ readonly name: "InvalidDomainName";
382
+ readonly $fault: "client";
383
+ /**
384
+ * @internal
385
+ */
386
+ constructor(opts: __ExceptionOptionType<InvalidDomainName, __BaseException>);
387
+ }
388
+ /**
389
+ * <p>A reusable delegation set with the specified ID does not exist.</p>
390
+ * @public
391
+ */
392
+ export declare class NoSuchDelegationSet extends __BaseException {
393
+ readonly name: "NoSuchDelegationSet";
394
+ readonly $fault: "client";
395
+ /**
396
+ * @internal
397
+ */
398
+ constructor(opts: __ExceptionOptionType<NoSuchDelegationSet, __BaseException>);
399
+ }
400
+ /**
401
+ * <p>This operation can't be completed either because the current account has reached the
402
+ * limit on the number of hosted zones or because you've reached the limit on the number of
403
+ * hosted zones that can be associated with a reusable delegation set.</p>
404
+ * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
405
+ * <i>Amazon Route 53 Developer Guide</i>.</p>
406
+ * <p>To get the current limit on hosted zones that can be created by an account, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html">GetAccountLimit</a>.</p>
407
+ * <p>To get the current limit on hosted zones that can be associated with a reusable
408
+ * delegation set, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSetLimit.html">GetReusableDelegationSetLimit</a>.</p>
409
+ * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
410
+ * case</a> with the Amazon Web Services Support Center.</p>
411
+ * @public
412
+ */
413
+ export declare class TooManyHostedZones extends __BaseException {
414
+ readonly name: "TooManyHostedZones";
415
+ readonly $fault: "client";
416
+ /**
417
+ * @internal
418
+ */
419
+ constructor(opts: __ExceptionOptionType<TooManyHostedZones, __BaseException>);
420
+ }
421
+ /**
422
+ * <p>Parameter name is not valid.</p>
423
+ * @public
424
+ */
425
+ export declare class InvalidArgument extends __BaseException {
426
+ readonly name: "InvalidArgument";
427
+ readonly $fault: "client";
428
+ /**
429
+ * @internal
430
+ */
431
+ constructor(opts: __ExceptionOptionType<InvalidArgument, __BaseException>);
432
+ }
433
+ /**
434
+ * <p>The key-signing key (KSK) name that you specified isn't a valid name.</p>
435
+ * @public
436
+ */
437
+ export declare class InvalidKeySigningKeyName extends __BaseException {
438
+ readonly name: "InvalidKeySigningKeyName";
439
+ readonly $fault: "client";
440
+ /**
441
+ * @internal
442
+ */
443
+ constructor(opts: __ExceptionOptionType<InvalidKeySigningKeyName, __BaseException>);
444
+ }
445
+ /**
446
+ * <p>You've already created a key-signing key (KSK) with this name or with the same customer managed key ARN.</p>
447
+ * @public
448
+ */
449
+ export declare class KeySigningKeyAlreadyExists extends __BaseException {
450
+ readonly name: "KeySigningKeyAlreadyExists";
451
+ readonly $fault: "client";
452
+ /**
453
+ * @internal
454
+ */
455
+ constructor(opts: __ExceptionOptionType<KeySigningKeyAlreadyExists, __BaseException>);
456
+ }
457
+ /**
458
+ * <p>You've reached the limit for the number of key-signing keys (KSKs). Remove at least
459
+ * one KSK, and then try again.</p>
460
+ * @public
461
+ */
462
+ export declare class TooManyKeySigningKeys extends __BaseException {
463
+ readonly name: "TooManyKeySigningKeys";
464
+ readonly $fault: "client";
465
+ /**
466
+ * @internal
467
+ */
468
+ constructor(opts: __ExceptionOptionType<TooManyKeySigningKeys, __BaseException>);
469
+ }
470
+ /**
471
+ * <p>Amazon Route 53 doesn't have the permissions required to create log streams and send
472
+ * query logs to log streams. Possible causes include the following:</p>
473
+ * <ul>
474
+ * <li>
475
+ * <p>There is no resource policy that specifies the log group ARN in the value for
476
+ * <code>Resource</code>.</p>
477
+ * </li>
478
+ * <li>
479
+ * <p>The resource policy that includes the log group ARN in the value for
480
+ * <code>Resource</code> doesn't have the necessary permissions.</p>
481
+ * </li>
482
+ * <li>
483
+ * <p>The resource policy hasn't finished propagating yet.</p>
484
+ * </li>
485
+ * <li>
486
+ * <p>The Key management service (KMS) key you specified doesn’t exist or it can’t
487
+ * be used with the log group associated with query log. Update or provide a
488
+ * resource policy to grant permissions for the KMS key.</p>
489
+ * </li>
490
+ * <li>
491
+ * <p>The Key management service (KMS) key you specified is marked as
492
+ * disabled for the log group associated with query log. Update or provide
493
+ * a resource policy to grant permissions for the KMS key.</p>
494
+ * </li>
495
+ * </ul>
496
+ * @public
497
+ */
498
+ export declare class InsufficientCloudWatchLogsResourcePolicy extends __BaseException {
499
+ readonly name: "InsufficientCloudWatchLogsResourcePolicy";
500
+ readonly $fault: "client";
501
+ /**
502
+ * @internal
503
+ */
504
+ constructor(opts: __ExceptionOptionType<InsufficientCloudWatchLogsResourcePolicy, __BaseException>);
505
+ }
506
+ /**
507
+ * <p>There is no CloudWatch Logs log group with the specified ARN.</p>
508
+ * @public
509
+ */
510
+ export declare class NoSuchCloudWatchLogsLogGroup extends __BaseException {
511
+ readonly name: "NoSuchCloudWatchLogsLogGroup";
512
+ readonly $fault: "client";
513
+ /**
514
+ * @internal
515
+ */
516
+ constructor(opts: __ExceptionOptionType<NoSuchCloudWatchLogsLogGroup, __BaseException>);
517
+ }
518
+ /**
519
+ * <p>You can create only one query logging configuration for a hosted zone, and a query
520
+ * logging configuration already exists for this hosted zone.</p>
521
+ * @public
522
+ */
523
+ export declare class QueryLoggingConfigAlreadyExists extends __BaseException {
524
+ readonly name: "QueryLoggingConfigAlreadyExists";
525
+ readonly $fault: "client";
526
+ /**
527
+ * @internal
528
+ */
529
+ constructor(opts: __ExceptionOptionType<QueryLoggingConfigAlreadyExists, __BaseException>);
530
+ }
531
+ /**
532
+ * <p>A delegation set with the same owner and caller reference combination has already been
533
+ * created.</p>
534
+ * @public
535
+ */
536
+ export declare class DelegationSetAlreadyCreated extends __BaseException {
537
+ readonly name: "DelegationSetAlreadyCreated";
538
+ readonly $fault: "client";
539
+ /**
540
+ * @internal
541
+ */
542
+ constructor(opts: __ExceptionOptionType<DelegationSetAlreadyCreated, __BaseException>);
543
+ }
544
+ /**
545
+ * <p>The specified delegation set has already been marked as reusable.</p>
546
+ * @public
547
+ */
548
+ export declare class DelegationSetAlreadyReusable extends __BaseException {
549
+ readonly name: "DelegationSetAlreadyReusable";
550
+ readonly $fault: "client";
551
+ /**
552
+ * @internal
553
+ */
554
+ constructor(opts: __ExceptionOptionType<DelegationSetAlreadyReusable, __BaseException>);
555
+ }
556
+ /**
557
+ * <p>The specified HostedZone can't be found.</p>
558
+ * @public
559
+ */
560
+ export declare class HostedZoneNotFound extends __BaseException {
561
+ readonly name: "HostedZoneNotFound";
562
+ readonly $fault: "client";
563
+ /**
564
+ * @internal
565
+ */
566
+ constructor(opts: __ExceptionOptionType<HostedZoneNotFound, __BaseException>);
567
+ }
568
+ /**
569
+ * <p>The format of the traffic policy document that you specified in the
570
+ * <code>Document</code> element is not valid.</p>
571
+ * @public
572
+ */
573
+ export declare class InvalidTrafficPolicyDocument extends __BaseException {
574
+ readonly name: "InvalidTrafficPolicyDocument";
575
+ readonly $fault: "client";
576
+ /**
577
+ * @internal
578
+ */
579
+ constructor(opts: __ExceptionOptionType<InvalidTrafficPolicyDocument, __BaseException>);
580
+ }
581
+ /**
582
+ * <p>This traffic policy can't be created because the current account has reached the limit
583
+ * on the number of traffic policies.</p>
584
+ * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
585
+ * <i>Amazon Route 53 Developer Guide</i>.</p>
586
+ * <p>To get the current limit for an account, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html">GetAccountLimit</a>. </p>
587
+ * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
588
+ * case</a> with the Amazon Web Services Support Center.</p>
589
+ * @public
590
+ */
591
+ export declare class TooManyTrafficPolicies extends __BaseException {
592
+ readonly name: "TooManyTrafficPolicies";
593
+ readonly $fault: "client";
594
+ /**
595
+ * @internal
596
+ */
597
+ constructor(opts: __ExceptionOptionType<TooManyTrafficPolicies, __BaseException>);
598
+ }
599
+ /**
600
+ * <p>A traffic policy that has the same value for <code>Name</code> already exists.</p>
601
+ * @public
602
+ */
603
+ export declare class TrafficPolicyAlreadyExists extends __BaseException {
604
+ readonly name: "TrafficPolicyAlreadyExists";
605
+ readonly $fault: "client";
606
+ /**
607
+ * @internal
608
+ */
609
+ constructor(opts: __ExceptionOptionType<TrafficPolicyAlreadyExists, __BaseException>);
610
+ }
611
+ /**
612
+ * <p>No traffic policy exists with the specified ID.</p>
613
+ * @public
614
+ */
615
+ export declare class NoSuchTrafficPolicy extends __BaseException {
616
+ readonly name: "NoSuchTrafficPolicy";
617
+ readonly $fault: "client";
618
+ /**
619
+ * @internal
620
+ */
621
+ constructor(opts: __ExceptionOptionType<NoSuchTrafficPolicy, __BaseException>);
622
+ }
623
+ /**
624
+ * <p>This traffic policy instance can't be created because the current account has reached
625
+ * the limit on the number of traffic policy instances.</p>
626
+ * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
627
+ * <i>Amazon Route 53 Developer Guide</i>.</p>
628
+ * <p>For information about how to get the current limit for an account, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetAccountLimit.html">GetAccountLimit</a>.</p>
629
+ * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
630
+ * case</a> with the Amazon Web Services Support Center.</p>
631
+ * @public
632
+ */
633
+ export declare class TooManyTrafficPolicyInstances extends __BaseException {
634
+ readonly name: "TooManyTrafficPolicyInstances";
635
+ readonly $fault: "client";
636
+ /**
637
+ * @internal
638
+ */
639
+ constructor(opts: __ExceptionOptionType<TooManyTrafficPolicyInstances, __BaseException>);
640
+ }
641
+ /**
642
+ * <p>There is already a traffic policy instance with the specified ID.</p>
643
+ * @public
644
+ */
645
+ export declare class TrafficPolicyInstanceAlreadyExists extends __BaseException {
646
+ readonly name: "TrafficPolicyInstanceAlreadyExists";
647
+ readonly $fault: "client";
648
+ /**
649
+ * @internal
650
+ */
651
+ constructor(opts: __ExceptionOptionType<TrafficPolicyInstanceAlreadyExists, __BaseException>);
652
+ }
653
+ /**
654
+ * <p>This traffic policy version can't be created because you've reached the limit of 1000
655
+ * on the number of versions that you can create for the current traffic policy.</p>
656
+ * <p>To create more traffic policy versions, you can use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html">GetTrafficPolicy</a>
657
+ * to get the traffic policy document for a specified traffic policy version, and then use
658
+ * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html">CreateTrafficPolicy</a> to create a new traffic policy using the traffic policy
659
+ * document.</p>
660
+ * @public
661
+ */
662
+ export declare class TooManyTrafficPolicyVersionsForCurrentPolicy extends __BaseException {
663
+ readonly name: "TooManyTrafficPolicyVersionsForCurrentPolicy";
664
+ readonly $fault: "client";
665
+ /**
666
+ * @internal
667
+ */
668
+ constructor(opts: __ExceptionOptionType<TooManyTrafficPolicyVersionsForCurrentPolicy, __BaseException>);
669
+ }
670
+ /**
671
+ * <p>You've created the maximum number of authorizations that can be created for the
672
+ * specified hosted zone. To authorize another VPC to be associated with the hosted zone,
673
+ * submit a <code>DeleteVPCAssociationAuthorization</code> request to remove an existing
674
+ * authorization. To get a list of existing authorizations, submit a
675
+ * <code>ListVPCAssociationAuthorizations</code> request.</p>
676
+ * @public
677
+ */
678
+ export declare class TooManyVPCAssociationAuthorizations extends __BaseException {
679
+ readonly name: "TooManyVPCAssociationAuthorizations";
680
+ readonly $fault: "client";
681
+ /**
682
+ * @internal
683
+ */
684
+ constructor(opts: __ExceptionOptionType<TooManyVPCAssociationAuthorizations, __BaseException>);
685
+ }
686
+ /**
687
+ * <p>The key-signing key (KSK) is specified in a parent DS record.</p>
688
+ * @public
689
+ */
690
+ export declare class KeySigningKeyInParentDSRecord extends __BaseException {
691
+ readonly name: "KeySigningKeyInParentDSRecord";
692
+ readonly $fault: "client";
693
+ /**
694
+ * @internal
695
+ */
696
+ constructor(opts: __ExceptionOptionType<KeySigningKeyInParentDSRecord, __BaseException>);
697
+ }
698
+ /**
699
+ * <p>The key-signing key (KSK) that you specified can't be deactivated because it's the
700
+ * only KSK for a currently-enabled DNSSEC. Disable DNSSEC signing, or add or enable
701
+ * another KSK.</p>
702
+ * @public
703
+ */
704
+ export declare class KeySigningKeyInUse extends __BaseException {
705
+ readonly name: "KeySigningKeyInUse";
706
+ readonly $fault: "client";
707
+ /**
708
+ * @internal
709
+ */
710
+ constructor(opts: __ExceptionOptionType<KeySigningKeyInUse, __BaseException>);
711
+ }
712
+ /**
713
+ * <p>This CIDR collection is in use, and isn't empty.</p>
714
+ * @public
715
+ */
716
+ export declare class CidrCollectionInUseException extends __BaseException {
717
+ readonly name: "CidrCollectionInUseException";
718
+ readonly $fault: "client";
719
+ Message?: string | undefined;
720
+ /**
721
+ * @internal
722
+ */
723
+ constructor(opts: __ExceptionOptionType<CidrCollectionInUseException, __BaseException>);
724
+ }
725
+ /**
726
+ * <p>This error code is not in use.</p>
727
+ *
728
+ * @deprecated deprecated
729
+ * @public
730
+ */
731
+ export declare class HealthCheckInUse extends __BaseException {
732
+ readonly name: "HealthCheckInUse";
733
+ readonly $fault: "client";
734
+ /**
735
+ * @internal
736
+ */
737
+ constructor(opts: __ExceptionOptionType<HealthCheckInUse, __BaseException>);
738
+ }
739
+ /**
740
+ * <p>The hosted zone contains resource records that are not SOA or NS records.</p>
741
+ * @public
742
+ */
743
+ export declare class HostedZoneNotEmpty extends __BaseException {
744
+ readonly name: "HostedZoneNotEmpty";
745
+ readonly $fault: "client";
746
+ /**
747
+ * @internal
748
+ */
749
+ constructor(opts: __ExceptionOptionType<HostedZoneNotEmpty, __BaseException>);
750
+ }
751
+ /**
752
+ * <p>There is no DNS query logging configuration with the specified ID.</p>
753
+ * @public
754
+ */
755
+ export declare class NoSuchQueryLoggingConfig extends __BaseException {
756
+ readonly name: "NoSuchQueryLoggingConfig";
757
+ readonly $fault: "client";
758
+ /**
759
+ * @internal
760
+ */
761
+ constructor(opts: __ExceptionOptionType<NoSuchQueryLoggingConfig, __BaseException>);
762
+ }
763
+ /**
764
+ * <p>The specified delegation contains associated hosted zones which must be deleted before
765
+ * the reusable delegation set can be deleted.</p>
766
+ * @public
767
+ */
768
+ export declare class DelegationSetInUse extends __BaseException {
769
+ readonly name: "DelegationSetInUse";
770
+ readonly $fault: "client";
771
+ /**
772
+ * @internal
773
+ */
774
+ constructor(opts: __ExceptionOptionType<DelegationSetInUse, __BaseException>);
775
+ }
776
+ /**
777
+ * <p>One or more traffic policy instances were created by using the specified traffic
778
+ * policy.</p>
779
+ * @public
780
+ */
781
+ export declare class TrafficPolicyInUse extends __BaseException {
782
+ readonly name: "TrafficPolicyInUse";
783
+ readonly $fault: "client";
784
+ /**
785
+ * @internal
786
+ */
787
+ constructor(opts: __ExceptionOptionType<TrafficPolicyInUse, __BaseException>);
788
+ }
789
+ /**
790
+ * <p>No traffic policy instance exists with the specified ID.</p>
791
+ * @public
792
+ */
793
+ export declare class NoSuchTrafficPolicyInstance extends __BaseException {
794
+ readonly name: "NoSuchTrafficPolicyInstance";
795
+ readonly $fault: "client";
796
+ /**
797
+ * @internal
798
+ */
799
+ constructor(opts: __ExceptionOptionType<NoSuchTrafficPolicyInstance, __BaseException>);
800
+ }
801
+ /**
802
+ * <p>The VPC that you specified is not authorized to be associated with the hosted
803
+ * zone.</p>
804
+ * @public
805
+ */
806
+ export declare class VPCAssociationAuthorizationNotFound extends __BaseException {
807
+ readonly name: "VPCAssociationAuthorizationNotFound";
808
+ readonly $fault: "client";
809
+ /**
810
+ * @internal
811
+ */
812
+ constructor(opts: __ExceptionOptionType<VPCAssociationAuthorizationNotFound, __BaseException>);
813
+ }
814
+ /**
815
+ * <p>The hosted zone doesn't have any DNSSEC resources.</p>
816
+ * @public
817
+ */
818
+ export declare class DNSSECNotFound extends __BaseException {
819
+ readonly name: "DNSSECNotFound";
820
+ readonly $fault: "client";
821
+ /**
822
+ * @internal
823
+ */
824
+ constructor(opts: __ExceptionOptionType<DNSSECNotFound, __BaseException>);
825
+ }
826
+ /**
827
+ * <p>The VPC that you're trying to disassociate from the private hosted zone is the last
828
+ * VPC that is associated with the hosted zone. Amazon Route 53 doesn't support
829
+ * disassociating the last VPC from a hosted zone.</p>
830
+ * @public
831
+ */
832
+ export declare class LastVPCAssociation extends __BaseException {
833
+ readonly name: "LastVPCAssociation";
834
+ readonly $fault: "client";
835
+ /**
836
+ * @internal
837
+ */
838
+ constructor(opts: __ExceptionOptionType<LastVPCAssociation, __BaseException>);
839
+ }
840
+ /**
841
+ * <p>The specified VPC and hosted zone are not currently associated.</p>
842
+ * @public
843
+ */
844
+ export declare class VPCAssociationNotFound extends __BaseException {
845
+ readonly name: "VPCAssociationNotFound";
846
+ readonly $fault: "client";
847
+ /**
848
+ * @internal
849
+ */
850
+ constructor(opts: __ExceptionOptionType<VPCAssociationNotFound, __BaseException>);
851
+ }
852
+ /**
853
+ * <p>The hosted zone nameservers don't match the parent nameservers. The hosted zone and
854
+ * parent must have the same nameservers.</p>
855
+ * @public
856
+ */
857
+ export declare class HostedZonePartiallyDelegated extends __BaseException {
858
+ readonly name: "HostedZonePartiallyDelegated";
859
+ readonly $fault: "client";
860
+ /**
861
+ * @internal
862
+ */
863
+ constructor(opts: __ExceptionOptionType<HostedZonePartiallyDelegated, __BaseException>);
864
+ }
865
+ /**
866
+ * <p>A key-signing key (KSK) with <code>ACTIVE</code> status wasn't found.</p>
867
+ * @public
868
+ */
869
+ export declare class KeySigningKeyWithActiveStatusNotFound extends __BaseException {
870
+ readonly name: "KeySigningKeyWithActiveStatusNotFound";
871
+ readonly $fault: "client";
872
+ /**
873
+ * @internal
874
+ */
875
+ constructor(opts: __ExceptionOptionType<KeySigningKeyWithActiveStatusNotFound, __BaseException>);
876
+ }
877
+ /**
878
+ * <p>A change with the specified change ID does not exist.</p>
879
+ * @public
880
+ */
881
+ export declare class NoSuchChange extends __BaseException {
882
+ readonly name: "NoSuchChange";
883
+ readonly $fault: "client";
884
+ /**
885
+ * @internal
886
+ */
887
+ constructor(opts: __ExceptionOptionType<NoSuchChange, __BaseException>);
888
+ }
889
+ /**
890
+ * <p>Amazon Route 53 doesn't support the specified geographic location. For a list of
891
+ * supported geolocation codes, see the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html">GeoLocation</a> data
892
+ * type.</p>
893
+ * @public
894
+ */
895
+ export declare class NoSuchGeoLocation extends __BaseException {
896
+ readonly name: "NoSuchGeoLocation";
897
+ readonly $fault: "client";
898
+ /**
899
+ * @internal
900
+ */
901
+ constructor(opts: __ExceptionOptionType<NoSuchGeoLocation, __BaseException>);
902
+ }
903
+ /**
904
+ * <p>The resource you're trying to access is unsupported on this Amazon Route 53
905
+ * endpoint.</p>
906
+ * @public
907
+ */
908
+ export declare class IncompatibleVersion extends __BaseException {
909
+ readonly name: "IncompatibleVersion";
910
+ readonly $fault: "client";
911
+ /**
912
+ * @internal
913
+ */
914
+ constructor(opts: __ExceptionOptionType<IncompatibleVersion, __BaseException>);
915
+ }
916
+ /**
917
+ * <p>The specified hosted zone is a public hosted zone, not a private hosted zone.</p>
918
+ * @public
919
+ */
920
+ export declare class HostedZoneNotPrivate extends __BaseException {
921
+ readonly name: "HostedZoneNotPrivate";
922
+ readonly $fault: "client";
923
+ /**
924
+ * @internal
925
+ */
926
+ constructor(opts: __ExceptionOptionType<HostedZoneNotPrivate, __BaseException>);
927
+ }
928
+ /**
929
+ * <p>The CIDR collection location doesn't match any locations in your account.</p>
930
+ * @public
931
+ */
932
+ export declare class NoSuchCidrLocationException extends __BaseException {
933
+ readonly name: "NoSuchCidrLocationException";
934
+ readonly $fault: "client";
935
+ Message?: string | undefined;
936
+ /**
937
+ * @internal
938
+ */
939
+ constructor(opts: __ExceptionOptionType<NoSuchCidrLocationException, __BaseException>);
940
+ }
941
+ /**
942
+ * <p>The value that you specified to get the second or subsequent page of results is
943
+ * invalid.</p>
944
+ * @public
945
+ */
946
+ export declare class InvalidPaginationToken extends __BaseException {
947
+ readonly name: "InvalidPaginationToken";
948
+ readonly $fault: "client";
949
+ /**
950
+ * @internal
951
+ */
952
+ constructor(opts: __ExceptionOptionType<InvalidPaginationToken, __BaseException>);
953
+ }
954
+ /**
955
+ * <p>The value of <code>HealthCheckVersion</code> in the request doesn't match the value of
956
+ * <code>HealthCheckVersion</code> in the health check.</p>
957
+ * @public
958
+ */
959
+ export declare class HealthCheckVersionMismatch extends __BaseException {
960
+ readonly name: "HealthCheckVersionMismatch";
961
+ readonly $fault: "client";
962
+ /**
963
+ * @internal
964
+ */
965
+ constructor(opts: __ExceptionOptionType<HealthCheckVersionMismatch, __BaseException>);
966
+ }
967
+ /**
968
+ * <p>You tried to update a traffic policy instance by using a traffic policy version that
969
+ * has a different DNS type than the current type for the instance. You specified the type
970
+ * in the JSON document in the <code>CreateTrafficPolicy</code> or
971
+ * <code>CreateTrafficPolicyVersion</code>request. </p>
972
+ * @public
973
+ */
974
+ export declare class ConflictingTypes extends __BaseException {
975
+ readonly name: "ConflictingTypes";
976
+ readonly $fault: "client";
977
+ /**
978
+ * @internal
979
+ */
980
+ constructor(opts: __ExceptionOptionType<ConflictingTypes, __BaseException>);
981
+ }