@aws-sdk/client-route-53 3.52.0 → 3.54.1

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/Route53ServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +826 -4
  5. package/dist-cjs/protocols/Aws_restXml.js +864 -2450
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/Route53ServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +759 -1
  9. package/dist-es/protocols/Aws_restXml.js +1467 -2749
  10. package/dist-types/Route53.d.ts +111 -2
  11. package/dist-types/Route53Client.d.ts +2 -2
  12. package/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +22 -0
  13. package/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +2 -2
  14. package/dist-types/commands/CreateHostedZoneCommand.d.ts +21 -0
  15. package/dist-types/commands/CreateQueryLoggingConfigCommand.d.ts +22 -0
  16. package/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +21 -0
  17. package/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +23 -0
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/models/Route53ServiceException.d.ts +10 -0
  20. package/dist-types/models/models_0.d.ts +367 -291
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  22. package/dist-types/runtimeConfig.d.ts +1 -1
  23. package/dist-types/runtimeConfig.native.d.ts +1 -1
  24. package/dist-types/ts3.4/Route53Client.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/Route53ServiceException.d.ts +6 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +279 -253
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  31. package/package.json +29 -29
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { Route53ServiceException as __BaseException } from "./Route53ServiceException";
2
3
  export var AccountLimit;
3
4
  (function (AccountLimit) {
4
5
  AccountLimit.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -15,6 +16,78 @@ export var ActivateKeySigningKeyResponse;
15
16
  (function (ActivateKeySigningKeyResponse) {
16
17
  ActivateKeySigningKeyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
17
18
  })(ActivateKeySigningKeyResponse || (ActivateKeySigningKeyResponse = {}));
19
+ var ConcurrentModification = (function (_super) {
20
+ __extends(ConcurrentModification, _super);
21
+ function ConcurrentModification(opts) {
22
+ var _this = _super.call(this, __assign({ name: "ConcurrentModification", $fault: "client" }, opts)) || this;
23
+ _this.name = "ConcurrentModification";
24
+ _this.$fault = "client";
25
+ Object.setPrototypeOf(_this, ConcurrentModification.prototype);
26
+ return _this;
27
+ }
28
+ return ConcurrentModification;
29
+ }(__BaseException));
30
+ export { ConcurrentModification };
31
+ var InvalidInput = (function (_super) {
32
+ __extends(InvalidInput, _super);
33
+ function InvalidInput(opts) {
34
+ var _this = _super.call(this, __assign({ name: "InvalidInput", $fault: "client" }, opts)) || this;
35
+ _this.name = "InvalidInput";
36
+ _this.$fault = "client";
37
+ Object.setPrototypeOf(_this, InvalidInput.prototype);
38
+ return _this;
39
+ }
40
+ return InvalidInput;
41
+ }(__BaseException));
42
+ export { InvalidInput };
43
+ var InvalidKeySigningKeyStatus = (function (_super) {
44
+ __extends(InvalidKeySigningKeyStatus, _super);
45
+ function InvalidKeySigningKeyStatus(opts) {
46
+ var _this = _super.call(this, __assign({ name: "InvalidKeySigningKeyStatus", $fault: "client" }, opts)) || this;
47
+ _this.name = "InvalidKeySigningKeyStatus";
48
+ _this.$fault = "client";
49
+ Object.setPrototypeOf(_this, InvalidKeySigningKeyStatus.prototype);
50
+ return _this;
51
+ }
52
+ return InvalidKeySigningKeyStatus;
53
+ }(__BaseException));
54
+ export { InvalidKeySigningKeyStatus };
55
+ var InvalidKMSArn = (function (_super) {
56
+ __extends(InvalidKMSArn, _super);
57
+ function InvalidKMSArn(opts) {
58
+ var _this = _super.call(this, __assign({ name: "InvalidKMSArn", $fault: "client" }, opts)) || this;
59
+ _this.name = "InvalidKMSArn";
60
+ _this.$fault = "client";
61
+ Object.setPrototypeOf(_this, InvalidKMSArn.prototype);
62
+ return _this;
63
+ }
64
+ return InvalidKMSArn;
65
+ }(__BaseException));
66
+ export { InvalidKMSArn };
67
+ var InvalidSigningStatus = (function (_super) {
68
+ __extends(InvalidSigningStatus, _super);
69
+ function InvalidSigningStatus(opts) {
70
+ var _this = _super.call(this, __assign({ name: "InvalidSigningStatus", $fault: "client" }, opts)) || this;
71
+ _this.name = "InvalidSigningStatus";
72
+ _this.$fault = "client";
73
+ Object.setPrototypeOf(_this, InvalidSigningStatus.prototype);
74
+ return _this;
75
+ }
76
+ return InvalidSigningStatus;
77
+ }(__BaseException));
78
+ export { InvalidSigningStatus };
79
+ var NoSuchKeySigningKey = (function (_super) {
80
+ __extends(NoSuchKeySigningKey, _super);
81
+ function NoSuchKeySigningKey(opts) {
82
+ var _this = _super.call(this, __assign({ name: "NoSuchKeySigningKey", $fault: "client" }, opts)) || this;
83
+ _this.name = "NoSuchKeySigningKey";
84
+ _this.$fault = "client";
85
+ Object.setPrototypeOf(_this, NoSuchKeySigningKey.prototype);
86
+ return _this;
87
+ }
88
+ return NoSuchKeySigningKey;
89
+ }(__BaseException));
90
+ export { NoSuchKeySigningKey };
18
91
  export var AlarmIdentifier;
19
92
  (function (AlarmIdentifier) {
20
93
  AlarmIdentifier.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -35,6 +108,90 @@ export var AssociateVPCWithHostedZoneResponse;
35
108
  (function (AssociateVPCWithHostedZoneResponse) {
36
109
  AssociateVPCWithHostedZoneResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
37
110
  })(AssociateVPCWithHostedZoneResponse || (AssociateVPCWithHostedZoneResponse = {}));
111
+ var ConflictingDomainExists = (function (_super) {
112
+ __extends(ConflictingDomainExists, _super);
113
+ function ConflictingDomainExists(opts) {
114
+ var _this = _super.call(this, __assign({ name: "ConflictingDomainExists", $fault: "client" }, opts)) || this;
115
+ _this.name = "ConflictingDomainExists";
116
+ _this.$fault = "client";
117
+ Object.setPrototypeOf(_this, ConflictingDomainExists.prototype);
118
+ return _this;
119
+ }
120
+ return ConflictingDomainExists;
121
+ }(__BaseException));
122
+ export { ConflictingDomainExists };
123
+ var InvalidVPCId = (function (_super) {
124
+ __extends(InvalidVPCId, _super);
125
+ function InvalidVPCId(opts) {
126
+ var _this = _super.call(this, __assign({ name: "InvalidVPCId", $fault: "client" }, opts)) || this;
127
+ _this.name = "InvalidVPCId";
128
+ _this.$fault = "client";
129
+ Object.setPrototypeOf(_this, InvalidVPCId.prototype);
130
+ return _this;
131
+ }
132
+ return InvalidVPCId;
133
+ }(__BaseException));
134
+ export { InvalidVPCId };
135
+ var LimitsExceeded = (function (_super) {
136
+ __extends(LimitsExceeded, _super);
137
+ function LimitsExceeded(opts) {
138
+ var _this = _super.call(this, __assign({ name: "LimitsExceeded", $fault: "client" }, opts)) || this;
139
+ _this.name = "LimitsExceeded";
140
+ _this.$fault = "client";
141
+ Object.setPrototypeOf(_this, LimitsExceeded.prototype);
142
+ return _this;
143
+ }
144
+ return LimitsExceeded;
145
+ }(__BaseException));
146
+ export { LimitsExceeded };
147
+ var NoSuchHostedZone = (function (_super) {
148
+ __extends(NoSuchHostedZone, _super);
149
+ function NoSuchHostedZone(opts) {
150
+ var _this = _super.call(this, __assign({ name: "NoSuchHostedZone", $fault: "client" }, opts)) || this;
151
+ _this.name = "NoSuchHostedZone";
152
+ _this.$fault = "client";
153
+ Object.setPrototypeOf(_this, NoSuchHostedZone.prototype);
154
+ return _this;
155
+ }
156
+ return NoSuchHostedZone;
157
+ }(__BaseException));
158
+ export { NoSuchHostedZone };
159
+ var NotAuthorizedException = (function (_super) {
160
+ __extends(NotAuthorizedException, _super);
161
+ function NotAuthorizedException(opts) {
162
+ var _this = _super.call(this, __assign({ name: "NotAuthorizedException", $fault: "client" }, opts)) || this;
163
+ _this.name = "NotAuthorizedException";
164
+ _this.$fault = "client";
165
+ Object.setPrototypeOf(_this, NotAuthorizedException.prototype);
166
+ return _this;
167
+ }
168
+ return NotAuthorizedException;
169
+ }(__BaseException));
170
+ export { NotAuthorizedException };
171
+ var PriorRequestNotComplete = (function (_super) {
172
+ __extends(PriorRequestNotComplete, _super);
173
+ function PriorRequestNotComplete(opts) {
174
+ var _this = _super.call(this, __assign({ name: "PriorRequestNotComplete", $fault: "client" }, opts)) || this;
175
+ _this.name = "PriorRequestNotComplete";
176
+ _this.$fault = "client";
177
+ Object.setPrototypeOf(_this, PriorRequestNotComplete.prototype);
178
+ return _this;
179
+ }
180
+ return PriorRequestNotComplete;
181
+ }(__BaseException));
182
+ export { PriorRequestNotComplete };
183
+ var PublicZoneVPCAssociation = (function (_super) {
184
+ __extends(PublicZoneVPCAssociation, _super);
185
+ function PublicZoneVPCAssociation(opts) {
186
+ var _this = _super.call(this, __assign({ name: "PublicZoneVPCAssociation", $fault: "client" }, opts)) || this;
187
+ _this.name = "PublicZoneVPCAssociation";
188
+ _this.$fault = "client";
189
+ Object.setPrototypeOf(_this, PublicZoneVPCAssociation.prototype);
190
+ return _this;
191
+ }
192
+ return PublicZoneVPCAssociation;
193
+ }(__BaseException));
194
+ export { PublicZoneVPCAssociation };
38
195
  export var GeoLocation;
39
196
  (function (GeoLocation) {
40
197
  GeoLocation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -63,6 +220,31 @@ export var ChangeResourceRecordSetsResponse;
63
220
  (function (ChangeResourceRecordSetsResponse) {
64
221
  ChangeResourceRecordSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
65
222
  })(ChangeResourceRecordSetsResponse || (ChangeResourceRecordSetsResponse = {}));
223
+ var InvalidChangeBatch = (function (_super) {
224
+ __extends(InvalidChangeBatch, _super);
225
+ function InvalidChangeBatch(opts) {
226
+ var _this = _super.call(this, __assign({ name: "InvalidChangeBatch", $fault: "client" }, opts)) || this;
227
+ _this.name = "InvalidChangeBatch";
228
+ _this.$fault = "client";
229
+ Object.setPrototypeOf(_this, InvalidChangeBatch.prototype);
230
+ _this.messages = opts.messages;
231
+ return _this;
232
+ }
233
+ return InvalidChangeBatch;
234
+ }(__BaseException));
235
+ export { InvalidChangeBatch };
236
+ var NoSuchHealthCheck = (function (_super) {
237
+ __extends(NoSuchHealthCheck, _super);
238
+ function NoSuchHealthCheck(opts) {
239
+ var _this = _super.call(this, __assign({ name: "NoSuchHealthCheck", $fault: "client" }, opts)) || this;
240
+ _this.name = "NoSuchHealthCheck";
241
+ _this.$fault = "client";
242
+ Object.setPrototypeOf(_this, NoSuchHealthCheck.prototype);
243
+ return _this;
244
+ }
245
+ return NoSuchHealthCheck;
246
+ }(__BaseException));
247
+ export { NoSuchHealthCheck };
66
248
  export var Tag;
67
249
  (function (Tag) {
68
250
  Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -75,6 +257,18 @@ export var ChangeTagsForResourceResponse;
75
257
  (function (ChangeTagsForResourceResponse) {
76
258
  ChangeTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
77
259
  })(ChangeTagsForResourceResponse || (ChangeTagsForResourceResponse = {}));
260
+ var ThrottlingException = (function (_super) {
261
+ __extends(ThrottlingException, _super);
262
+ function ThrottlingException(opts) {
263
+ var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
264
+ _this.name = "ThrottlingException";
265
+ _this.$fault = "client";
266
+ Object.setPrototypeOf(_this, ThrottlingException.prototype);
267
+ return _this;
268
+ }
269
+ return ThrottlingException;
270
+ }(__BaseException));
271
+ export { ThrottlingException };
78
272
  export var HealthCheckType;
79
273
  (function (HealthCheckType) {
80
274
  HealthCheckType["CALCULATED"] = "CALCULATED";
@@ -114,6 +308,30 @@ export var CreateHealthCheckResponse;
114
308
  (function (CreateHealthCheckResponse) {
115
309
  CreateHealthCheckResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
116
310
  })(CreateHealthCheckResponse || (CreateHealthCheckResponse = {}));
311
+ var HealthCheckAlreadyExists = (function (_super) {
312
+ __extends(HealthCheckAlreadyExists, _super);
313
+ function HealthCheckAlreadyExists(opts) {
314
+ var _this = _super.call(this, __assign({ name: "HealthCheckAlreadyExists", $fault: "client" }, opts)) || this;
315
+ _this.name = "HealthCheckAlreadyExists";
316
+ _this.$fault = "client";
317
+ Object.setPrototypeOf(_this, HealthCheckAlreadyExists.prototype);
318
+ return _this;
319
+ }
320
+ return HealthCheckAlreadyExists;
321
+ }(__BaseException));
322
+ export { HealthCheckAlreadyExists };
323
+ var TooManyHealthChecks = (function (_super) {
324
+ __extends(TooManyHealthChecks, _super);
325
+ function TooManyHealthChecks(opts) {
326
+ var _this = _super.call(this, __assign({ name: "TooManyHealthChecks", $fault: "client" }, opts)) || this;
327
+ _this.name = "TooManyHealthChecks";
328
+ _this.$fault = "client";
329
+ Object.setPrototypeOf(_this, TooManyHealthChecks.prototype);
330
+ return _this;
331
+ }
332
+ return TooManyHealthChecks;
333
+ }(__BaseException));
334
+ export { TooManyHealthChecks };
117
335
  export var HostedZoneConfig;
118
336
  (function (HostedZoneConfig) {
119
337
  HostedZoneConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -134,6 +352,78 @@ export var CreateHostedZoneResponse;
134
352
  (function (CreateHostedZoneResponse) {
135
353
  CreateHostedZoneResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
354
  })(CreateHostedZoneResponse || (CreateHostedZoneResponse = {}));
355
+ var DelegationSetNotAvailable = (function (_super) {
356
+ __extends(DelegationSetNotAvailable, _super);
357
+ function DelegationSetNotAvailable(opts) {
358
+ var _this = _super.call(this, __assign({ name: "DelegationSetNotAvailable", $fault: "client" }, opts)) || this;
359
+ _this.name = "DelegationSetNotAvailable";
360
+ _this.$fault = "client";
361
+ Object.setPrototypeOf(_this, DelegationSetNotAvailable.prototype);
362
+ return _this;
363
+ }
364
+ return DelegationSetNotAvailable;
365
+ }(__BaseException));
366
+ export { DelegationSetNotAvailable };
367
+ var DelegationSetNotReusable = (function (_super) {
368
+ __extends(DelegationSetNotReusable, _super);
369
+ function DelegationSetNotReusable(opts) {
370
+ var _this = _super.call(this, __assign({ name: "DelegationSetNotReusable", $fault: "client" }, opts)) || this;
371
+ _this.name = "DelegationSetNotReusable";
372
+ _this.$fault = "client";
373
+ Object.setPrototypeOf(_this, DelegationSetNotReusable.prototype);
374
+ return _this;
375
+ }
376
+ return DelegationSetNotReusable;
377
+ }(__BaseException));
378
+ export { DelegationSetNotReusable };
379
+ var HostedZoneAlreadyExists = (function (_super) {
380
+ __extends(HostedZoneAlreadyExists, _super);
381
+ function HostedZoneAlreadyExists(opts) {
382
+ var _this = _super.call(this, __assign({ name: "HostedZoneAlreadyExists", $fault: "client" }, opts)) || this;
383
+ _this.name = "HostedZoneAlreadyExists";
384
+ _this.$fault = "client";
385
+ Object.setPrototypeOf(_this, HostedZoneAlreadyExists.prototype);
386
+ return _this;
387
+ }
388
+ return HostedZoneAlreadyExists;
389
+ }(__BaseException));
390
+ export { HostedZoneAlreadyExists };
391
+ var InvalidDomainName = (function (_super) {
392
+ __extends(InvalidDomainName, _super);
393
+ function InvalidDomainName(opts) {
394
+ var _this = _super.call(this, __assign({ name: "InvalidDomainName", $fault: "client" }, opts)) || this;
395
+ _this.name = "InvalidDomainName";
396
+ _this.$fault = "client";
397
+ Object.setPrototypeOf(_this, InvalidDomainName.prototype);
398
+ return _this;
399
+ }
400
+ return InvalidDomainName;
401
+ }(__BaseException));
402
+ export { InvalidDomainName };
403
+ var NoSuchDelegationSet = (function (_super) {
404
+ __extends(NoSuchDelegationSet, _super);
405
+ function NoSuchDelegationSet(opts) {
406
+ var _this = _super.call(this, __assign({ name: "NoSuchDelegationSet", $fault: "client" }, opts)) || this;
407
+ _this.name = "NoSuchDelegationSet";
408
+ _this.$fault = "client";
409
+ Object.setPrototypeOf(_this, NoSuchDelegationSet.prototype);
410
+ return _this;
411
+ }
412
+ return NoSuchDelegationSet;
413
+ }(__BaseException));
414
+ export { NoSuchDelegationSet };
415
+ var TooManyHostedZones = (function (_super) {
416
+ __extends(TooManyHostedZones, _super);
417
+ function TooManyHostedZones(opts) {
418
+ var _this = _super.call(this, __assign({ name: "TooManyHostedZones", $fault: "client" }, opts)) || this;
419
+ _this.name = "TooManyHostedZones";
420
+ _this.$fault = "client";
421
+ Object.setPrototypeOf(_this, TooManyHostedZones.prototype);
422
+ return _this;
423
+ }
424
+ return TooManyHostedZones;
425
+ }(__BaseException));
426
+ export { TooManyHostedZones };
137
427
  export var CreateKeySigningKeyRequest;
138
428
  (function (CreateKeySigningKeyRequest) {
139
429
  CreateKeySigningKeyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -146,6 +436,54 @@ export var CreateKeySigningKeyResponse;
146
436
  (function (CreateKeySigningKeyResponse) {
147
437
  CreateKeySigningKeyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
438
  })(CreateKeySigningKeyResponse || (CreateKeySigningKeyResponse = {}));
439
+ var InvalidArgument = (function (_super) {
440
+ __extends(InvalidArgument, _super);
441
+ function InvalidArgument(opts) {
442
+ var _this = _super.call(this, __assign({ name: "InvalidArgument", $fault: "client" }, opts)) || this;
443
+ _this.name = "InvalidArgument";
444
+ _this.$fault = "client";
445
+ Object.setPrototypeOf(_this, InvalidArgument.prototype);
446
+ return _this;
447
+ }
448
+ return InvalidArgument;
449
+ }(__BaseException));
450
+ export { InvalidArgument };
451
+ var InvalidKeySigningKeyName = (function (_super) {
452
+ __extends(InvalidKeySigningKeyName, _super);
453
+ function InvalidKeySigningKeyName(opts) {
454
+ var _this = _super.call(this, __assign({ name: "InvalidKeySigningKeyName", $fault: "client" }, opts)) || this;
455
+ _this.name = "InvalidKeySigningKeyName";
456
+ _this.$fault = "client";
457
+ Object.setPrototypeOf(_this, InvalidKeySigningKeyName.prototype);
458
+ return _this;
459
+ }
460
+ return InvalidKeySigningKeyName;
461
+ }(__BaseException));
462
+ export { InvalidKeySigningKeyName };
463
+ var KeySigningKeyAlreadyExists = (function (_super) {
464
+ __extends(KeySigningKeyAlreadyExists, _super);
465
+ function KeySigningKeyAlreadyExists(opts) {
466
+ var _this = _super.call(this, __assign({ name: "KeySigningKeyAlreadyExists", $fault: "client" }, opts)) || this;
467
+ _this.name = "KeySigningKeyAlreadyExists";
468
+ _this.$fault = "client";
469
+ Object.setPrototypeOf(_this, KeySigningKeyAlreadyExists.prototype);
470
+ return _this;
471
+ }
472
+ return KeySigningKeyAlreadyExists;
473
+ }(__BaseException));
474
+ export { KeySigningKeyAlreadyExists };
475
+ var TooManyKeySigningKeys = (function (_super) {
476
+ __extends(TooManyKeySigningKeys, _super);
477
+ function TooManyKeySigningKeys(opts) {
478
+ var _this = _super.call(this, __assign({ name: "TooManyKeySigningKeys", $fault: "client" }, opts)) || this;
479
+ _this.name = "TooManyKeySigningKeys";
480
+ _this.$fault = "client";
481
+ Object.setPrototypeOf(_this, TooManyKeySigningKeys.prototype);
482
+ return _this;
483
+ }
484
+ return TooManyKeySigningKeys;
485
+ }(__BaseException));
486
+ export { TooManyKeySigningKeys };
149
487
  export var CreateQueryLoggingConfigRequest;
150
488
  (function (CreateQueryLoggingConfigRequest) {
151
489
  CreateQueryLoggingConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -158,6 +496,42 @@ export var CreateQueryLoggingConfigResponse;
158
496
  (function (CreateQueryLoggingConfigResponse) {
159
497
  CreateQueryLoggingConfigResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
498
  })(CreateQueryLoggingConfigResponse || (CreateQueryLoggingConfigResponse = {}));
499
+ var InsufficientCloudWatchLogsResourcePolicy = (function (_super) {
500
+ __extends(InsufficientCloudWatchLogsResourcePolicy, _super);
501
+ function InsufficientCloudWatchLogsResourcePolicy(opts) {
502
+ var _this = _super.call(this, __assign({ name: "InsufficientCloudWatchLogsResourcePolicy", $fault: "client" }, opts)) || this;
503
+ _this.name = "InsufficientCloudWatchLogsResourcePolicy";
504
+ _this.$fault = "client";
505
+ Object.setPrototypeOf(_this, InsufficientCloudWatchLogsResourcePolicy.prototype);
506
+ return _this;
507
+ }
508
+ return InsufficientCloudWatchLogsResourcePolicy;
509
+ }(__BaseException));
510
+ export { InsufficientCloudWatchLogsResourcePolicy };
511
+ var NoSuchCloudWatchLogsLogGroup = (function (_super) {
512
+ __extends(NoSuchCloudWatchLogsLogGroup, _super);
513
+ function NoSuchCloudWatchLogsLogGroup(opts) {
514
+ var _this = _super.call(this, __assign({ name: "NoSuchCloudWatchLogsLogGroup", $fault: "client" }, opts)) || this;
515
+ _this.name = "NoSuchCloudWatchLogsLogGroup";
516
+ _this.$fault = "client";
517
+ Object.setPrototypeOf(_this, NoSuchCloudWatchLogsLogGroup.prototype);
518
+ return _this;
519
+ }
520
+ return NoSuchCloudWatchLogsLogGroup;
521
+ }(__BaseException));
522
+ export { NoSuchCloudWatchLogsLogGroup };
523
+ var QueryLoggingConfigAlreadyExists = (function (_super) {
524
+ __extends(QueryLoggingConfigAlreadyExists, _super);
525
+ function QueryLoggingConfigAlreadyExists(opts) {
526
+ var _this = _super.call(this, __assign({ name: "QueryLoggingConfigAlreadyExists", $fault: "client" }, opts)) || this;
527
+ _this.name = "QueryLoggingConfigAlreadyExists";
528
+ _this.$fault = "client";
529
+ Object.setPrototypeOf(_this, QueryLoggingConfigAlreadyExists.prototype);
530
+ return _this;
531
+ }
532
+ return QueryLoggingConfigAlreadyExists;
533
+ }(__BaseException));
534
+ export { QueryLoggingConfigAlreadyExists };
161
535
  export var CreateReusableDelegationSetRequest;
162
536
  (function (CreateReusableDelegationSetRequest) {
163
537
  CreateReusableDelegationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -166,6 +540,42 @@ export var CreateReusableDelegationSetResponse;
166
540
  (function (CreateReusableDelegationSetResponse) {
167
541
  CreateReusableDelegationSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
542
  })(CreateReusableDelegationSetResponse || (CreateReusableDelegationSetResponse = {}));
543
+ var DelegationSetAlreadyCreated = (function (_super) {
544
+ __extends(DelegationSetAlreadyCreated, _super);
545
+ function DelegationSetAlreadyCreated(opts) {
546
+ var _this = _super.call(this, __assign({ name: "DelegationSetAlreadyCreated", $fault: "client" }, opts)) || this;
547
+ _this.name = "DelegationSetAlreadyCreated";
548
+ _this.$fault = "client";
549
+ Object.setPrototypeOf(_this, DelegationSetAlreadyCreated.prototype);
550
+ return _this;
551
+ }
552
+ return DelegationSetAlreadyCreated;
553
+ }(__BaseException));
554
+ export { DelegationSetAlreadyCreated };
555
+ var DelegationSetAlreadyReusable = (function (_super) {
556
+ __extends(DelegationSetAlreadyReusable, _super);
557
+ function DelegationSetAlreadyReusable(opts) {
558
+ var _this = _super.call(this, __assign({ name: "DelegationSetAlreadyReusable", $fault: "client" }, opts)) || this;
559
+ _this.name = "DelegationSetAlreadyReusable";
560
+ _this.$fault = "client";
561
+ Object.setPrototypeOf(_this, DelegationSetAlreadyReusable.prototype);
562
+ return _this;
563
+ }
564
+ return DelegationSetAlreadyReusable;
565
+ }(__BaseException));
566
+ export { DelegationSetAlreadyReusable };
567
+ var HostedZoneNotFound = (function (_super) {
568
+ __extends(HostedZoneNotFound, _super);
569
+ function HostedZoneNotFound(opts) {
570
+ var _this = _super.call(this, __assign({ name: "HostedZoneNotFound", $fault: "client" }, opts)) || this;
571
+ _this.name = "HostedZoneNotFound";
572
+ _this.$fault = "client";
573
+ Object.setPrototypeOf(_this, HostedZoneNotFound.prototype);
574
+ return _this;
575
+ }
576
+ return HostedZoneNotFound;
577
+ }(__BaseException));
578
+ export { HostedZoneNotFound };
169
579
  export var CreateTrafficPolicyRequest;
170
580
  (function (CreateTrafficPolicyRequest) {
171
581
  CreateTrafficPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -178,6 +588,42 @@ export var CreateTrafficPolicyResponse;
178
588
  (function (CreateTrafficPolicyResponse) {
179
589
  CreateTrafficPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
590
  })(CreateTrafficPolicyResponse || (CreateTrafficPolicyResponse = {}));
591
+ var InvalidTrafficPolicyDocument = (function (_super) {
592
+ __extends(InvalidTrafficPolicyDocument, _super);
593
+ function InvalidTrafficPolicyDocument(opts) {
594
+ var _this = _super.call(this, __assign({ name: "InvalidTrafficPolicyDocument", $fault: "client" }, opts)) || this;
595
+ _this.name = "InvalidTrafficPolicyDocument";
596
+ _this.$fault = "client";
597
+ Object.setPrototypeOf(_this, InvalidTrafficPolicyDocument.prototype);
598
+ return _this;
599
+ }
600
+ return InvalidTrafficPolicyDocument;
601
+ }(__BaseException));
602
+ export { InvalidTrafficPolicyDocument };
603
+ var TooManyTrafficPolicies = (function (_super) {
604
+ __extends(TooManyTrafficPolicies, _super);
605
+ function TooManyTrafficPolicies(opts) {
606
+ var _this = _super.call(this, __assign({ name: "TooManyTrafficPolicies", $fault: "client" }, opts)) || this;
607
+ _this.name = "TooManyTrafficPolicies";
608
+ _this.$fault = "client";
609
+ Object.setPrototypeOf(_this, TooManyTrafficPolicies.prototype);
610
+ return _this;
611
+ }
612
+ return TooManyTrafficPolicies;
613
+ }(__BaseException));
614
+ export { TooManyTrafficPolicies };
615
+ var TrafficPolicyAlreadyExists = (function (_super) {
616
+ __extends(TrafficPolicyAlreadyExists, _super);
617
+ function TrafficPolicyAlreadyExists(opts) {
618
+ var _this = _super.call(this, __assign({ name: "TrafficPolicyAlreadyExists", $fault: "client" }, opts)) || this;
619
+ _this.name = "TrafficPolicyAlreadyExists";
620
+ _this.$fault = "client";
621
+ Object.setPrototypeOf(_this, TrafficPolicyAlreadyExists.prototype);
622
+ return _this;
623
+ }
624
+ return TrafficPolicyAlreadyExists;
625
+ }(__BaseException));
626
+ export { TrafficPolicyAlreadyExists };
181
627
  export var CreateTrafficPolicyInstanceRequest;
182
628
  (function (CreateTrafficPolicyInstanceRequest) {
183
629
  CreateTrafficPolicyInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -190,6 +636,42 @@ export var CreateTrafficPolicyInstanceResponse;
190
636
  (function (CreateTrafficPolicyInstanceResponse) {
191
637
  CreateTrafficPolicyInstanceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
638
  })(CreateTrafficPolicyInstanceResponse || (CreateTrafficPolicyInstanceResponse = {}));
639
+ var NoSuchTrafficPolicy = (function (_super) {
640
+ __extends(NoSuchTrafficPolicy, _super);
641
+ function NoSuchTrafficPolicy(opts) {
642
+ var _this = _super.call(this, __assign({ name: "NoSuchTrafficPolicy", $fault: "client" }, opts)) || this;
643
+ _this.name = "NoSuchTrafficPolicy";
644
+ _this.$fault = "client";
645
+ Object.setPrototypeOf(_this, NoSuchTrafficPolicy.prototype);
646
+ return _this;
647
+ }
648
+ return NoSuchTrafficPolicy;
649
+ }(__BaseException));
650
+ export { NoSuchTrafficPolicy };
651
+ var TooManyTrafficPolicyInstances = (function (_super) {
652
+ __extends(TooManyTrafficPolicyInstances, _super);
653
+ function TooManyTrafficPolicyInstances(opts) {
654
+ var _this = _super.call(this, __assign({ name: "TooManyTrafficPolicyInstances", $fault: "client" }, opts)) || this;
655
+ _this.name = "TooManyTrafficPolicyInstances";
656
+ _this.$fault = "client";
657
+ Object.setPrototypeOf(_this, TooManyTrafficPolicyInstances.prototype);
658
+ return _this;
659
+ }
660
+ return TooManyTrafficPolicyInstances;
661
+ }(__BaseException));
662
+ export { TooManyTrafficPolicyInstances };
663
+ var TrafficPolicyInstanceAlreadyExists = (function (_super) {
664
+ __extends(TrafficPolicyInstanceAlreadyExists, _super);
665
+ function TrafficPolicyInstanceAlreadyExists(opts) {
666
+ var _this = _super.call(this, __assign({ name: "TrafficPolicyInstanceAlreadyExists", $fault: "client" }, opts)) || this;
667
+ _this.name = "TrafficPolicyInstanceAlreadyExists";
668
+ _this.$fault = "client";
669
+ Object.setPrototypeOf(_this, TrafficPolicyInstanceAlreadyExists.prototype);
670
+ return _this;
671
+ }
672
+ return TrafficPolicyInstanceAlreadyExists;
673
+ }(__BaseException));
674
+ export { TrafficPolicyInstanceAlreadyExists };
193
675
  export var CreateTrafficPolicyVersionRequest;
194
676
  (function (CreateTrafficPolicyVersionRequest) {
195
677
  CreateTrafficPolicyVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -198,6 +680,18 @@ export var CreateTrafficPolicyVersionResponse;
198
680
  (function (CreateTrafficPolicyVersionResponse) {
199
681
  CreateTrafficPolicyVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
682
  })(CreateTrafficPolicyVersionResponse || (CreateTrafficPolicyVersionResponse = {}));
683
+ var TooManyTrafficPolicyVersionsForCurrentPolicy = (function (_super) {
684
+ __extends(TooManyTrafficPolicyVersionsForCurrentPolicy, _super);
685
+ function TooManyTrafficPolicyVersionsForCurrentPolicy(opts) {
686
+ var _this = _super.call(this, __assign({ name: "TooManyTrafficPolicyVersionsForCurrentPolicy", $fault: "client" }, opts)) || this;
687
+ _this.name = "TooManyTrafficPolicyVersionsForCurrentPolicy";
688
+ _this.$fault = "client";
689
+ Object.setPrototypeOf(_this, TooManyTrafficPolicyVersionsForCurrentPolicy.prototype);
690
+ return _this;
691
+ }
692
+ return TooManyTrafficPolicyVersionsForCurrentPolicy;
693
+ }(__BaseException));
694
+ export { TooManyTrafficPolicyVersionsForCurrentPolicy };
201
695
  export var CreateVPCAssociationAuthorizationRequest;
202
696
  (function (CreateVPCAssociationAuthorizationRequest) {
203
697
  CreateVPCAssociationAuthorizationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -206,6 +700,18 @@ export var CreateVPCAssociationAuthorizationResponse;
206
700
  (function (CreateVPCAssociationAuthorizationResponse) {
207
701
  CreateVPCAssociationAuthorizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
702
  })(CreateVPCAssociationAuthorizationResponse || (CreateVPCAssociationAuthorizationResponse = {}));
703
+ var TooManyVPCAssociationAuthorizations = (function (_super) {
704
+ __extends(TooManyVPCAssociationAuthorizations, _super);
705
+ function TooManyVPCAssociationAuthorizations(opts) {
706
+ var _this = _super.call(this, __assign({ name: "TooManyVPCAssociationAuthorizations", $fault: "client" }, opts)) || this;
707
+ _this.name = "TooManyVPCAssociationAuthorizations";
708
+ _this.$fault = "client";
709
+ Object.setPrototypeOf(_this, TooManyVPCAssociationAuthorizations.prototype);
710
+ return _this;
711
+ }
712
+ return TooManyVPCAssociationAuthorizations;
713
+ }(__BaseException));
714
+ export { TooManyVPCAssociationAuthorizations };
209
715
  export var DeactivateKeySigningKeyRequest;
210
716
  (function (DeactivateKeySigningKeyRequest) {
211
717
  DeactivateKeySigningKeyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -214,6 +720,30 @@ export var DeactivateKeySigningKeyResponse;
214
720
  (function (DeactivateKeySigningKeyResponse) {
215
721
  DeactivateKeySigningKeyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
722
  })(DeactivateKeySigningKeyResponse || (DeactivateKeySigningKeyResponse = {}));
723
+ var KeySigningKeyInParentDSRecord = (function (_super) {
724
+ __extends(KeySigningKeyInParentDSRecord, _super);
725
+ function KeySigningKeyInParentDSRecord(opts) {
726
+ var _this = _super.call(this, __assign({ name: "KeySigningKeyInParentDSRecord", $fault: "client" }, opts)) || this;
727
+ _this.name = "KeySigningKeyInParentDSRecord";
728
+ _this.$fault = "client";
729
+ Object.setPrototypeOf(_this, KeySigningKeyInParentDSRecord.prototype);
730
+ return _this;
731
+ }
732
+ return KeySigningKeyInParentDSRecord;
733
+ }(__BaseException));
734
+ export { KeySigningKeyInParentDSRecord };
735
+ var KeySigningKeyInUse = (function (_super) {
736
+ __extends(KeySigningKeyInUse, _super);
737
+ function KeySigningKeyInUse(opts) {
738
+ var _this = _super.call(this, __assign({ name: "KeySigningKeyInUse", $fault: "client" }, opts)) || this;
739
+ _this.name = "KeySigningKeyInUse";
740
+ _this.$fault = "client";
741
+ Object.setPrototypeOf(_this, KeySigningKeyInUse.prototype);
742
+ return _this;
743
+ }
744
+ return KeySigningKeyInUse;
745
+ }(__BaseException));
746
+ export { KeySigningKeyInUse };
217
747
  export var DeleteHealthCheckRequest;
218
748
  (function (DeleteHealthCheckRequest) {
219
749
  DeleteHealthCheckRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -222,6 +752,18 @@ export var DeleteHealthCheckResponse;
222
752
  (function (DeleteHealthCheckResponse) {
223
753
  DeleteHealthCheckResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
754
  })(DeleteHealthCheckResponse || (DeleteHealthCheckResponse = {}));
755
+ var HealthCheckInUse = (function (_super) {
756
+ __extends(HealthCheckInUse, _super);
757
+ function HealthCheckInUse(opts) {
758
+ var _this = _super.call(this, __assign({ name: "HealthCheckInUse", $fault: "client" }, opts)) || this;
759
+ _this.name = "HealthCheckInUse";
760
+ _this.$fault = "client";
761
+ Object.setPrototypeOf(_this, HealthCheckInUse.prototype);
762
+ return _this;
763
+ }
764
+ return HealthCheckInUse;
765
+ }(__BaseException));
766
+ export { HealthCheckInUse };
225
767
  export var DeleteHostedZoneRequest;
226
768
  (function (DeleteHostedZoneRequest) {
227
769
  DeleteHostedZoneRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -230,6 +772,18 @@ export var DeleteHostedZoneResponse;
230
772
  (function (DeleteHostedZoneResponse) {
231
773
  DeleteHostedZoneResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
774
  })(DeleteHostedZoneResponse || (DeleteHostedZoneResponse = {}));
775
+ var HostedZoneNotEmpty = (function (_super) {
776
+ __extends(HostedZoneNotEmpty, _super);
777
+ function HostedZoneNotEmpty(opts) {
778
+ var _this = _super.call(this, __assign({ name: "HostedZoneNotEmpty", $fault: "client" }, opts)) || this;
779
+ _this.name = "HostedZoneNotEmpty";
780
+ _this.$fault = "client";
781
+ Object.setPrototypeOf(_this, HostedZoneNotEmpty.prototype);
782
+ return _this;
783
+ }
784
+ return HostedZoneNotEmpty;
785
+ }(__BaseException));
786
+ export { HostedZoneNotEmpty };
233
787
  export var DeleteKeySigningKeyRequest;
234
788
  (function (DeleteKeySigningKeyRequest) {
235
789
  DeleteKeySigningKeyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -246,6 +800,30 @@ export var DeleteQueryLoggingConfigResponse;
246
800
  (function (DeleteQueryLoggingConfigResponse) {
247
801
  DeleteQueryLoggingConfigResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
802
  })(DeleteQueryLoggingConfigResponse || (DeleteQueryLoggingConfigResponse = {}));
803
+ var NoSuchQueryLoggingConfig = (function (_super) {
804
+ __extends(NoSuchQueryLoggingConfig, _super);
805
+ function NoSuchQueryLoggingConfig(opts) {
806
+ var _this = _super.call(this, __assign({ name: "NoSuchQueryLoggingConfig", $fault: "client" }, opts)) || this;
807
+ _this.name = "NoSuchQueryLoggingConfig";
808
+ _this.$fault = "client";
809
+ Object.setPrototypeOf(_this, NoSuchQueryLoggingConfig.prototype);
810
+ return _this;
811
+ }
812
+ return NoSuchQueryLoggingConfig;
813
+ }(__BaseException));
814
+ export { NoSuchQueryLoggingConfig };
815
+ var DelegationSetInUse = (function (_super) {
816
+ __extends(DelegationSetInUse, _super);
817
+ function DelegationSetInUse(opts) {
818
+ var _this = _super.call(this, __assign({ name: "DelegationSetInUse", $fault: "client" }, opts)) || this;
819
+ _this.name = "DelegationSetInUse";
820
+ _this.$fault = "client";
821
+ Object.setPrototypeOf(_this, DelegationSetInUse.prototype);
822
+ return _this;
823
+ }
824
+ return DelegationSetInUse;
825
+ }(__BaseException));
826
+ export { DelegationSetInUse };
249
827
  export var DeleteReusableDelegationSetRequest;
250
828
  (function (DeleteReusableDelegationSetRequest) {
251
829
  DeleteReusableDelegationSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -262,6 +840,18 @@ export var DeleteTrafficPolicyResponse;
262
840
  (function (DeleteTrafficPolicyResponse) {
263
841
  DeleteTrafficPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
842
  })(DeleteTrafficPolicyResponse || (DeleteTrafficPolicyResponse = {}));
843
+ var TrafficPolicyInUse = (function (_super) {
844
+ __extends(TrafficPolicyInUse, _super);
845
+ function TrafficPolicyInUse(opts) {
846
+ var _this = _super.call(this, __assign({ name: "TrafficPolicyInUse", $fault: "client" }, opts)) || this;
847
+ _this.name = "TrafficPolicyInUse";
848
+ _this.$fault = "client";
849
+ Object.setPrototypeOf(_this, TrafficPolicyInUse.prototype);
850
+ return _this;
851
+ }
852
+ return TrafficPolicyInUse;
853
+ }(__BaseException));
854
+ export { TrafficPolicyInUse };
265
855
  export var DeleteTrafficPolicyInstanceRequest;
266
856
  (function (DeleteTrafficPolicyInstanceRequest) {
267
857
  DeleteTrafficPolicyInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -270,6 +860,18 @@ export var DeleteTrafficPolicyInstanceResponse;
270
860
  (function (DeleteTrafficPolicyInstanceResponse) {
271
861
  DeleteTrafficPolicyInstanceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
862
  })(DeleteTrafficPolicyInstanceResponse || (DeleteTrafficPolicyInstanceResponse = {}));
863
+ var NoSuchTrafficPolicyInstance = (function (_super) {
864
+ __extends(NoSuchTrafficPolicyInstance, _super);
865
+ function NoSuchTrafficPolicyInstance(opts) {
866
+ var _this = _super.call(this, __assign({ name: "NoSuchTrafficPolicyInstance", $fault: "client" }, opts)) || this;
867
+ _this.name = "NoSuchTrafficPolicyInstance";
868
+ _this.$fault = "client";
869
+ Object.setPrototypeOf(_this, NoSuchTrafficPolicyInstance.prototype);
870
+ return _this;
871
+ }
872
+ return NoSuchTrafficPolicyInstance;
873
+ }(__BaseException));
874
+ export { NoSuchTrafficPolicyInstance };
273
875
  export var DeleteVPCAssociationAuthorizationRequest;
274
876
  (function (DeleteVPCAssociationAuthorizationRequest) {
275
877
  DeleteVPCAssociationAuthorizationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -278,6 +880,18 @@ export var DeleteVPCAssociationAuthorizationResponse;
278
880
  (function (DeleteVPCAssociationAuthorizationResponse) {
279
881
  DeleteVPCAssociationAuthorizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
882
  })(DeleteVPCAssociationAuthorizationResponse || (DeleteVPCAssociationAuthorizationResponse = {}));
883
+ var VPCAssociationAuthorizationNotFound = (function (_super) {
884
+ __extends(VPCAssociationAuthorizationNotFound, _super);
885
+ function VPCAssociationAuthorizationNotFound(opts) {
886
+ var _this = _super.call(this, __assign({ name: "VPCAssociationAuthorizationNotFound", $fault: "client" }, opts)) || this;
887
+ _this.name = "VPCAssociationAuthorizationNotFound";
888
+ _this.$fault = "client";
889
+ Object.setPrototypeOf(_this, VPCAssociationAuthorizationNotFound.prototype);
890
+ return _this;
891
+ }
892
+ return VPCAssociationAuthorizationNotFound;
893
+ }(__BaseException));
894
+ export { VPCAssociationAuthorizationNotFound };
281
895
  export var DisableHostedZoneDNSSECRequest;
282
896
  (function (DisableHostedZoneDNSSECRequest) {
283
897
  DisableHostedZoneDNSSECRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -286,6 +900,18 @@ export var DisableHostedZoneDNSSECResponse;
286
900
  (function (DisableHostedZoneDNSSECResponse) {
287
901
  DisableHostedZoneDNSSECResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
902
  })(DisableHostedZoneDNSSECResponse || (DisableHostedZoneDNSSECResponse = {}));
903
+ var DNSSECNotFound = (function (_super) {
904
+ __extends(DNSSECNotFound, _super);
905
+ function DNSSECNotFound(opts) {
906
+ var _this = _super.call(this, __assign({ name: "DNSSECNotFound", $fault: "client" }, opts)) || this;
907
+ _this.name = "DNSSECNotFound";
908
+ _this.$fault = "client";
909
+ Object.setPrototypeOf(_this, DNSSECNotFound.prototype);
910
+ return _this;
911
+ }
912
+ return DNSSECNotFound;
913
+ }(__BaseException));
914
+ export { DNSSECNotFound };
289
915
  export var DisassociateVPCFromHostedZoneRequest;
290
916
  (function (DisassociateVPCFromHostedZoneRequest) {
291
917
  DisassociateVPCFromHostedZoneRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -294,6 +920,30 @@ export var DisassociateVPCFromHostedZoneResponse;
294
920
  (function (DisassociateVPCFromHostedZoneResponse) {
295
921
  DisassociateVPCFromHostedZoneResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
922
  })(DisassociateVPCFromHostedZoneResponse || (DisassociateVPCFromHostedZoneResponse = {}));
923
+ var LastVPCAssociation = (function (_super) {
924
+ __extends(LastVPCAssociation, _super);
925
+ function LastVPCAssociation(opts) {
926
+ var _this = _super.call(this, __assign({ name: "LastVPCAssociation", $fault: "client" }, opts)) || this;
927
+ _this.name = "LastVPCAssociation";
928
+ _this.$fault = "client";
929
+ Object.setPrototypeOf(_this, LastVPCAssociation.prototype);
930
+ return _this;
931
+ }
932
+ return LastVPCAssociation;
933
+ }(__BaseException));
934
+ export { LastVPCAssociation };
935
+ var VPCAssociationNotFound = (function (_super) {
936
+ __extends(VPCAssociationNotFound, _super);
937
+ function VPCAssociationNotFound(opts) {
938
+ var _this = _super.call(this, __assign({ name: "VPCAssociationNotFound", $fault: "client" }, opts)) || this;
939
+ _this.name = "VPCAssociationNotFound";
940
+ _this.$fault = "client";
941
+ Object.setPrototypeOf(_this, VPCAssociationNotFound.prototype);
942
+ return _this;
943
+ }
944
+ return VPCAssociationNotFound;
945
+ }(__BaseException));
946
+ export { VPCAssociationNotFound };
297
947
  export var EnableHostedZoneDNSSECRequest;
298
948
  (function (EnableHostedZoneDNSSECRequest) {
299
949
  EnableHostedZoneDNSSECRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -302,6 +952,30 @@ export var EnableHostedZoneDNSSECResponse;
302
952
  (function (EnableHostedZoneDNSSECResponse) {
303
953
  EnableHostedZoneDNSSECResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
954
  })(EnableHostedZoneDNSSECResponse || (EnableHostedZoneDNSSECResponse = {}));
955
+ var HostedZonePartiallyDelegated = (function (_super) {
956
+ __extends(HostedZonePartiallyDelegated, _super);
957
+ function HostedZonePartiallyDelegated(opts) {
958
+ var _this = _super.call(this, __assign({ name: "HostedZonePartiallyDelegated", $fault: "client" }, opts)) || this;
959
+ _this.name = "HostedZonePartiallyDelegated";
960
+ _this.$fault = "client";
961
+ Object.setPrototypeOf(_this, HostedZonePartiallyDelegated.prototype);
962
+ return _this;
963
+ }
964
+ return HostedZonePartiallyDelegated;
965
+ }(__BaseException));
966
+ export { HostedZonePartiallyDelegated };
967
+ var KeySigningKeyWithActiveStatusNotFound = (function (_super) {
968
+ __extends(KeySigningKeyWithActiveStatusNotFound, _super);
969
+ function KeySigningKeyWithActiveStatusNotFound(opts) {
970
+ var _this = _super.call(this, __assign({ name: "KeySigningKeyWithActiveStatusNotFound", $fault: "client" }, opts)) || this;
971
+ _this.name = "KeySigningKeyWithActiveStatusNotFound";
972
+ _this.$fault = "client";
973
+ Object.setPrototypeOf(_this, KeySigningKeyWithActiveStatusNotFound.prototype);
974
+ return _this;
975
+ }
976
+ return KeySigningKeyWithActiveStatusNotFound;
977
+ }(__BaseException));
978
+ export { KeySigningKeyWithActiveStatusNotFound };
305
979
  export var GetAccountLimitRequest;
306
980
  (function (GetAccountLimitRequest) {
307
981
  GetAccountLimitRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -318,6 +992,18 @@ export var GetChangeResponse;
318
992
  (function (GetChangeResponse) {
319
993
  GetChangeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
994
  })(GetChangeResponse || (GetChangeResponse = {}));
995
+ var NoSuchChange = (function (_super) {
996
+ __extends(NoSuchChange, _super);
997
+ function NoSuchChange(opts) {
998
+ var _this = _super.call(this, __assign({ name: "NoSuchChange", $fault: "client" }, opts)) || this;
999
+ _this.name = "NoSuchChange";
1000
+ _this.$fault = "client";
1001
+ Object.setPrototypeOf(_this, NoSuchChange.prototype);
1002
+ return _this;
1003
+ }
1004
+ return NoSuchChange;
1005
+ }(__BaseException));
1006
+ export { NoSuchChange };
321
1007
  export var GetCheckerIpRangesRequest;
322
1008
  (function (GetCheckerIpRangesRequest) {
323
1009
  GetCheckerIpRangesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -350,6 +1036,18 @@ export var GetGeoLocationResponse;
350
1036
  (function (GetGeoLocationResponse) {
351
1037
  GetGeoLocationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
1038
  })(GetGeoLocationResponse || (GetGeoLocationResponse = {}));
1039
+ var NoSuchGeoLocation = (function (_super) {
1040
+ __extends(NoSuchGeoLocation, _super);
1041
+ function NoSuchGeoLocation(opts) {
1042
+ var _this = _super.call(this, __assign({ name: "NoSuchGeoLocation", $fault: "client" }, opts)) || this;
1043
+ _this.name = "NoSuchGeoLocation";
1044
+ _this.$fault = "client";
1045
+ Object.setPrototypeOf(_this, NoSuchGeoLocation.prototype);
1046
+ return _this;
1047
+ }
1048
+ return NoSuchGeoLocation;
1049
+ }(__BaseException));
1050
+ export { NoSuchGeoLocation };
353
1051
  export var GetHealthCheckRequest;
354
1052
  (function (GetHealthCheckRequest) {
355
1053
  GetHealthCheckRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -358,6 +1056,18 @@ export var GetHealthCheckResponse;
358
1056
  (function (GetHealthCheckResponse) {
359
1057
  GetHealthCheckResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
1058
  })(GetHealthCheckResponse || (GetHealthCheckResponse = {}));
1059
+ var IncompatibleVersion = (function (_super) {
1060
+ __extends(IncompatibleVersion, _super);
1061
+ function IncompatibleVersion(opts) {
1062
+ var _this = _super.call(this, __assign({ name: "IncompatibleVersion", $fault: "client" }, opts)) || this;
1063
+ _this.name = "IncompatibleVersion";
1064
+ _this.$fault = "client";
1065
+ Object.setPrototypeOf(_this, IncompatibleVersion.prototype);
1066
+ return _this;
1067
+ }
1068
+ return IncompatibleVersion;
1069
+ }(__BaseException));
1070
+ export { IncompatibleVersion };
361
1071
  export var GetHealthCheckCountRequest;
362
1072
  (function (GetHealthCheckCountRequest) {
363
1073
  GetHealthCheckCountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -418,6 +1128,18 @@ export var GetHostedZoneLimitResponse;
418
1128
  (function (GetHostedZoneLimitResponse) {
419
1129
  GetHostedZoneLimitResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
1130
  })(GetHostedZoneLimitResponse || (GetHostedZoneLimitResponse = {}));
1131
+ var HostedZoneNotPrivate = (function (_super) {
1132
+ __extends(HostedZoneNotPrivate, _super);
1133
+ function HostedZoneNotPrivate(opts) {
1134
+ var _this = _super.call(this, __assign({ name: "HostedZoneNotPrivate", $fault: "client" }, opts)) || this;
1135
+ _this.name = "HostedZoneNotPrivate";
1136
+ _this.$fault = "client";
1137
+ Object.setPrototypeOf(_this, HostedZoneNotPrivate.prototype);
1138
+ return _this;
1139
+ }
1140
+ return HostedZoneNotPrivate;
1141
+ }(__BaseException));
1142
+ export { HostedZoneNotPrivate };
421
1143
  export var GetQueryLoggingConfigRequest;
422
1144
  (function (GetQueryLoggingConfigRequest) {
423
1145
  GetQueryLoggingConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -502,6 +1224,18 @@ export var ListHostedZonesByNameResponse;
502
1224
  (function (ListHostedZonesByNameResponse) {
503
1225
  ListHostedZonesByNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
504
1226
  })(ListHostedZonesByNameResponse || (ListHostedZonesByNameResponse = {}));
1227
+ var InvalidPaginationToken = (function (_super) {
1228
+ __extends(InvalidPaginationToken, _super);
1229
+ function InvalidPaginationToken(opts) {
1230
+ var _this = _super.call(this, __assign({ name: "InvalidPaginationToken", $fault: "client" }, opts)) || this;
1231
+ _this.name = "InvalidPaginationToken";
1232
+ _this.$fault = "client";
1233
+ Object.setPrototypeOf(_this, InvalidPaginationToken.prototype);
1234
+ return _this;
1235
+ }
1236
+ return InvalidPaginationToken;
1237
+ }(__BaseException));
1238
+ export { InvalidPaginationToken };
505
1239
  export var ListHostedZonesByVPCRequest;
506
1240
  (function (ListHostedZonesByVPCRequest) {
507
1241
  ListHostedZonesByVPCRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -622,6 +1356,18 @@ export var TestDNSAnswerResponse;
622
1356
  (function (TestDNSAnswerResponse) {
623
1357
  TestDNSAnswerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
624
1358
  })(TestDNSAnswerResponse || (TestDNSAnswerResponse = {}));
1359
+ var HealthCheckVersionMismatch = (function (_super) {
1360
+ __extends(HealthCheckVersionMismatch, _super);
1361
+ function HealthCheckVersionMismatch(opts) {
1362
+ var _this = _super.call(this, __assign({ name: "HealthCheckVersionMismatch", $fault: "client" }, opts)) || this;
1363
+ _this.name = "HealthCheckVersionMismatch";
1364
+ _this.$fault = "client";
1365
+ Object.setPrototypeOf(_this, HealthCheckVersionMismatch.prototype);
1366
+ return _this;
1367
+ }
1368
+ return HealthCheckVersionMismatch;
1369
+ }(__BaseException));
1370
+ export { HealthCheckVersionMismatch };
625
1371
  export var UpdateHealthCheckRequest;
626
1372
  (function (UpdateHealthCheckRequest) {
627
1373
  UpdateHealthCheckRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -646,6 +1392,18 @@ export var UpdateTrafficPolicyCommentResponse;
646
1392
  (function (UpdateTrafficPolicyCommentResponse) {
647
1393
  UpdateTrafficPolicyCommentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
648
1394
  })(UpdateTrafficPolicyCommentResponse || (UpdateTrafficPolicyCommentResponse = {}));
1395
+ var ConflictingTypes = (function (_super) {
1396
+ __extends(ConflictingTypes, _super);
1397
+ function ConflictingTypes(opts) {
1398
+ var _this = _super.call(this, __assign({ name: "ConflictingTypes", $fault: "client" }, opts)) || this;
1399
+ _this.name = "ConflictingTypes";
1400
+ _this.$fault = "client";
1401
+ Object.setPrototypeOf(_this, ConflictingTypes.prototype);
1402
+ return _this;
1403
+ }
1404
+ return ConflictingTypes;
1405
+ }(__BaseException));
1406
+ export { ConflictingTypes };
649
1407
  export var UpdateTrafficPolicyInstanceRequest;
650
1408
  (function (UpdateTrafficPolicyInstanceRequest) {
651
1409
  UpdateTrafficPolicyInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };