@aws-sdk/client-route-53 3.934.0 → 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,20 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { Route53ServiceException as __BaseException } from "./Route53ServiceException";
3
- /**
4
- * @public
5
- * @enum
6
- */
7
- export declare const AccountLimitType: {
8
- readonly MAX_HEALTH_CHECKS_BY_OWNER: "MAX_HEALTH_CHECKS_BY_OWNER";
9
- readonly MAX_HOSTED_ZONES_BY_OWNER: "MAX_HOSTED_ZONES_BY_OWNER";
10
- readonly MAX_REUSABLE_DELEGATION_SETS_BY_OWNER: "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER";
11
- readonly MAX_TRAFFIC_POLICIES_BY_OWNER: "MAX_TRAFFIC_POLICIES_BY_OWNER";
12
- readonly MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER: "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER";
13
- };
14
- /**
15
- * @public
16
- */
17
- export type AccountLimitType = (typeof AccountLimitType)[keyof typeof AccountLimitType];
1
+ import { AccountLimitType, ChangeAction, ChangeStatus, CidrCollectionChangeAction, CloudWatchRegion, ComparisonOperator, HealthCheckRegion, HealthCheckType, HostedZoneLimitType, HostedZoneType, InsufficientDataHealthStatus, ResettableElementName, ResourceRecordSetFailover, ResourceRecordSetRegion, ReusableDelegationSetLimitType, RRType, Statistic, TagResourceType, VPCRegion } from "./enums";
18
2
  /**
19
3
  * <p>A complex type that contains the type of limit that you specified in the request and
20
4
  * the current value for that limit.</p>
@@ -79,18 +63,6 @@ export interface ActivateKeySigningKeyRequest {
79
63
  */
80
64
  Name: string | undefined;
81
65
  }
82
- /**
83
- * @public
84
- * @enum
85
- */
86
- export declare const ChangeStatus: {
87
- readonly INSYNC: "INSYNC";
88
- readonly PENDING: "PENDING";
89
- };
90
- /**
91
- * @public
92
- */
93
- export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
94
66
  /**
95
67
  * <p>A complex type that describes change information about changes made to your hosted
96
68
  * zone.</p>
@@ -133,137 +105,6 @@ export interface ActivateKeySigningKeyResponse {
133
105
  */
134
106
  ChangeInfo: ChangeInfo | undefined;
135
107
  }
136
- /**
137
- * <p>Another user submitted a request to create, update, or delete the object at the same
138
- * time that you did. Retry the request. </p>
139
- * @public
140
- */
141
- export declare class ConcurrentModification extends __BaseException {
142
- readonly name: "ConcurrentModification";
143
- readonly $fault: "client";
144
- /**
145
- * @internal
146
- */
147
- constructor(opts: __ExceptionOptionType<ConcurrentModification, __BaseException>);
148
- }
149
- /**
150
- * <p>The input is not valid.</p>
151
- * @public
152
- */
153
- export declare class InvalidInput extends __BaseException {
154
- readonly name: "InvalidInput";
155
- readonly $fault: "client";
156
- /**
157
- * @internal
158
- */
159
- constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
160
- }
161
- /**
162
- * <p>The key-signing key (KSK) status isn't valid or another KSK has the status
163
- * <code>INTERNAL_FAILURE</code>.</p>
164
- * @public
165
- */
166
- export declare class InvalidKeySigningKeyStatus extends __BaseException {
167
- readonly name: "InvalidKeySigningKeyStatus";
168
- readonly $fault: "client";
169
- /**
170
- * @internal
171
- */
172
- constructor(opts: __ExceptionOptionType<InvalidKeySigningKeyStatus, __BaseException>);
173
- }
174
- /**
175
- * <p>The KeyManagementServiceArn that you specified isn't valid to use with DNSSEC
176
- * signing.</p>
177
- * @public
178
- */
179
- export declare class InvalidKMSArn extends __BaseException {
180
- readonly name: "InvalidKMSArn";
181
- readonly $fault: "client";
182
- /**
183
- * @internal
184
- */
185
- constructor(opts: __ExceptionOptionType<InvalidKMSArn, __BaseException>);
186
- }
187
- /**
188
- * <p>Your hosted zone status isn't valid for this operation. In the hosted zone, change the
189
- * status to enable <code>DNSSEC</code> or disable <code>DNSSEC</code>.</p>
190
- * @public
191
- */
192
- export declare class InvalidSigningStatus extends __BaseException {
193
- readonly name: "InvalidSigningStatus";
194
- readonly $fault: "client";
195
- /**
196
- * @internal
197
- */
198
- constructor(opts: __ExceptionOptionType<InvalidSigningStatus, __BaseException>);
199
- }
200
- /**
201
- * <p>The specified key-signing key (KSK) doesn't exist.</p>
202
- * @public
203
- */
204
- export declare class NoSuchKeySigningKey extends __BaseException {
205
- readonly name: "NoSuchKeySigningKey";
206
- readonly $fault: "client";
207
- /**
208
- * @internal
209
- */
210
- constructor(opts: __ExceptionOptionType<NoSuchKeySigningKey, __BaseException>);
211
- }
212
- /**
213
- * @public
214
- * @enum
215
- */
216
- export declare const CloudWatchRegion: {
217
- readonly af_south_1: "af-south-1";
218
- readonly ap_east_1: "ap-east-1";
219
- readonly ap_east_2: "ap-east-2";
220
- readonly ap_northeast_1: "ap-northeast-1";
221
- readonly ap_northeast_2: "ap-northeast-2";
222
- readonly ap_northeast_3: "ap-northeast-3";
223
- readonly ap_south_1: "ap-south-1";
224
- readonly ap_south_2: "ap-south-2";
225
- readonly ap_southeast_1: "ap-southeast-1";
226
- readonly ap_southeast_2: "ap-southeast-2";
227
- readonly ap_southeast_3: "ap-southeast-3";
228
- readonly ap_southeast_4: "ap-southeast-4";
229
- readonly ap_southeast_5: "ap-southeast-5";
230
- readonly ap_southeast_6: "ap-southeast-6";
231
- readonly ap_southeast_7: "ap-southeast-7";
232
- readonly ca_central_1: "ca-central-1";
233
- readonly ca_west_1: "ca-west-1";
234
- readonly cn_north_1: "cn-north-1";
235
- readonly cn_northwest_1: "cn-northwest-1";
236
- readonly eu_central_1: "eu-central-1";
237
- readonly eu_central_2: "eu-central-2";
238
- readonly eu_isoe_west_1: "eu-isoe-west-1";
239
- readonly eu_north_1: "eu-north-1";
240
- readonly eu_south_1: "eu-south-1";
241
- readonly eu_south_2: "eu-south-2";
242
- readonly eu_west_1: "eu-west-1";
243
- readonly eu_west_2: "eu-west-2";
244
- readonly eu_west_3: "eu-west-3";
245
- readonly il_central_1: "il-central-1";
246
- readonly me_central_1: "me-central-1";
247
- readonly me_south_1: "me-south-1";
248
- readonly mx_central_1: "mx-central-1";
249
- readonly sa_east_1: "sa-east-1";
250
- readonly us_east_1: "us-east-1";
251
- readonly us_east_2: "us-east-2";
252
- readonly us_gov_east_1: "us-gov-east-1";
253
- readonly us_gov_west_1: "us-gov-west-1";
254
- readonly us_iso_east_1: "us-iso-east-1";
255
- readonly us_iso_west_1: "us-iso-west-1";
256
- readonly us_isob_east_1: "us-isob-east-1";
257
- readonly us_isob_west_1: "us-isob-west-1";
258
- readonly us_isof_east_1: "us-isof-east-1";
259
- readonly us_isof_south_1: "us-isof-south-1";
260
- readonly us_west_1: "us-west-1";
261
- readonly us_west_2: "us-west-2";
262
- };
263
- /**
264
- * @public
265
- */
266
- export type CloudWatchRegion = (typeof CloudWatchRegion)[keyof typeof CloudWatchRegion];
267
108
  /**
268
109
  * <p>A complex type that identifies the CloudWatch alarm that you want Amazon Route 53
269
110
  * health checkers to use to determine whether the specified health check is
@@ -759,61 +600,6 @@ export interface AliasTarget {
759
600
  */
760
601
  EvaluateTargetHealth: boolean | undefined;
761
602
  }
762
- /**
763
- * @public
764
- * @enum
765
- */
766
- export declare const VPCRegion: {
767
- readonly af_south_1: "af-south-1";
768
- readonly ap_east_1: "ap-east-1";
769
- readonly ap_east_2: "ap-east-2";
770
- readonly ap_northeast_1: "ap-northeast-1";
771
- readonly ap_northeast_2: "ap-northeast-2";
772
- readonly ap_northeast_3: "ap-northeast-3";
773
- readonly ap_south_1: "ap-south-1";
774
- readonly ap_south_2: "ap-south-2";
775
- readonly ap_southeast_1: "ap-southeast-1";
776
- readonly ap_southeast_2: "ap-southeast-2";
777
- readonly ap_southeast_3: "ap-southeast-3";
778
- readonly ap_southeast_4: "ap-southeast-4";
779
- readonly ap_southeast_5: "ap-southeast-5";
780
- readonly ap_southeast_6: "ap-southeast-6";
781
- readonly ap_southeast_7: "ap-southeast-7";
782
- readonly ca_central_1: "ca-central-1";
783
- readonly ca_west_1: "ca-west-1";
784
- readonly cn_north_1: "cn-north-1";
785
- readonly cn_northwest_1: "cn-northwest-1";
786
- readonly eu_central_1: "eu-central-1";
787
- readonly eu_central_2: "eu-central-2";
788
- readonly eu_isoe_west_1: "eu-isoe-west-1";
789
- readonly eu_north_1: "eu-north-1";
790
- readonly eu_south_1: "eu-south-1";
791
- readonly eu_south_2: "eu-south-2";
792
- readonly eu_west_1: "eu-west-1";
793
- readonly eu_west_2: "eu-west-2";
794
- readonly eu_west_3: "eu-west-3";
795
- readonly il_central_1: "il-central-1";
796
- readonly me_central_1: "me-central-1";
797
- readonly me_south_1: "me-south-1";
798
- readonly mx_central_1: "mx-central-1";
799
- readonly sa_east_1: "sa-east-1";
800
- readonly us_east_1: "us-east-1";
801
- readonly us_east_2: "us-east-2";
802
- readonly us_gov_east_1: "us-gov-east-1";
803
- readonly us_gov_west_1: "us-gov-west-1";
804
- readonly us_iso_east_1: "us-iso-east-1";
805
- readonly us_iso_west_1: "us-iso-west-1";
806
- readonly us_isob_east_1: "us-isob-east-1";
807
- readonly us_isob_west_1: "us-isob-west-1";
808
- readonly us_isof_east_1: "us-isof-east-1";
809
- readonly us_isof_south_1: "us-isof-south-1";
810
- readonly us_west_1: "us-west-1";
811
- readonly us_west_2: "us-west-2";
812
- };
813
- /**
814
- * @public
815
- */
816
- export type VPCRegion = (typeof VPCRegion)[keyof typeof VPCRegion];
817
603
  /**
818
604
  * <p>(Private hosted zones only) A complex type that contains information about an Amazon VPC.</p>
819
605
  * <p>If you associate a private hosted zone with an Amazon VPC when you make a
@@ -873,135 +659,6 @@ export interface AssociateVPCWithHostedZoneResponse {
873
659
  */
874
660
  ChangeInfo: ChangeInfo | undefined;
875
661
  }
876
- /**
877
- * <p>The cause of this error depends on the operation that you're performing:</p>
878
- * <ul>
879
- * <li>
880
- * <p>
881
- * <b>Create a public hosted zone:</b> Two hosted zones
882
- * that have the same name or that have a parent/child relationship (example.com
883
- * and test.example.com) can't have any common name servers. You tried to create a
884
- * hosted zone that has the same name as an existing hosted zone or that's the
885
- * parent or child of an existing hosted zone, and you specified a delegation set
886
- * that shares one or more name servers with the existing hosted zone. For more
887
- * information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html">CreateReusableDelegationSet</a>.</p>
888
- * </li>
889
- * <li>
890
- * <p>
891
- * <b>Create a private hosted zone:</b> A hosted zone
892
- * with the specified name already exists and is already associated with the Amazon
893
- * VPC that you specified.</p>
894
- * </li>
895
- * <li>
896
- * <p>
897
- * <b>Associate VPCs with a private hosted zone:</b>
898
- * The VPC that you specified is already associated with another hosted zone that
899
- * has the same name.</p>
900
- * </li>
901
- * </ul>
902
- * @public
903
- */
904
- export declare class ConflictingDomainExists extends __BaseException {
905
- readonly name: "ConflictingDomainExists";
906
- readonly $fault: "client";
907
- /**
908
- * @internal
909
- */
910
- constructor(opts: __ExceptionOptionType<ConflictingDomainExists, __BaseException>);
911
- }
912
- /**
913
- * <p>The VPC ID that you specified either isn't a valid ID or the current account is not
914
- * authorized to access this VPC.</p>
915
- * @public
916
- */
917
- export declare class InvalidVPCId extends __BaseException {
918
- readonly name: "InvalidVPCId";
919
- readonly $fault: "client";
920
- /**
921
- * @internal
922
- */
923
- constructor(opts: __ExceptionOptionType<InvalidVPCId, __BaseException>);
924
- }
925
- /**
926
- * <p>This operation can't be completed because the current account has reached the
927
- * 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
928
- * Center.</p>
929
- * @public
930
- */
931
- export declare class LimitsExceeded extends __BaseException {
932
- readonly name: "LimitsExceeded";
933
- readonly $fault: "client";
934
- /**
935
- * @internal
936
- */
937
- constructor(opts: __ExceptionOptionType<LimitsExceeded, __BaseException>);
938
- }
939
- /**
940
- * <p>No hosted zone exists with the ID that you specified.</p>
941
- * @public
942
- */
943
- export declare class NoSuchHostedZone extends __BaseException {
944
- readonly name: "NoSuchHostedZone";
945
- readonly $fault: "client";
946
- /**
947
- * @internal
948
- */
949
- constructor(opts: __ExceptionOptionType<NoSuchHostedZone, __BaseException>);
950
- }
951
- /**
952
- * <p>Associating the specified VPC with the specified hosted zone has not been
953
- * authorized.</p>
954
- * @public
955
- */
956
- export declare class NotAuthorizedException extends __BaseException {
957
- readonly name: "NotAuthorizedException";
958
- readonly $fault: "client";
959
- /**
960
- * @internal
961
- */
962
- constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
963
- }
964
- /**
965
- * <p>If Amazon Route 53 can't process a request before the next request arrives, it will
966
- * reject subsequent requests for the same hosted zone and return an <code>HTTP 400
967
- * error</code> (<code>Bad request</code>). If Route 53 returns this error repeatedly
968
- * for the same request, we recommend that you wait, in intervals of increasing duration,
969
- * before you try the request again.</p>
970
- * @public
971
- */
972
- export declare class PriorRequestNotComplete extends __BaseException {
973
- readonly name: "PriorRequestNotComplete";
974
- readonly $fault: "client";
975
- /**
976
- * @internal
977
- */
978
- constructor(opts: __ExceptionOptionType<PriorRequestNotComplete, __BaseException>);
979
- }
980
- /**
981
- * <p>You're trying to associate a VPC with a public hosted zone. Amazon Route 53 doesn't
982
- * support associating a VPC with a public hosted zone.</p>
983
- * @public
984
- */
985
- export declare class PublicZoneVPCAssociation extends __BaseException {
986
- readonly name: "PublicZoneVPCAssociation";
987
- readonly $fault: "client";
988
- /**
989
- * @internal
990
- */
991
- constructor(opts: __ExceptionOptionType<PublicZoneVPCAssociation, __BaseException>);
992
- }
993
- /**
994
- * @public
995
- * @enum
996
- */
997
- export declare const CidrCollectionChangeAction: {
998
- readonly DELETE_IF_EXISTS: "DELETE_IF_EXISTS";
999
- readonly PUT: "PUT";
1000
- };
1001
- /**
1002
- * @public
1003
- */
1004
- export type CidrCollectionChangeAction = (typeof CidrCollectionChangeAction)[keyof typeof CidrCollectionChangeAction];
1005
662
  /**
1006
663
  * <p>A complex type that contains information about the CIDR collection change.</p>
1007
664
  * @public
@@ -1073,59 +730,6 @@ export interface ChangeCidrCollectionResponse {
1073
730
  */
1074
731
  Id: string | undefined;
1075
732
  }
1076
- /**
1077
- * <p>This CIDR block is already in use.</p>
1078
- * @public
1079
- */
1080
- export declare class CidrBlockInUseException extends __BaseException {
1081
- readonly name: "CidrBlockInUseException";
1082
- readonly $fault: "client";
1083
- Message?: string | undefined;
1084
- /**
1085
- * @internal
1086
- */
1087
- constructor(opts: __ExceptionOptionType<CidrBlockInUseException, __BaseException>);
1088
- }
1089
- /**
1090
- * <p>The CIDR collection version you provided, doesn't match the one in the
1091
- * <code>ListCidrCollections</code> operation.</p>
1092
- * @public
1093
- */
1094
- export declare class CidrCollectionVersionMismatchException extends __BaseException {
1095
- readonly name: "CidrCollectionVersionMismatchException";
1096
- readonly $fault: "client";
1097
- Message?: string | undefined;
1098
- /**
1099
- * @internal
1100
- */
1101
- constructor(opts: __ExceptionOptionType<CidrCollectionVersionMismatchException, __BaseException>);
1102
- }
1103
- /**
1104
- * <p>The CIDR collection you specified, doesn't exist.</p>
1105
- * @public
1106
- */
1107
- export declare class NoSuchCidrCollectionException extends __BaseException {
1108
- readonly name: "NoSuchCidrCollectionException";
1109
- readonly $fault: "client";
1110
- Message?: string | undefined;
1111
- /**
1112
- * @internal
1113
- */
1114
- constructor(opts: __ExceptionOptionType<NoSuchCidrCollectionException, __BaseException>);
1115
- }
1116
- /**
1117
- * @public
1118
- * @enum
1119
- */
1120
- export declare const ChangeAction: {
1121
- readonly CREATE: "CREATE";
1122
- readonly DELETE: "DELETE";
1123
- readonly UPSERT: "UPSERT";
1124
- };
1125
- /**
1126
- * @public
1127
- */
1128
- export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
1129
733
  /**
1130
734
  * <p>The object that is specified in resource record set object when you are linking a
1131
735
  * resource record set to a CIDR location.</p>
@@ -1145,18 +749,6 @@ export interface CidrRoutingConfig {
1145
749
  */
1146
750
  LocationName: string | undefined;
1147
751
  }
1148
- /**
1149
- * @public
1150
- * @enum
1151
- */
1152
- export declare const ResourceRecordSetFailover: {
1153
- readonly PRIMARY: "PRIMARY";
1154
- readonly SECONDARY: "SECONDARY";
1155
- };
1156
- /**
1157
- * @public
1158
- */
1159
- export type ResourceRecordSetFailover = (typeof ResourceRecordSetFailover)[keyof typeof ResourceRecordSetFailover];
1160
752
  /**
1161
753
  * <p>A complex type that contains information about a geographic location.</p>
1162
754
  * @public
@@ -1291,54 +883,6 @@ export interface GeoProximityLocation {
1291
883
  */
1292
884
  Bias?: number | undefined;
1293
885
  }
1294
- /**
1295
- * @public
1296
- * @enum
1297
- */
1298
- export declare const ResourceRecordSetRegion: {
1299
- readonly af_south_1: "af-south-1";
1300
- readonly ap_east_1: "ap-east-1";
1301
- readonly ap_east_2: "ap-east-2";
1302
- readonly ap_northeast_1: "ap-northeast-1";
1303
- readonly ap_northeast_2: "ap-northeast-2";
1304
- readonly ap_northeast_3: "ap-northeast-3";
1305
- readonly ap_south_1: "ap-south-1";
1306
- readonly ap_south_2: "ap-south-2";
1307
- readonly ap_southeast_1: "ap-southeast-1";
1308
- readonly ap_southeast_2: "ap-southeast-2";
1309
- readonly ap_southeast_3: "ap-southeast-3";
1310
- readonly ap_southeast_4: "ap-southeast-4";
1311
- readonly ap_southeast_5: "ap-southeast-5";
1312
- readonly ap_southeast_6: "ap-southeast-6";
1313
- readonly ap_southeast_7: "ap-southeast-7";
1314
- readonly ca_central_1: "ca-central-1";
1315
- readonly ca_west_1: "ca-west-1";
1316
- readonly cn_north_1: "cn-north-1";
1317
- readonly cn_northwest_1: "cn-northwest-1";
1318
- readonly eu_central_1: "eu-central-1";
1319
- readonly eu_central_2: "eu-central-2";
1320
- readonly eu_north_1: "eu-north-1";
1321
- readonly eu_south_1: "eu-south-1";
1322
- readonly eu_south_2: "eu-south-2";
1323
- readonly eu_west_1: "eu-west-1";
1324
- readonly eu_west_2: "eu-west-2";
1325
- readonly eu_west_3: "eu-west-3";
1326
- readonly il_central_1: "il-central-1";
1327
- readonly me_central_1: "me-central-1";
1328
- readonly me_south_1: "me-south-1";
1329
- readonly mx_central_1: "mx-central-1";
1330
- readonly sa_east_1: "sa-east-1";
1331
- readonly us_east_1: "us-east-1";
1332
- readonly us_east_2: "us-east-2";
1333
- readonly us_gov_east_1: "us-gov-east-1";
1334
- readonly us_gov_west_1: "us-gov-west-1";
1335
- readonly us_west_1: "us-west-1";
1336
- readonly us_west_2: "us-west-2";
1337
- };
1338
- /**
1339
- * @public
1340
- */
1341
- export type ResourceRecordSetRegion = (typeof ResourceRecordSetRegion)[keyof typeof ResourceRecordSetRegion];
1342
886
  /**
1343
887
  * <p>Information specific to the resource record.</p>
1344
888
  * <note>
@@ -1364,33 +908,6 @@ export interface ResourceRecord {
1364
908
  */
1365
909
  Value: string | undefined;
1366
910
  }
1367
- /**
1368
- * @public
1369
- * @enum
1370
- */
1371
- export declare const RRType: {
1372
- readonly A: "A";
1373
- readonly AAAA: "AAAA";
1374
- readonly CAA: "CAA";
1375
- readonly CNAME: "CNAME";
1376
- readonly DS: "DS";
1377
- readonly HTTPS: "HTTPS";
1378
- readonly MX: "MX";
1379
- readonly NAPTR: "NAPTR";
1380
- readonly NS: "NS";
1381
- readonly PTR: "PTR";
1382
- readonly SOA: "SOA";
1383
- readonly SPF: "SPF";
1384
- readonly SRV: "SRV";
1385
- readonly SSHFP: "SSHFP";
1386
- readonly SVCB: "SVCB";
1387
- readonly TLSA: "TLSA";
1388
- readonly TXT: "TXT";
1389
- };
1390
- /**
1391
- * @public
1392
- */
1393
- export type RRType = (typeof RRType)[keyof typeof RRType];
1394
911
  /**
1395
912
  * <p>Information about the resource record set to create or delete.</p>
1396
913
  * @public
@@ -2090,36 +1607,6 @@ export interface ChangeResourceRecordSetsResponse {
2090
1607
  */
2091
1608
  ChangeInfo: ChangeInfo | undefined;
2092
1609
  }
2093
- /**
2094
- * <p>This exception contains a list of messages that might contain one or more error
2095
- * messages. Each error message indicates one error in the change batch.</p>
2096
- * @public
2097
- */
2098
- export declare class InvalidChangeBatch extends __BaseException {
2099
- readonly name: "InvalidChangeBatch";
2100
- readonly $fault: "client";
2101
- /**
2102
- * <p></p>
2103
- * @public
2104
- */
2105
- messages?: string[] | undefined;
2106
- /**
2107
- * @internal
2108
- */
2109
- constructor(opts: __ExceptionOptionType<InvalidChangeBatch, __BaseException>);
2110
- }
2111
- /**
2112
- * <p>No health check exists with the specified ID.</p>
2113
- * @public
2114
- */
2115
- export declare class NoSuchHealthCheck extends __BaseException {
2116
- readonly name: "NoSuchHealthCheck";
2117
- readonly $fault: "client";
2118
- /**
2119
- * @internal
2120
- */
2121
- constructor(opts: __ExceptionOptionType<NoSuchHealthCheck, __BaseException>);
2122
- }
2123
1610
  /**
2124
1611
  * <p>A complex type that contains information about a tag that you want to add or edit for
2125
1612
  * the specified health check or hosted zone.</p>
@@ -2175,18 +1662,6 @@ export interface Tag {
2175
1662
  */
2176
1663
  Value?: string | undefined;
2177
1664
  }
2178
- /**
2179
- * @public
2180
- * @enum
2181
- */
2182
- export declare const TagResourceType: {
2183
- readonly healthcheck: "healthcheck";
2184
- readonly hostedzone: "hostedzone";
2185
- };
2186
- /**
2187
- * @public
2188
- */
2189
- export type TagResourceType = (typeof TagResourceType)[keyof typeof TagResourceType];
2190
1665
  /**
2191
1666
  * <p>A complex type that contains information about the tags that you want to add, edit, or
2192
1667
  * delete.</p>
@@ -2232,31 +1707,6 @@ export interface ChangeTagsForResourceRequest {
2232
1707
  */
2233
1708
  export interface ChangeTagsForResourceResponse {
2234
1709
  }
2235
- /**
2236
- * <p>The limit on the number of requests per second was exceeded.</p>
2237
- * @public
2238
- */
2239
- export declare class ThrottlingException extends __BaseException {
2240
- readonly name: "ThrottlingException";
2241
- readonly $fault: "client";
2242
- /**
2243
- * @internal
2244
- */
2245
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
2246
- }
2247
- /**
2248
- * <p>A CIDR collection with this name and a different caller reference already exists in this account.</p>
2249
- * @public
2250
- */
2251
- export declare class CidrCollectionAlreadyExistsException extends __BaseException {
2252
- readonly name: "CidrCollectionAlreadyExistsException";
2253
- readonly $fault: "client";
2254
- Message?: string | undefined;
2255
- /**
2256
- * @internal
2257
- */
2258
- constructor(opts: __ExceptionOptionType<CidrCollectionAlreadyExistsException, __BaseException>);
2259
- }
2260
1710
  /**
2261
1711
  * @public
2262
1712
  */
@@ -2321,55 +1771,6 @@ export interface CreateCidrCollectionResponse {
2321
1771
  */
2322
1772
  Location?: string | undefined;
2323
1773
  }
2324
- /**
2325
- * @public
2326
- * @enum
2327
- */
2328
- export declare const InsufficientDataHealthStatus: {
2329
- readonly Healthy: "Healthy";
2330
- readonly LastKnownStatus: "LastKnownStatus";
2331
- readonly Unhealthy: "Unhealthy";
2332
- };
2333
- /**
2334
- * @public
2335
- */
2336
- export type InsufficientDataHealthStatus = (typeof InsufficientDataHealthStatus)[keyof typeof InsufficientDataHealthStatus];
2337
- /**
2338
- * @public
2339
- * @enum
2340
- */
2341
- export declare const HealthCheckRegion: {
2342
- readonly ap_northeast_1: "ap-northeast-1";
2343
- readonly ap_southeast_1: "ap-southeast-1";
2344
- readonly ap_southeast_2: "ap-southeast-2";
2345
- readonly eu_west_1: "eu-west-1";
2346
- readonly sa_east_1: "sa-east-1";
2347
- readonly us_east_1: "us-east-1";
2348
- readonly us_west_1: "us-west-1";
2349
- readonly us_west_2: "us-west-2";
2350
- };
2351
- /**
2352
- * @public
2353
- */
2354
- export type HealthCheckRegion = (typeof HealthCheckRegion)[keyof typeof HealthCheckRegion];
2355
- /**
2356
- * @public
2357
- * @enum
2358
- */
2359
- export declare const HealthCheckType: {
2360
- readonly CALCULATED: "CALCULATED";
2361
- readonly CLOUDWATCH_METRIC: "CLOUDWATCH_METRIC";
2362
- readonly HTTP: "HTTP";
2363
- readonly HTTPS: "HTTPS";
2364
- readonly HTTPS_STR_MATCH: "HTTPS_STR_MATCH";
2365
- readonly HTTP_STR_MATCH: "HTTP_STR_MATCH";
2366
- readonly RECOVERY_CONTROL: "RECOVERY_CONTROL";
2367
- readonly TCP: "TCP";
2368
- };
2369
- /**
2370
- * @public
2371
- */
2372
- export type HealthCheckType = (typeof HealthCheckType)[keyof typeof HealthCheckType];
2373
1774
  /**
2374
1775
  * <p>A complex type that contains information about the health check.</p>
2375
1776
  * @public
@@ -2827,20 +2228,6 @@ export interface CreateHealthCheckRequest {
2827
2228
  */
2828
2229
  HealthCheckConfig: HealthCheckConfig | undefined;
2829
2230
  }
2830
- /**
2831
- * @public
2832
- * @enum
2833
- */
2834
- export declare const ComparisonOperator: {
2835
- readonly GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold";
2836
- readonly GreaterThanThreshold: "GreaterThanThreshold";
2837
- readonly LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold";
2838
- readonly LessThanThreshold: "LessThanThreshold";
2839
- };
2840
- /**
2841
- * @public
2842
- */
2843
- export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
2844
2231
  /**
2845
2232
  * <p>For the metric that the CloudWatch alarm is associated with, a complex type that
2846
2233
  * contains information about one dimension.</p>
@@ -2860,21 +2247,6 @@ export interface Dimension {
2860
2247
  */
2861
2248
  Value: string | undefined;
2862
2249
  }
2863
- /**
2864
- * @public
2865
- * @enum
2866
- */
2867
- export declare const Statistic: {
2868
- readonly Average: "Average";
2869
- readonly Maximum: "Maximum";
2870
- readonly Minimum: "Minimum";
2871
- readonly SampleCount: "SampleCount";
2872
- readonly Sum: "Sum";
2873
- };
2874
- /**
2875
- * @public
2876
- */
2877
- export type Statistic = (typeof Statistic)[keyof typeof Statistic];
2878
2250
  /**
2879
2251
  * <p>A complex type that contains information about the CloudWatch alarm that Amazon Route
2880
2252
  * 53 is monitoring for this health check.</p>
@@ -3016,50 +2388,6 @@ export interface CreateHealthCheckResponse {
3016
2388
  */
3017
2389
  Location: string | undefined;
3018
2390
  }
3019
- /**
3020
- * <p> The health check you're attempting to create already exists. Amazon Route 53 returns
3021
- * this error when you submit a request that has the following values:</p>
3022
- * <ul>
3023
- * <li>
3024
- * <p>The same value for <code>CallerReference</code> as an existing health check,
3025
- * and one or more values that differ from the existing health check that has the
3026
- * same caller reference.</p>
3027
- * </li>
3028
- * <li>
3029
- * <p>The same value for <code>CallerReference</code> as a health check that you
3030
- * created and later deleted, regardless of the other settings in the
3031
- * request.</p>
3032
- * </li>
3033
- * </ul>
3034
- * @public
3035
- */
3036
- export declare class HealthCheckAlreadyExists extends __BaseException {
3037
- readonly name: "HealthCheckAlreadyExists";
3038
- readonly $fault: "client";
3039
- /**
3040
- * @internal
3041
- */
3042
- constructor(opts: __ExceptionOptionType<HealthCheckAlreadyExists, __BaseException>);
3043
- }
3044
- /**
3045
- * <p>This health check can't be created because the current account has reached the limit
3046
- * on the number of active health checks.</p>
3047
- * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
3048
- * <i>Amazon Route 53 Developer Guide</i>.</p>
3049
- * <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
3050
- * Center.</p>
3051
- * <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
3052
- * Center.</p>
3053
- * @public
3054
- */
3055
- export declare class TooManyHealthChecks extends __BaseException {
3056
- readonly name: "TooManyHealthChecks";
3057
- readonly $fault: "client";
3058
- /**
3059
- * @internal
3060
- */
3061
- constructor(opts: __ExceptionOptionType<TooManyHealthChecks, __BaseException>);
3062
- }
3063
2391
  /**
3064
2392
  * <p>A complex type that contains an optional comment about your hosted zone. If you don't
3065
2393
  * want to specify a comment, omit both the <code>HostedZoneConfig</code> and
@@ -3247,92 +2575,6 @@ export interface CreateHostedZoneResponse {
3247
2575
  */
3248
2576
  Location: string | undefined;
3249
2577
  }
3250
- /**
3251
- * <p>You can create a hosted zone that has the same name as an existing hosted zone
3252
- * (example.com is common), but there is a limit to the number of hosted zones that have
3253
- * the same name. If you get this error, Amazon Route 53 has reached that limit. If you own
3254
- * the domain name and Route 53 generates this error, contact Customer Support.</p>
3255
- * @public
3256
- */
3257
- export declare class DelegationSetNotAvailable extends __BaseException {
3258
- readonly name: "DelegationSetNotAvailable";
3259
- readonly $fault: "client";
3260
- /**
3261
- * @internal
3262
- */
3263
- constructor(opts: __ExceptionOptionType<DelegationSetNotAvailable, __BaseException>);
3264
- }
3265
- /**
3266
- * <p>A reusable delegation set with the specified ID does not exist.</p>
3267
- * @public
3268
- */
3269
- export declare class DelegationSetNotReusable extends __BaseException {
3270
- readonly name: "DelegationSetNotReusable";
3271
- readonly $fault: "client";
3272
- /**
3273
- * @internal
3274
- */
3275
- constructor(opts: __ExceptionOptionType<DelegationSetNotReusable, __BaseException>);
3276
- }
3277
- /**
3278
- * <p>The hosted zone you're trying to create already exists. Amazon Route 53 returns this
3279
- * error when a hosted zone has already been created with the specified
3280
- * <code>CallerReference</code>.</p>
3281
- * @public
3282
- */
3283
- export declare class HostedZoneAlreadyExists extends __BaseException {
3284
- readonly name: "HostedZoneAlreadyExists";
3285
- readonly $fault: "client";
3286
- /**
3287
- * @internal
3288
- */
3289
- constructor(opts: __ExceptionOptionType<HostedZoneAlreadyExists, __BaseException>);
3290
- }
3291
- /**
3292
- * <p>The specified domain name is not valid.</p>
3293
- * @public
3294
- */
3295
- export declare class InvalidDomainName extends __BaseException {
3296
- readonly name: "InvalidDomainName";
3297
- readonly $fault: "client";
3298
- /**
3299
- * @internal
3300
- */
3301
- constructor(opts: __ExceptionOptionType<InvalidDomainName, __BaseException>);
3302
- }
3303
- /**
3304
- * <p>A reusable delegation set with the specified ID does not exist.</p>
3305
- * @public
3306
- */
3307
- export declare class NoSuchDelegationSet extends __BaseException {
3308
- readonly name: "NoSuchDelegationSet";
3309
- readonly $fault: "client";
3310
- /**
3311
- * @internal
3312
- */
3313
- constructor(opts: __ExceptionOptionType<NoSuchDelegationSet, __BaseException>);
3314
- }
3315
- /**
3316
- * <p>This operation can't be completed either because the current account has reached the
3317
- * limit on the number of hosted zones or because you've reached the limit on the number of
3318
- * hosted zones that can be associated with a reusable delegation set.</p>
3319
- * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
3320
- * <i>Amazon Route 53 Developer Guide</i>.</p>
3321
- * <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>
3322
- * <p>To get the current limit on hosted zones that can be associated with a reusable
3323
- * delegation set, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSetLimit.html">GetReusableDelegationSetLimit</a>.</p>
3324
- * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
3325
- * case</a> with the Amazon Web Services Support Center.</p>
3326
- * @public
3327
- */
3328
- export declare class TooManyHostedZones extends __BaseException {
3329
- readonly name: "TooManyHostedZones";
3330
- readonly $fault: "client";
3331
- /**
3332
- * @internal
3333
- */
3334
- constructor(opts: __ExceptionOptionType<TooManyHostedZones, __BaseException>);
3335
- }
3336
2578
  /**
3337
2579
  * @public
3338
2580
  */
@@ -3606,55 +2848,6 @@ export interface CreateKeySigningKeyResponse {
3606
2848
  */
3607
2849
  Location: string | undefined;
3608
2850
  }
3609
- /**
3610
- * <p>Parameter name is not valid.</p>
3611
- * @public
3612
- */
3613
- export declare class InvalidArgument extends __BaseException {
3614
- readonly name: "InvalidArgument";
3615
- readonly $fault: "client";
3616
- /**
3617
- * @internal
3618
- */
3619
- constructor(opts: __ExceptionOptionType<InvalidArgument, __BaseException>);
3620
- }
3621
- /**
3622
- * <p>The key-signing key (KSK) name that you specified isn't a valid name.</p>
3623
- * @public
3624
- */
3625
- export declare class InvalidKeySigningKeyName extends __BaseException {
3626
- readonly name: "InvalidKeySigningKeyName";
3627
- readonly $fault: "client";
3628
- /**
3629
- * @internal
3630
- */
3631
- constructor(opts: __ExceptionOptionType<InvalidKeySigningKeyName, __BaseException>);
3632
- }
3633
- /**
3634
- * <p>You've already created a key-signing key (KSK) with this name or with the same customer managed key ARN.</p>
3635
- * @public
3636
- */
3637
- export declare class KeySigningKeyAlreadyExists extends __BaseException {
3638
- readonly name: "KeySigningKeyAlreadyExists";
3639
- readonly $fault: "client";
3640
- /**
3641
- * @internal
3642
- */
3643
- constructor(opts: __ExceptionOptionType<KeySigningKeyAlreadyExists, __BaseException>);
3644
- }
3645
- /**
3646
- * <p>You've reached the limit for the number of key-signing keys (KSKs). Remove at least
3647
- * one KSK, and then try again.</p>
3648
- * @public
3649
- */
3650
- export declare class TooManyKeySigningKeys extends __BaseException {
3651
- readonly name: "TooManyKeySigningKeys";
3652
- readonly $fault: "client";
3653
- /**
3654
- * @internal
3655
- */
3656
- constructor(opts: __ExceptionOptionType<TooManyKeySigningKeys, __BaseException>);
3657
- }
3658
2851
  /**
3659
2852
  * @public
3660
2853
  */
@@ -3678,104 +2871,43 @@ export interface CreateQueryLoggingConfigRequest {
3678
2871
  }
3679
2872
  /**
3680
2873
  * <p>A complex type that contains information about a configuration for DNS query
3681
- * logging.</p>
3682
- * @public
3683
- */
3684
- export interface QueryLoggingConfig {
3685
- /**
3686
- * <p>The ID for a configuration for DNS query logging.</p>
3687
- * @public
3688
- */
3689
- Id: string | undefined;
3690
- /**
3691
- * <p>The ID of the hosted zone that CloudWatch Logs is logging queries for. </p>
3692
- * @public
3693
- */
3694
- HostedZoneId: string | undefined;
3695
- /**
3696
- * <p>The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53
3697
- * is publishing logs to.</p>
3698
- * @public
3699
- */
3700
- CloudWatchLogsLogGroupArn: string | undefined;
3701
- }
3702
- /**
3703
- * @public
3704
- */
3705
- export interface CreateQueryLoggingConfigResponse {
3706
- /**
3707
- * <p>A complex type that contains the ID for a query logging configuration, the ID of the
3708
- * hosted zone that you want to log queries for, and the ARN for the log group that you
3709
- * want Amazon Route 53 to send query logs to.</p>
3710
- * @public
3711
- */
3712
- QueryLoggingConfig: QueryLoggingConfig | undefined;
3713
- /**
3714
- * <p>The unique URL representing the new query logging configuration.</p>
3715
- * @public
3716
- */
3717
- Location: string | undefined;
3718
- }
3719
- /**
3720
- * <p>Amazon Route 53 doesn't have the permissions required to create log streams and send
3721
- * query logs to log streams. Possible causes include the following:</p>
3722
- * <ul>
3723
- * <li>
3724
- * <p>There is no resource policy that specifies the log group ARN in the value for
3725
- * <code>Resource</code>.</p>
3726
- * </li>
3727
- * <li>
3728
- * <p>The resource policy that includes the log group ARN in the value for
3729
- * <code>Resource</code> doesn't have the necessary permissions.</p>
3730
- * </li>
3731
- * <li>
3732
- * <p>The resource policy hasn't finished propagating yet.</p>
3733
- * </li>
3734
- * <li>
3735
- * <p>The Key management service (KMS) key you specified doesn’t exist or it can’t
3736
- * be used with the log group associated with query log. Update or provide a
3737
- * resource policy to grant permissions for the KMS key.</p>
3738
- * </li>
3739
- * <li>
3740
- * <p>The Key management service (KMS) key you specified is marked as
3741
- * disabled for the log group associated with query log. Update or provide
3742
- * a resource policy to grant permissions for the KMS key.</p>
3743
- * </li>
3744
- * </ul>
3745
- * @public
3746
- */
3747
- export declare class InsufficientCloudWatchLogsResourcePolicy extends __BaseException {
3748
- readonly name: "InsufficientCloudWatchLogsResourcePolicy";
3749
- readonly $fault: "client";
3750
- /**
3751
- * @internal
3752
- */
3753
- constructor(opts: __ExceptionOptionType<InsufficientCloudWatchLogsResourcePolicy, __BaseException>);
3754
- }
3755
- /**
3756
- * <p>There is no CloudWatch Logs log group with the specified ARN.</p>
2874
+ * logging.</p>
3757
2875
  * @public
3758
2876
  */
3759
- export declare class NoSuchCloudWatchLogsLogGroup extends __BaseException {
3760
- readonly name: "NoSuchCloudWatchLogsLogGroup";
3761
- readonly $fault: "client";
2877
+ export interface QueryLoggingConfig {
2878
+ /**
2879
+ * <p>The ID for a configuration for DNS query logging.</p>
2880
+ * @public
2881
+ */
2882
+ Id: string | undefined;
2883
+ /**
2884
+ * <p>The ID of the hosted zone that CloudWatch Logs is logging queries for. </p>
2885
+ * @public
2886
+ */
2887
+ HostedZoneId: string | undefined;
3762
2888
  /**
3763
- * @internal
2889
+ * <p>The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53
2890
+ * is publishing logs to.</p>
2891
+ * @public
3764
2892
  */
3765
- constructor(opts: __ExceptionOptionType<NoSuchCloudWatchLogsLogGroup, __BaseException>);
2893
+ CloudWatchLogsLogGroupArn: string | undefined;
3766
2894
  }
3767
2895
  /**
3768
- * <p>You can create only one query logging configuration for a hosted zone, and a query
3769
- * logging configuration already exists for this hosted zone.</p>
3770
2896
  * @public
3771
2897
  */
3772
- export declare class QueryLoggingConfigAlreadyExists extends __BaseException {
3773
- readonly name: "QueryLoggingConfigAlreadyExists";
3774
- readonly $fault: "client";
2898
+ export interface CreateQueryLoggingConfigResponse {
2899
+ /**
2900
+ * <p>A complex type that contains the ID for a query logging configuration, the ID of the
2901
+ * hosted zone that you want to log queries for, and the ARN for the log group that you
2902
+ * want Amazon Route 53 to send query logs to.</p>
2903
+ * @public
2904
+ */
2905
+ QueryLoggingConfig: QueryLoggingConfig | undefined;
3775
2906
  /**
3776
- * @internal
2907
+ * <p>The unique URL representing the new query logging configuration.</p>
2908
+ * @public
3777
2909
  */
3778
- constructor(opts: __ExceptionOptionType<QueryLoggingConfigAlreadyExists, __BaseException>);
2910
+ Location: string | undefined;
3779
2911
  }
3780
2912
  /**
3781
2913
  * @public
@@ -3813,43 +2945,6 @@ export interface CreateReusableDelegationSetResponse {
3813
2945
  */
3814
2946
  Location: string | undefined;
3815
2947
  }
3816
- /**
3817
- * <p>A delegation set with the same owner and caller reference combination has already been
3818
- * created.</p>
3819
- * @public
3820
- */
3821
- export declare class DelegationSetAlreadyCreated extends __BaseException {
3822
- readonly name: "DelegationSetAlreadyCreated";
3823
- readonly $fault: "client";
3824
- /**
3825
- * @internal
3826
- */
3827
- constructor(opts: __ExceptionOptionType<DelegationSetAlreadyCreated, __BaseException>);
3828
- }
3829
- /**
3830
- * <p>The specified delegation set has already been marked as reusable.</p>
3831
- * @public
3832
- */
3833
- export declare class DelegationSetAlreadyReusable extends __BaseException {
3834
- readonly name: "DelegationSetAlreadyReusable";
3835
- readonly $fault: "client";
3836
- /**
3837
- * @internal
3838
- */
3839
- constructor(opts: __ExceptionOptionType<DelegationSetAlreadyReusable, __BaseException>);
3840
- }
3841
- /**
3842
- * <p>The specified HostedZone can't be found.</p>
3843
- * @public
3844
- */
3845
- export declare class HostedZoneNotFound extends __BaseException {
3846
- readonly name: "HostedZoneNotFound";
3847
- readonly $fault: "client";
3848
- /**
3849
- * @internal
3850
- */
3851
- constructor(opts: __ExceptionOptionType<HostedZoneNotFound, __BaseException>);
3852
- }
3853
2948
  /**
3854
2949
  * <p>A complex type that contains information about the traffic policy that you want to
3855
2950
  * create.</p>
@@ -3930,49 +3025,6 @@ export interface CreateTrafficPolicyResponse {
3930
3025
  */
3931
3026
  Location: string | undefined;
3932
3027
  }
3933
- /**
3934
- * <p>The format of the traffic policy document that you specified in the
3935
- * <code>Document</code> element is not valid.</p>
3936
- * @public
3937
- */
3938
- export declare class InvalidTrafficPolicyDocument extends __BaseException {
3939
- readonly name: "InvalidTrafficPolicyDocument";
3940
- readonly $fault: "client";
3941
- /**
3942
- * @internal
3943
- */
3944
- constructor(opts: __ExceptionOptionType<InvalidTrafficPolicyDocument, __BaseException>);
3945
- }
3946
- /**
3947
- * <p>This traffic policy can't be created because the current account has reached the limit
3948
- * on the number of traffic policies.</p>
3949
- * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
3950
- * <i>Amazon Route 53 Developer Guide</i>.</p>
3951
- * <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>
3952
- * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
3953
- * case</a> with the Amazon Web Services Support Center.</p>
3954
- * @public
3955
- */
3956
- export declare class TooManyTrafficPolicies extends __BaseException {
3957
- readonly name: "TooManyTrafficPolicies";
3958
- readonly $fault: "client";
3959
- /**
3960
- * @internal
3961
- */
3962
- constructor(opts: __ExceptionOptionType<TooManyTrafficPolicies, __BaseException>);
3963
- }
3964
- /**
3965
- * <p>A traffic policy that has the same value for <code>Name</code> already exists.</p>
3966
- * @public
3967
- */
3968
- export declare class TrafficPolicyAlreadyExists extends __BaseException {
3969
- readonly name: "TrafficPolicyAlreadyExists";
3970
- readonly $fault: "client";
3971
- /**
3972
- * @internal
3973
- */
3974
- constructor(opts: __ExceptionOptionType<TrafficPolicyAlreadyExists, __BaseException>);
3975
- }
3976
3028
  /**
3977
3029
  * <p>A complex type that contains information about the resource record sets that you want
3978
3030
  * to create based on a specified traffic policy.</p>
@@ -4107,48 +3159,6 @@ export interface CreateTrafficPolicyInstanceResponse {
4107
3159
  */
4108
3160
  Location: string | undefined;
4109
3161
  }
4110
- /**
4111
- * <p>No traffic policy exists with the specified ID.</p>
4112
- * @public
4113
- */
4114
- export declare class NoSuchTrafficPolicy extends __BaseException {
4115
- readonly name: "NoSuchTrafficPolicy";
4116
- readonly $fault: "client";
4117
- /**
4118
- * @internal
4119
- */
4120
- constructor(opts: __ExceptionOptionType<NoSuchTrafficPolicy, __BaseException>);
4121
- }
4122
- /**
4123
- * <p>This traffic policy instance can't be created because the current account has reached
4124
- * the limit on the number of traffic policy instances.</p>
4125
- * <p>For information about default limits, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
4126
- * <i>Amazon Route 53 Developer Guide</i>.</p>
4127
- * <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>
4128
- * <p>To request a higher limit, <a href="http://aws.amazon.com/route53-request">create a
4129
- * case</a> with the Amazon Web Services Support Center.</p>
4130
- * @public
4131
- */
4132
- export declare class TooManyTrafficPolicyInstances extends __BaseException {
4133
- readonly name: "TooManyTrafficPolicyInstances";
4134
- readonly $fault: "client";
4135
- /**
4136
- * @internal
4137
- */
4138
- constructor(opts: __ExceptionOptionType<TooManyTrafficPolicyInstances, __BaseException>);
4139
- }
4140
- /**
4141
- * <p>There is already a traffic policy instance with the specified ID.</p>
4142
- * @public
4143
- */
4144
- export declare class TrafficPolicyInstanceAlreadyExists extends __BaseException {
4145
- readonly name: "TrafficPolicyInstanceAlreadyExists";
4146
- readonly $fault: "client";
4147
- /**
4148
- * @internal
4149
- */
4150
- constructor(opts: __ExceptionOptionType<TrafficPolicyInstanceAlreadyExists, __BaseException>);
4151
- }
4152
3162
  /**
4153
3163
  * <p>A complex type that contains information about the traffic policy that you want to
4154
3164
  * create a new version for.</p>
@@ -4192,23 +3202,6 @@ export interface CreateTrafficPolicyVersionResponse {
4192
3202
  */
4193
3203
  Location: string | undefined;
4194
3204
  }
4195
- /**
4196
- * <p>This traffic policy version can't be created because you've reached the limit of 1000
4197
- * on the number of versions that you can create for the current traffic policy.</p>
4198
- * <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>
4199
- * to get the traffic policy document for a specified traffic policy version, and then use
4200
- * <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
4201
- * document.</p>
4202
- * @public
4203
- */
4204
- export declare class TooManyTrafficPolicyVersionsForCurrentPolicy extends __BaseException {
4205
- readonly name: "TooManyTrafficPolicyVersionsForCurrentPolicy";
4206
- readonly $fault: "client";
4207
- /**
4208
- * @internal
4209
- */
4210
- constructor(opts: __ExceptionOptionType<TooManyTrafficPolicyVersionsForCurrentPolicy, __BaseException>);
4211
- }
4212
3205
  /**
4213
3206
  * <p>A complex type that contains information about the request to authorize associating a
4214
3207
  * VPC with your private hosted zone. Authorization is only required when a private hosted
@@ -4246,22 +3239,6 @@ export interface CreateVPCAssociationAuthorizationResponse {
4246
3239
  */
4247
3240
  VPC: VPC | undefined;
4248
3241
  }
4249
- /**
4250
- * <p>You've created the maximum number of authorizations that can be created for the
4251
- * specified hosted zone. To authorize another VPC to be associated with the hosted zone,
4252
- * submit a <code>DeleteVPCAssociationAuthorization</code> request to remove an existing
4253
- * authorization. To get a list of existing authorizations, submit a
4254
- * <code>ListVPCAssociationAuthorizations</code> request.</p>
4255
- * @public
4256
- */
4257
- export declare class TooManyVPCAssociationAuthorizations extends __BaseException {
4258
- readonly name: "TooManyVPCAssociationAuthorizations";
4259
- readonly $fault: "client";
4260
- /**
4261
- * @internal
4262
- */
4263
- constructor(opts: __ExceptionOptionType<TooManyVPCAssociationAuthorizations, __BaseException>);
4264
- }
4265
3242
  /**
4266
3243
  * @public
4267
3244
  */
@@ -4288,45 +3265,6 @@ export interface DeactivateKeySigningKeyResponse {
4288
3265
  */
4289
3266
  ChangeInfo: ChangeInfo | undefined;
4290
3267
  }
4291
- /**
4292
- * <p>The key-signing key (KSK) is specified in a parent DS record.</p>
4293
- * @public
4294
- */
4295
- export declare class KeySigningKeyInParentDSRecord extends __BaseException {
4296
- readonly name: "KeySigningKeyInParentDSRecord";
4297
- readonly $fault: "client";
4298
- /**
4299
- * @internal
4300
- */
4301
- constructor(opts: __ExceptionOptionType<KeySigningKeyInParentDSRecord, __BaseException>);
4302
- }
4303
- /**
4304
- * <p>The key-signing key (KSK) that you specified can't be deactivated because it's the
4305
- * only KSK for a currently-enabled DNSSEC. Disable DNSSEC signing, or add or enable
4306
- * another KSK.</p>
4307
- * @public
4308
- */
4309
- export declare class KeySigningKeyInUse extends __BaseException {
4310
- readonly name: "KeySigningKeyInUse";
4311
- readonly $fault: "client";
4312
- /**
4313
- * @internal
4314
- */
4315
- constructor(opts: __ExceptionOptionType<KeySigningKeyInUse, __BaseException>);
4316
- }
4317
- /**
4318
- * <p>This CIDR collection is in use, and isn't empty.</p>
4319
- * @public
4320
- */
4321
- export declare class CidrCollectionInUseException extends __BaseException {
4322
- readonly name: "CidrCollectionInUseException";
4323
- readonly $fault: "client";
4324
- Message?: string | undefined;
4325
- /**
4326
- * @internal
4327
- */
4328
- constructor(opts: __ExceptionOptionType<CidrCollectionInUseException, __BaseException>);
4329
- }
4330
3268
  /**
4331
3269
  * @public
4332
3270
  */
@@ -4359,20 +3297,6 @@ export interface DeleteHealthCheckRequest {
4359
3297
  */
4360
3298
  export interface DeleteHealthCheckResponse {
4361
3299
  }
4362
- /**
4363
- * <p>This error code is not in use.</p>
4364
- *
4365
- * @deprecated deprecated
4366
- * @public
4367
- */
4368
- export declare class HealthCheckInUse extends __BaseException {
4369
- readonly name: "HealthCheckInUse";
4370
- readonly $fault: "client";
4371
- /**
4372
- * @internal
4373
- */
4374
- constructor(opts: __ExceptionOptionType<HealthCheckInUse, __BaseException>);
4375
- }
4376
3300
  /**
4377
3301
  * <p>A request to delete a hosted zone.</p>
4378
3302
  * @public
@@ -4397,18 +3321,6 @@ export interface DeleteHostedZoneResponse {
4397
3321
  */
4398
3322
  ChangeInfo: ChangeInfo | undefined;
4399
3323
  }
4400
- /**
4401
- * <p>The hosted zone contains resource records that are not SOA or NS records.</p>
4402
- * @public
4403
- */
4404
- export declare class HostedZoneNotEmpty extends __BaseException {
4405
- readonly name: "HostedZoneNotEmpty";
4406
- readonly $fault: "client";
4407
- /**
4408
- * @internal
4409
- */
4410
- constructor(opts: __ExceptionOptionType<HostedZoneNotEmpty, __BaseException>);
4411
- }
4412
3324
  /**
4413
3325
  * @public
4414
3326
  */
@@ -4450,31 +3362,6 @@ export interface DeleteQueryLoggingConfigRequest {
4450
3362
  */
4451
3363
  export interface DeleteQueryLoggingConfigResponse {
4452
3364
  }
4453
- /**
4454
- * <p>There is no DNS query logging configuration with the specified ID.</p>
4455
- * @public
4456
- */
4457
- export declare class NoSuchQueryLoggingConfig extends __BaseException {
4458
- readonly name: "NoSuchQueryLoggingConfig";
4459
- readonly $fault: "client";
4460
- /**
4461
- * @internal
4462
- */
4463
- constructor(opts: __ExceptionOptionType<NoSuchQueryLoggingConfig, __BaseException>);
4464
- }
4465
- /**
4466
- * <p>The specified delegation contains associated hosted zones which must be deleted before
4467
- * the reusable delegation set can be deleted.</p>
4468
- * @public
4469
- */
4470
- export declare class DelegationSetInUse extends __BaseException {
4471
- readonly name: "DelegationSetInUse";
4472
- readonly $fault: "client";
4473
- /**
4474
- * @internal
4475
- */
4476
- constructor(opts: __ExceptionOptionType<DelegationSetInUse, __BaseException>);
4477
- }
4478
3365
  /**
4479
3366
  * <p>A request to delete a reusable delegation set.</p>
4480
3367
  * @public
@@ -4514,19 +3401,6 @@ export interface DeleteTrafficPolicyRequest {
4514
3401
  */
4515
3402
  export interface DeleteTrafficPolicyResponse {
4516
3403
  }
4517
- /**
4518
- * <p>One or more traffic policy instances were created by using the specified traffic
4519
- * policy.</p>
4520
- * @public
4521
- */
4522
- export declare class TrafficPolicyInUse extends __BaseException {
4523
- readonly name: "TrafficPolicyInUse";
4524
- readonly $fault: "client";
4525
- /**
4526
- * @internal
4527
- */
4528
- constructor(opts: __ExceptionOptionType<TrafficPolicyInUse, __BaseException>);
4529
- }
4530
3404
  /**
4531
3405
  * <p>A request to delete a specified traffic policy instance.</p>
4532
3406
  * @public
@@ -4549,18 +3423,6 @@ export interface DeleteTrafficPolicyInstanceRequest {
4549
3423
  */
4550
3424
  export interface DeleteTrafficPolicyInstanceResponse {
4551
3425
  }
4552
- /**
4553
- * <p>No traffic policy instance exists with the specified ID.</p>
4554
- * @public
4555
- */
4556
- export declare class NoSuchTrafficPolicyInstance extends __BaseException {
4557
- readonly name: "NoSuchTrafficPolicyInstance";
4558
- readonly $fault: "client";
4559
- /**
4560
- * @internal
4561
- */
4562
- constructor(opts: __ExceptionOptionType<NoSuchTrafficPolicyInstance, __BaseException>);
4563
- }
4564
3426
  /**
4565
3427
  * <p>A complex type that contains information about the request to remove authorization to
4566
3428
  * associate a VPC that was created by one Amazon Web Services account with a hosted zone
@@ -4586,19 +3448,6 @@ export interface DeleteVPCAssociationAuthorizationRequest {
4586
3448
  */
4587
3449
  export interface DeleteVPCAssociationAuthorizationResponse {
4588
3450
  }
4589
- /**
4590
- * <p>The VPC that you specified is not authorized to be associated with the hosted
4591
- * zone.</p>
4592
- * @public
4593
- */
4594
- export declare class VPCAssociationAuthorizationNotFound extends __BaseException {
4595
- readonly name: "VPCAssociationAuthorizationNotFound";
4596
- readonly $fault: "client";
4597
- /**
4598
- * @internal
4599
- */
4600
- constructor(opts: __ExceptionOptionType<VPCAssociationAuthorizationNotFound, __BaseException>);
4601
- }
4602
3451
  /**
4603
3452
  * @public
4604
3453
  */
@@ -4620,18 +3469,6 @@ export interface DisableHostedZoneDNSSECResponse {
4620
3469
  */
4621
3470
  ChangeInfo: ChangeInfo | undefined;
4622
3471
  }
4623
- /**
4624
- * <p>The hosted zone doesn't have any DNSSEC resources.</p>
4625
- * @public
4626
- */
4627
- export declare class DNSSECNotFound extends __BaseException {
4628
- readonly name: "DNSSECNotFound";
4629
- readonly $fault: "client";
4630
- /**
4631
- * @internal
4632
- */
4633
- constructor(opts: __ExceptionOptionType<DNSSECNotFound, __BaseException>);
4634
- }
4635
3472
  /**
4636
3473
  * <p>A complex type that contains information about the VPC that you want to disassociate
4637
3474
  * from a specified private hosted zone.</p>
@@ -4669,32 +3506,6 @@ export interface DisassociateVPCFromHostedZoneResponse {
4669
3506
  */
4670
3507
  ChangeInfo: ChangeInfo | undefined;
4671
3508
  }
4672
- /**
4673
- * <p>The VPC that you're trying to disassociate from the private hosted zone is the last
4674
- * VPC that is associated with the hosted zone. Amazon Route 53 doesn't support
4675
- * disassociating the last VPC from a hosted zone.</p>
4676
- * @public
4677
- */
4678
- export declare class LastVPCAssociation extends __BaseException {
4679
- readonly name: "LastVPCAssociation";
4680
- readonly $fault: "client";
4681
- /**
4682
- * @internal
4683
- */
4684
- constructor(opts: __ExceptionOptionType<LastVPCAssociation, __BaseException>);
4685
- }
4686
- /**
4687
- * <p>The specified VPC and hosted zone are not currently associated.</p>
4688
- * @public
4689
- */
4690
- export declare class VPCAssociationNotFound extends __BaseException {
4691
- readonly name: "VPCAssociationNotFound";
4692
- readonly $fault: "client";
4693
- /**
4694
- * @internal
4695
- */
4696
- constructor(opts: __ExceptionOptionType<VPCAssociationNotFound, __BaseException>);
4697
- }
4698
3509
  /**
4699
3510
  * @public
4700
3511
  */
@@ -4716,31 +3527,6 @@ export interface EnableHostedZoneDNSSECResponse {
4716
3527
  */
4717
3528
  ChangeInfo: ChangeInfo | undefined;
4718
3529
  }
4719
- /**
4720
- * <p>The hosted zone nameservers don't match the parent nameservers. The hosted zone and
4721
- * parent must have the same nameservers.</p>
4722
- * @public
4723
- */
4724
- export declare class HostedZonePartiallyDelegated extends __BaseException {
4725
- readonly name: "HostedZonePartiallyDelegated";
4726
- readonly $fault: "client";
4727
- /**
4728
- * @internal
4729
- */
4730
- constructor(opts: __ExceptionOptionType<HostedZonePartiallyDelegated, __BaseException>);
4731
- }
4732
- /**
4733
- * <p>A key-signing key (KSK) with <code>ACTIVE</code> status wasn't found.</p>
4734
- * @public
4735
- */
4736
- export declare class KeySigningKeyWithActiveStatusNotFound extends __BaseException {
4737
- readonly name: "KeySigningKeyWithActiveStatusNotFound";
4738
- readonly $fault: "client";
4739
- /**
4740
- * @internal
4741
- */
4742
- constructor(opts: __ExceptionOptionType<KeySigningKeyWithActiveStatusNotFound, __BaseException>);
4743
- }
4744
3530
  /**
4745
3531
  * <p>A complex type that contains information about the request to create a hosted
4746
3532
  * zone.</p>
@@ -4829,18 +3615,6 @@ export interface GetChangeResponse {
4829
3615
  */
4830
3616
  ChangeInfo: ChangeInfo | undefined;
4831
3617
  }
4832
- /**
4833
- * <p>A change with the specified change ID does not exist.</p>
4834
- * @public
4835
- */
4836
- export declare class NoSuchChange extends __BaseException {
4837
- readonly name: "NoSuchChange";
4838
- readonly $fault: "client";
4839
- /**
4840
- * @internal
4841
- */
4842
- constructor(opts: __ExceptionOptionType<NoSuchChange, __BaseException>);
4843
- }
4844
3618
  /**
4845
3619
  * <p>Empty request.</p>
4846
3620
  * @public
@@ -5046,20 +3820,6 @@ export interface GetGeoLocationResponse {
5046
3820
  */
5047
3821
  GeoLocationDetails: GeoLocationDetails | undefined;
5048
3822
  }
5049
- /**
5050
- * <p>Amazon Route 53 doesn't support the specified geographic location. For a list of
5051
- * supported geolocation codes, see the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html">GeoLocation</a> data
5052
- * type.</p>
5053
- * @public
5054
- */
5055
- export declare class NoSuchGeoLocation extends __BaseException {
5056
- readonly name: "NoSuchGeoLocation";
5057
- readonly $fault: "client";
5058
- /**
5059
- * @internal
5060
- */
5061
- constructor(opts: __ExceptionOptionType<NoSuchGeoLocation, __BaseException>);
5062
- }
5063
3823
  /**
5064
3824
  * <p>A request to get information about a specified health check. </p>
5065
3825
  * @public
@@ -5086,19 +3846,6 @@ export interface GetHealthCheckResponse {
5086
3846
  */
5087
3847
  HealthCheck: HealthCheck | undefined;
5088
3848
  }
5089
- /**
5090
- * <p>The resource you're trying to access is unsupported on this Amazon Route 53
5091
- * endpoint.</p>
5092
- * @public
5093
- */
5094
- export declare class IncompatibleVersion extends __BaseException {
5095
- readonly name: "IncompatibleVersion";
5096
- readonly $fault: "client";
5097
- /**
5098
- * @internal
5099
- */
5100
- constructor(opts: __ExceptionOptionType<IncompatibleVersion, __BaseException>);
5101
- }
5102
3849
  /**
5103
3850
  * <p>A request for the number of health checks that are associated with the current Amazon Web Services account.</p>
5104
3851
  * @public
@@ -5283,18 +4030,6 @@ export interface GetHostedZoneCountResponse {
5283
4030
  */
5284
4031
  HostedZoneCount: number | undefined;
5285
4032
  }
5286
- /**
5287
- * @public
5288
- * @enum
5289
- */
5290
- export declare const HostedZoneLimitType: {
5291
- readonly MAX_RRSETS_BY_ZONE: "MAX_RRSETS_BY_ZONE";
5292
- readonly MAX_VPCS_ASSOCIATED_BY_ZONE: "MAX_VPCS_ASSOCIATED_BY_ZONE";
5293
- };
5294
- /**
5295
- * @public
5296
- */
5297
- export type HostedZoneLimitType = (typeof HostedZoneLimitType)[keyof typeof HostedZoneLimitType];
5298
4033
  /**
5299
4034
  * <p>A complex type that contains information about the request to create a hosted
5300
4035
  * zone.</p>
@@ -5377,18 +4112,6 @@ export interface GetHostedZoneLimitResponse {
5377
4112
  */
5378
4113
  Count: number | undefined;
5379
4114
  }
5380
- /**
5381
- * <p>The specified hosted zone is a public hosted zone, not a private hosted zone.</p>
5382
- * @public
5383
- */
5384
- export declare class HostedZoneNotPrivate extends __BaseException {
5385
- readonly name: "HostedZoneNotPrivate";
5386
- readonly $fault: "client";
5387
- /**
5388
- * @internal
5389
- */
5390
- constructor(opts: __ExceptionOptionType<HostedZoneNotPrivate, __BaseException>);
5391
- }
5392
4115
  /**
5393
4116
  * @public
5394
4117
  */
@@ -5435,17 +4158,6 @@ export interface GetReusableDelegationSetResponse {
5435
4158
  */
5436
4159
  DelegationSet: DelegationSet | undefined;
5437
4160
  }
5438
- /**
5439
- * @public
5440
- * @enum
5441
- */
5442
- export declare const ReusableDelegationSetLimitType: {
5443
- readonly MAX_ZONES_BY_REUSABLE_DELEGATION_SET: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET";
5444
- };
5445
- /**
5446
- * @public
5447
- */
5448
- export type ReusableDelegationSetLimitType = (typeof ReusableDelegationSetLimitType)[keyof typeof ReusableDelegationSetLimitType];
5449
4161
  /**
5450
4162
  * <p>A complex type that contains information about the request to create a hosted
5451
4163
  * zone.</p>
@@ -5631,19 +4343,6 @@ export interface ListCidrBlocksResponse {
5631
4343
  */
5632
4344
  CidrBlocks?: CidrBlockSummary[] | undefined;
5633
4345
  }
5634
- /**
5635
- * <p>The CIDR collection location doesn't match any locations in your account.</p>
5636
- * @public
5637
- */
5638
- export declare class NoSuchCidrLocationException extends __BaseException {
5639
- readonly name: "NoSuchCidrLocationException";
5640
- readonly $fault: "client";
5641
- Message?: string | undefined;
5642
- /**
5643
- * @internal
5644
- */
5645
- constructor(opts: __ExceptionOptionType<NoSuchCidrLocationException, __BaseException>);
5646
- }
5647
4346
  /**
5648
4347
  * @public
5649
4348
  */
@@ -5927,17 +4626,6 @@ export interface ListHealthChecksResponse {
5927
4626
  */
5928
4627
  MaxItems: number | undefined;
5929
4628
  }
5930
- /**
5931
- * @public
5932
- * @enum
5933
- */
5934
- export declare const HostedZoneType: {
5935
- readonly PRIVATE_HOSTED_ZONE: "PrivateHostedZone";
5936
- };
5937
- /**
5938
- * @public
5939
- */
5940
- export type HostedZoneType = (typeof HostedZoneType)[keyof typeof HostedZoneType];
5941
4629
  /**
5942
4630
  * <p>A request to retrieve a list of the public and private hosted zones that are
5943
4631
  * associated with the current Amazon Web Services account.</p>
@@ -6119,19 +4807,6 @@ export interface ListHostedZonesByNameResponse {
6119
4807
  */
6120
4808
  MaxItems: number | undefined;
6121
4809
  }
6122
- /**
6123
- * <p>The value that you specified to get the second or subsequent page of results is
6124
- * invalid.</p>
6125
- * @public
6126
- */
6127
- export declare class InvalidPaginationToken extends __BaseException {
6128
- readonly name: "InvalidPaginationToken";
6129
- readonly $fault: "client";
6130
- /**
6131
- * @internal
6132
- */
6133
- constructor(opts: __ExceptionOptionType<InvalidPaginationToken, __BaseException>);
6134
- }
6135
4810
  /**
6136
4811
  * <p>Lists all the private hosted zones that a specified VPC is associated with, regardless
6137
4812
  * of which Amazon Web Services account created the hosted zones.</p>
@@ -7272,33 +5947,6 @@ export interface TestDNSAnswerResponse {
7272
5947
  */
7273
5948
  Protocol: string | undefined;
7274
5949
  }
7275
- /**
7276
- * <p>The value of <code>HealthCheckVersion</code> in the request doesn't match the value of
7277
- * <code>HealthCheckVersion</code> in the health check.</p>
7278
- * @public
7279
- */
7280
- export declare class HealthCheckVersionMismatch extends __BaseException {
7281
- readonly name: "HealthCheckVersionMismatch";
7282
- readonly $fault: "client";
7283
- /**
7284
- * @internal
7285
- */
7286
- constructor(opts: __ExceptionOptionType<HealthCheckVersionMismatch, __BaseException>);
7287
- }
7288
- /**
7289
- * @public
7290
- * @enum
7291
- */
7292
- export declare const ResettableElementName: {
7293
- readonly ChildHealthChecks: "ChildHealthChecks";
7294
- readonly FullyQualifiedDomainName: "FullyQualifiedDomainName";
7295
- readonly Regions: "Regions";
7296
- readonly ResourcePath: "ResourcePath";
7297
- };
7298
- /**
7299
- * @public
7300
- */
7301
- export type ResettableElementName = (typeof ResettableElementName)[keyof typeof ResettableElementName];
7302
5950
  /**
7303
5951
  * <p>A complex type that contains information about a request to update a health
7304
5952
  * check.</p>
@@ -7760,21 +6408,6 @@ export interface UpdateTrafficPolicyCommentResponse {
7760
6408
  */
7761
6409
  TrafficPolicy: TrafficPolicy | undefined;
7762
6410
  }
7763
- /**
7764
- * <p>You tried to update a traffic policy instance by using a traffic policy version that
7765
- * has a different DNS type than the current type for the instance. You specified the type
7766
- * in the JSON document in the <code>CreateTrafficPolicy</code> or
7767
- * <code>CreateTrafficPolicyVersion</code>request. </p>
7768
- * @public
7769
- */
7770
- export declare class ConflictingTypes extends __BaseException {
7771
- readonly name: "ConflictingTypes";
7772
- readonly $fault: "client";
7773
- /**
7774
- * @internal
7775
- */
7776
- constructor(opts: __ExceptionOptionType<ConflictingTypes, __BaseException>);
7777
- }
7778
6411
  /**
7779
6412
  * <p>A complex type that contains information about the resource record sets that you want
7780
6413
  * to update based on a specified traffic policy instance.</p>