@aws-sdk/client-route-53 3.686.0 → 3.691.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.
@@ -26,7 +26,7 @@ export interface ChangeInfo {
26
26
  Id: string | undefined;
27
27
  Status: ChangeStatus | undefined;
28
28
  SubmittedAt: Date | undefined;
29
- Comment?: string;
29
+ Comment?: string | undefined;
30
30
  }
31
31
  export interface ActivateKeySigningKeyResponse {
32
32
  ChangeInfo: ChangeInfo | undefined;
@@ -160,13 +160,13 @@ export declare const VPCRegion: {
160
160
  };
161
161
  export type VPCRegion = (typeof VPCRegion)[keyof typeof VPCRegion];
162
162
  export interface VPC {
163
- VPCRegion?: VPCRegion;
164
- VPCId?: string;
163
+ VPCRegion?: VPCRegion | undefined;
164
+ VPCId?: string | undefined;
165
165
  }
166
166
  export interface AssociateVPCWithHostedZoneRequest {
167
167
  HostedZoneId: string | undefined;
168
168
  VPC: VPC | undefined;
169
- Comment?: string;
169
+ Comment?: string | undefined;
170
170
  }
171
171
  export interface AssociateVPCWithHostedZoneResponse {
172
172
  ChangeInfo: ChangeInfo | undefined;
@@ -227,7 +227,7 @@ export interface CidrCollectionChange {
227
227
  }
228
228
  export interface ChangeCidrCollectionRequest {
229
229
  Id: string | undefined;
230
- CollectionVersion?: number;
230
+ CollectionVersion?: number | undefined;
231
231
  Changes: CidrCollectionChange[] | undefined;
232
232
  }
233
233
  export interface ChangeCidrCollectionResponse {
@@ -236,7 +236,7 @@ export interface ChangeCidrCollectionResponse {
236
236
  export declare class CidrBlockInUseException extends __BaseException {
237
237
  readonly name: "CidrBlockInUseException";
238
238
  readonly $fault: "client";
239
- Message?: string;
239
+ Message?: string | undefined;
240
240
  constructor(
241
241
  opts: __ExceptionOptionType<CidrBlockInUseException, __BaseException>
242
242
  );
@@ -244,7 +244,7 @@ export declare class CidrBlockInUseException extends __BaseException {
244
244
  export declare class CidrCollectionVersionMismatchException extends __BaseException {
245
245
  readonly name: "CidrCollectionVersionMismatchException";
246
246
  readonly $fault: "client";
247
- Message?: string;
247
+ Message?: string | undefined;
248
248
  constructor(
249
249
  opts: __ExceptionOptionType<
250
250
  CidrCollectionVersionMismatchException,
@@ -255,7 +255,7 @@ export declare class CidrCollectionVersionMismatchException extends __BaseExcept
255
255
  export declare class NoSuchCidrCollectionException extends __BaseException {
256
256
  readonly name: "NoSuchCidrCollectionException";
257
257
  readonly $fault: "client";
258
- Message?: string;
258
+ Message?: string | undefined;
259
259
  constructor(
260
260
  opts: __ExceptionOptionType<NoSuchCidrCollectionException, __BaseException>
261
261
  );
@@ -277,19 +277,19 @@ export declare const ResourceRecordSetFailover: {
277
277
  export type ResourceRecordSetFailover =
278
278
  (typeof ResourceRecordSetFailover)[keyof typeof ResourceRecordSetFailover];
279
279
  export interface GeoLocation {
280
- ContinentCode?: string;
281
- CountryCode?: string;
282
- SubdivisionCode?: string;
280
+ ContinentCode?: string | undefined;
281
+ CountryCode?: string | undefined;
282
+ SubdivisionCode?: string | undefined;
283
283
  }
284
284
  export interface Coordinates {
285
285
  Latitude: string | undefined;
286
286
  Longitude: string | undefined;
287
287
  }
288
288
  export interface GeoProximityLocation {
289
- AWSRegion?: string;
290
- LocalZoneGroup?: string;
291
- Coordinates?: Coordinates;
292
- Bias?: number;
289
+ AWSRegion?: string | undefined;
290
+ LocalZoneGroup?: string | undefined;
291
+ Coordinates?: Coordinates | undefined;
292
+ Bias?: number | undefined;
293
293
  }
294
294
  export declare const ResourceRecordSetRegion: {
295
295
  readonly af_south_1: "af-south-1";
@@ -353,26 +353,26 @@ export type RRType = (typeof RRType)[keyof typeof RRType];
353
353
  export interface ResourceRecordSet {
354
354
  Name: string | undefined;
355
355
  Type: RRType | undefined;
356
- SetIdentifier?: string;
357
- Weight?: number;
358
- Region?: ResourceRecordSetRegion;
359
- GeoLocation?: GeoLocation;
360
- Failover?: ResourceRecordSetFailover;
361
- MultiValueAnswer?: boolean;
362
- TTL?: number;
363
- ResourceRecords?: ResourceRecord[];
364
- AliasTarget?: AliasTarget;
365
- HealthCheckId?: string;
366
- TrafficPolicyInstanceId?: string;
367
- CidrRoutingConfig?: CidrRoutingConfig;
368
- GeoProximityLocation?: GeoProximityLocation;
356
+ SetIdentifier?: string | undefined;
357
+ Weight?: number | undefined;
358
+ Region?: ResourceRecordSetRegion | undefined;
359
+ GeoLocation?: GeoLocation | undefined;
360
+ Failover?: ResourceRecordSetFailover | undefined;
361
+ MultiValueAnswer?: boolean | undefined;
362
+ TTL?: number | undefined;
363
+ ResourceRecords?: ResourceRecord[] | undefined;
364
+ AliasTarget?: AliasTarget | undefined;
365
+ HealthCheckId?: string | undefined;
366
+ TrafficPolicyInstanceId?: string | undefined;
367
+ CidrRoutingConfig?: CidrRoutingConfig | undefined;
368
+ GeoProximityLocation?: GeoProximityLocation | undefined;
369
369
  }
370
370
  export interface Change {
371
371
  Action: ChangeAction | undefined;
372
372
  ResourceRecordSet: ResourceRecordSet | undefined;
373
373
  }
374
374
  export interface ChangeBatch {
375
- Comment?: string;
375
+ Comment?: string | undefined;
376
376
  Changes: Change[] | undefined;
377
377
  }
378
378
  export interface ChangeResourceRecordSetsRequest {
@@ -385,7 +385,7 @@ export interface ChangeResourceRecordSetsResponse {
385
385
  export declare class InvalidChangeBatch extends __BaseException {
386
386
  readonly name: "InvalidChangeBatch";
387
387
  readonly $fault: "client";
388
- messages?: string[];
388
+ messages?: string[] | undefined;
389
389
  constructor(opts: __ExceptionOptionType<InvalidChangeBatch, __BaseException>);
390
390
  }
391
391
  export declare class NoSuchHealthCheck extends __BaseException {
@@ -394,8 +394,8 @@ export declare class NoSuchHealthCheck extends __BaseException {
394
394
  constructor(opts: __ExceptionOptionType<NoSuchHealthCheck, __BaseException>);
395
395
  }
396
396
  export interface Tag {
397
- Key?: string;
398
- Value?: string;
397
+ Key?: string | undefined;
398
+ Value?: string | undefined;
399
399
  }
400
400
  export declare const TagResourceType: {
401
401
  readonly healthcheck: "healthcheck";
@@ -406,8 +406,8 @@ export type TagResourceType =
406
406
  export interface ChangeTagsForResourceRequest {
407
407
  ResourceType: TagResourceType | undefined;
408
408
  ResourceId: string | undefined;
409
- AddTags?: Tag[];
410
- RemoveTagKeys?: string[];
409
+ AddTags?: Tag[] | undefined;
410
+ RemoveTagKeys?: string[] | undefined;
411
411
  }
412
412
  export interface ChangeTagsForResourceResponse {}
413
413
  export declare class ThrottlingException extends __BaseException {
@@ -420,7 +420,7 @@ export declare class ThrottlingException extends __BaseException {
420
420
  export declare class CidrCollectionAlreadyExistsException extends __BaseException {
421
421
  readonly name: "CidrCollectionAlreadyExistsException";
422
422
  readonly $fault: "client";
423
- Message?: string;
423
+ Message?: string | undefined;
424
424
  constructor(
425
425
  opts: __ExceptionOptionType<
426
426
  CidrCollectionAlreadyExistsException,
@@ -433,14 +433,14 @@ export interface CreateCidrCollectionRequest {
433
433
  CallerReference: string | undefined;
434
434
  }
435
435
  export interface CidrCollection {
436
- Arn?: string;
437
- Id?: string;
438
- Name?: string;
439
- Version?: number;
436
+ Arn?: string | undefined;
437
+ Id?: string | undefined;
438
+ Name?: string | undefined;
439
+ Version?: number | undefined;
440
440
  }
441
441
  export interface CreateCidrCollectionResponse {
442
- Collection?: CidrCollection;
443
- Location?: string;
442
+ Collection?: CidrCollection | undefined;
443
+ Location?: string | undefined;
444
444
  }
445
445
  export declare const InsufficientDataHealthStatus: {
446
446
  readonly Healthy: "Healthy";
@@ -474,24 +474,24 @@ export declare const HealthCheckType: {
474
474
  export type HealthCheckType =
475
475
  (typeof HealthCheckType)[keyof typeof HealthCheckType];
476
476
  export interface HealthCheckConfig {
477
- IPAddress?: string;
478
- Port?: number;
477
+ IPAddress?: string | undefined;
478
+ Port?: number | undefined;
479
479
  Type: HealthCheckType | undefined;
480
- ResourcePath?: string;
481
- FullyQualifiedDomainName?: string;
482
- SearchString?: string;
483
- RequestInterval?: number;
484
- FailureThreshold?: number;
485
- MeasureLatency?: boolean;
486
- Inverted?: boolean;
487
- Disabled?: boolean;
488
- HealthThreshold?: number;
489
- ChildHealthChecks?: string[];
490
- EnableSNI?: boolean;
491
- Regions?: HealthCheckRegion[];
492
- AlarmIdentifier?: AlarmIdentifier;
493
- InsufficientDataHealthStatus?: InsufficientDataHealthStatus;
494
- RoutingControlArn?: string;
480
+ ResourcePath?: string | undefined;
481
+ FullyQualifiedDomainName?: string | undefined;
482
+ SearchString?: string | undefined;
483
+ RequestInterval?: number | undefined;
484
+ FailureThreshold?: number | undefined;
485
+ MeasureLatency?: boolean | undefined;
486
+ Inverted?: boolean | undefined;
487
+ Disabled?: boolean | undefined;
488
+ HealthThreshold?: number | undefined;
489
+ ChildHealthChecks?: string[] | undefined;
490
+ EnableSNI?: boolean | undefined;
491
+ Regions?: HealthCheckRegion[] | undefined;
492
+ AlarmIdentifier?: AlarmIdentifier | undefined;
493
+ InsufficientDataHealthStatus?: InsufficientDataHealthStatus | undefined;
494
+ RoutingControlArn?: string | undefined;
495
495
  }
496
496
  export interface CreateHealthCheckRequest {
497
497
  CallerReference: string | undefined;
@@ -525,19 +525,19 @@ export interface CloudWatchAlarmConfiguration {
525
525
  MetricName: string | undefined;
526
526
  Namespace: string | undefined;
527
527
  Statistic: Statistic | undefined;
528
- Dimensions?: Dimension[];
528
+ Dimensions?: Dimension[] | undefined;
529
529
  }
530
530
  export interface LinkedService {
531
- ServicePrincipal?: string;
532
- Description?: string;
531
+ ServicePrincipal?: string | undefined;
532
+ Description?: string | undefined;
533
533
  }
534
534
  export interface HealthCheck {
535
535
  Id: string | undefined;
536
536
  CallerReference: string | undefined;
537
- LinkedService?: LinkedService;
537
+ LinkedService?: LinkedService | undefined;
538
538
  HealthCheckConfig: HealthCheckConfig | undefined;
539
539
  HealthCheckVersion: number | undefined;
540
- CloudWatchAlarmConfiguration?: CloudWatchAlarmConfiguration;
540
+ CloudWatchAlarmConfiguration?: CloudWatchAlarmConfiguration | undefined;
541
541
  }
542
542
  export interface CreateHealthCheckResponse {
543
543
  HealthCheck: HealthCheck | undefined;
@@ -558,34 +558,34 @@ export declare class TooManyHealthChecks extends __BaseException {
558
558
  );
559
559
  }
560
560
  export interface HostedZoneConfig {
561
- Comment?: string;
562
- PrivateZone?: boolean;
561
+ Comment?: string | undefined;
562
+ PrivateZone?: boolean | undefined;
563
563
  }
564
564
  export interface CreateHostedZoneRequest {
565
565
  Name: string | undefined;
566
- VPC?: VPC;
566
+ VPC?: VPC | undefined;
567
567
  CallerReference: string | undefined;
568
- HostedZoneConfig?: HostedZoneConfig;
569
- DelegationSetId?: string;
568
+ HostedZoneConfig?: HostedZoneConfig | undefined;
569
+ DelegationSetId?: string | undefined;
570
570
  }
571
571
  export interface DelegationSet {
572
- Id?: string;
573
- CallerReference?: string;
572
+ Id?: string | undefined;
573
+ CallerReference?: string | undefined;
574
574
  NameServers: string[] | undefined;
575
575
  }
576
576
  export interface HostedZone {
577
577
  Id: string | undefined;
578
578
  Name: string | undefined;
579
579
  CallerReference: string | undefined;
580
- Config?: HostedZoneConfig;
581
- ResourceRecordSetCount?: number;
582
- LinkedService?: LinkedService;
580
+ Config?: HostedZoneConfig | undefined;
581
+ ResourceRecordSetCount?: number | undefined;
582
+ LinkedService?: LinkedService | undefined;
583
583
  }
584
584
  export interface CreateHostedZoneResponse {
585
585
  HostedZone: HostedZone | undefined;
586
586
  ChangeInfo: ChangeInfo | undefined;
587
587
  DelegationSet: DelegationSet | undefined;
588
- VPC?: VPC;
588
+ VPC?: VPC | undefined;
589
589
  Location: string | undefined;
590
590
  }
591
591
  export declare class DelegationSetNotAvailable extends __BaseException {
@@ -634,22 +634,22 @@ export interface CreateKeySigningKeyRequest {
634
634
  Status: string | undefined;
635
635
  }
636
636
  export interface KeySigningKey {
637
- Name?: string;
638
- KmsArn?: string;
639
- Flag?: number;
640
- SigningAlgorithmMnemonic?: string;
641
- SigningAlgorithmType?: number;
642
- DigestAlgorithmMnemonic?: string;
643
- DigestAlgorithmType?: number;
644
- KeyTag?: number;
645
- DigestValue?: string;
646
- PublicKey?: string;
647
- DSRecord?: string;
648
- DNSKEYRecord?: string;
649
- Status?: string;
650
- StatusMessage?: string;
651
- CreatedDate?: Date;
652
- LastModifiedDate?: Date;
637
+ Name?: string | undefined;
638
+ KmsArn?: string | undefined;
639
+ Flag?: number | undefined;
640
+ SigningAlgorithmMnemonic?: string | undefined;
641
+ SigningAlgorithmType?: number | undefined;
642
+ DigestAlgorithmMnemonic?: string | undefined;
643
+ DigestAlgorithmType?: number | undefined;
644
+ KeyTag?: number | undefined;
645
+ DigestValue?: string | undefined;
646
+ PublicKey?: string | undefined;
647
+ DSRecord?: string | undefined;
648
+ DNSKEYRecord?: string | undefined;
649
+ Status?: string | undefined;
650
+ StatusMessage?: string | undefined;
651
+ CreatedDate?: Date | undefined;
652
+ LastModifiedDate?: Date | undefined;
653
653
  }
654
654
  export interface CreateKeySigningKeyResponse {
655
655
  ChangeInfo: ChangeInfo | undefined;
@@ -724,7 +724,7 @@ export declare class QueryLoggingConfigAlreadyExists extends __BaseException {
724
724
  }
725
725
  export interface CreateReusableDelegationSetRequest {
726
726
  CallerReference: string | undefined;
727
- HostedZoneId?: string;
727
+ HostedZoneId?: string | undefined;
728
728
  }
729
729
  export interface CreateReusableDelegationSetResponse {
730
730
  DelegationSet: DelegationSet | undefined;
@@ -752,7 +752,7 @@ export declare class HostedZoneNotFound extends __BaseException {
752
752
  export interface CreateTrafficPolicyRequest {
753
753
  Name: string | undefined;
754
754
  Document: string | undefined;
755
- Comment?: string;
755
+ Comment?: string | undefined;
756
756
  }
757
757
  export interface TrafficPolicy {
758
758
  Id: string | undefined;
@@ -760,7 +760,7 @@ export interface TrafficPolicy {
760
760
  Name: string | undefined;
761
761
  Type: RRType | undefined;
762
762
  Document: string | undefined;
763
- Comment?: string;
763
+ Comment?: string | undefined;
764
764
  }
765
765
  export interface CreateTrafficPolicyResponse {
766
766
  TrafficPolicy: TrafficPolicy | undefined;
@@ -836,7 +836,7 @@ export declare class TrafficPolicyInstanceAlreadyExists extends __BaseException
836
836
  export interface CreateTrafficPolicyVersionRequest {
837
837
  Id: string | undefined;
838
838
  Document: string | undefined;
839
- Comment?: string;
839
+ Comment?: string | undefined;
840
840
  }
841
841
  export interface CreateTrafficPolicyVersionResponse {
842
842
  TrafficPolicy: TrafficPolicy | undefined;
@@ -892,7 +892,7 @@ export declare class KeySigningKeyInUse extends __BaseException {
892
892
  export declare class CidrCollectionInUseException extends __BaseException {
893
893
  readonly name: "CidrCollectionInUseException";
894
894
  readonly $fault: "client";
895
- Message?: string;
895
+ Message?: string | undefined;
896
896
  constructor(
897
897
  opts: __ExceptionOptionType<CidrCollectionInUseException, __BaseException>
898
898
  );
@@ -998,7 +998,7 @@ export declare class DNSSECNotFound extends __BaseException {
998
998
  export interface DisassociateVPCFromHostedZoneRequest {
999
999
  HostedZoneId: string | undefined;
1000
1000
  VPC: VPC | undefined;
1001
- Comment?: string;
1001
+ Comment?: string | undefined;
1002
1002
  }
1003
1003
  export interface DisassociateVPCFromHostedZoneResponse {
1004
1004
  ChangeInfo: ChangeInfo | undefined;
@@ -1064,25 +1064,25 @@ export interface GetDNSSECRequest {
1064
1064
  HostedZoneId: string | undefined;
1065
1065
  }
1066
1066
  export interface DNSSECStatus {
1067
- ServeSignature?: string;
1068
- StatusMessage?: string;
1067
+ ServeSignature?: string | undefined;
1068
+ StatusMessage?: string | undefined;
1069
1069
  }
1070
1070
  export interface GetDNSSECResponse {
1071
1071
  Status: DNSSECStatus | undefined;
1072
1072
  KeySigningKeys: KeySigningKey[] | undefined;
1073
1073
  }
1074
1074
  export interface GetGeoLocationRequest {
1075
- ContinentCode?: string;
1076
- CountryCode?: string;
1077
- SubdivisionCode?: string;
1075
+ ContinentCode?: string | undefined;
1076
+ CountryCode?: string | undefined;
1077
+ SubdivisionCode?: string | undefined;
1078
1078
  }
1079
1079
  export interface GeoLocationDetails {
1080
- ContinentCode?: string;
1081
- ContinentName?: string;
1082
- CountryCode?: string;
1083
- CountryName?: string;
1084
- SubdivisionCode?: string;
1085
- SubdivisionName?: string;
1080
+ ContinentCode?: string | undefined;
1081
+ ContinentName?: string | undefined;
1082
+ CountryCode?: string | undefined;
1083
+ CountryName?: string | undefined;
1084
+ SubdivisionCode?: string | undefined;
1085
+ SubdivisionName?: string | undefined;
1086
1086
  }
1087
1087
  export interface GetGeoLocationResponse {
1088
1088
  GeoLocationDetails: GeoLocationDetails | undefined;
@@ -1113,13 +1113,13 @@ export interface GetHealthCheckLastFailureReasonRequest {
1113
1113
  HealthCheckId: string | undefined;
1114
1114
  }
1115
1115
  export interface StatusReport {
1116
- Status?: string;
1117
- CheckedTime?: Date;
1116
+ Status?: string | undefined;
1117
+ CheckedTime?: Date | undefined;
1118
1118
  }
1119
1119
  export interface HealthCheckObservation {
1120
- Region?: HealthCheckRegion;
1121
- IPAddress?: string;
1122
- StatusReport?: StatusReport;
1120
+ Region?: HealthCheckRegion | undefined;
1121
+ IPAddress?: string | undefined;
1122
+ StatusReport?: StatusReport | undefined;
1123
1123
  }
1124
1124
  export interface GetHealthCheckLastFailureReasonResponse {
1125
1125
  HealthCheckObservations: HealthCheckObservation[] | undefined;
@@ -1135,8 +1135,8 @@ export interface GetHostedZoneRequest {
1135
1135
  }
1136
1136
  export interface GetHostedZoneResponse {
1137
1137
  HostedZone: HostedZone | undefined;
1138
- DelegationSet?: DelegationSet;
1139
- VPCs?: VPC[];
1138
+ DelegationSet?: DelegationSet | undefined;
1139
+ VPCs?: VPC[] | undefined;
1140
1140
  }
1141
1141
  export interface GetHostedZoneCountRequest {}
1142
1142
  export interface GetHostedZoneCountResponse {
@@ -1215,75 +1215,75 @@ export interface GetTrafficPolicyInstanceCountResponse {
1215
1215
  }
1216
1216
  export interface ListCidrBlocksRequest {
1217
1217
  CollectionId: string | undefined;
1218
- LocationName?: string;
1219
- NextToken?: string;
1220
- MaxResults?: number;
1218
+ LocationName?: string | undefined;
1219
+ NextToken?: string | undefined;
1220
+ MaxResults?: number | undefined;
1221
1221
  }
1222
1222
  export interface CidrBlockSummary {
1223
- CidrBlock?: string;
1224
- LocationName?: string;
1223
+ CidrBlock?: string | undefined;
1224
+ LocationName?: string | undefined;
1225
1225
  }
1226
1226
  export interface ListCidrBlocksResponse {
1227
- NextToken?: string;
1228
- CidrBlocks?: CidrBlockSummary[];
1227
+ NextToken?: string | undefined;
1228
+ CidrBlocks?: CidrBlockSummary[] | undefined;
1229
1229
  }
1230
1230
  export declare class NoSuchCidrLocationException extends __BaseException {
1231
1231
  readonly name: "NoSuchCidrLocationException";
1232
1232
  readonly $fault: "client";
1233
- Message?: string;
1233
+ Message?: string | undefined;
1234
1234
  constructor(
1235
1235
  opts: __ExceptionOptionType<NoSuchCidrLocationException, __BaseException>
1236
1236
  );
1237
1237
  }
1238
1238
  export interface ListCidrCollectionsRequest {
1239
- NextToken?: string;
1240
- MaxResults?: number;
1239
+ NextToken?: string | undefined;
1240
+ MaxResults?: number | undefined;
1241
1241
  }
1242
1242
  export interface CollectionSummary {
1243
- Arn?: string;
1244
- Id?: string;
1245
- Name?: string;
1246
- Version?: number;
1243
+ Arn?: string | undefined;
1244
+ Id?: string | undefined;
1245
+ Name?: string | undefined;
1246
+ Version?: number | undefined;
1247
1247
  }
1248
1248
  export interface ListCidrCollectionsResponse {
1249
- NextToken?: string;
1250
- CidrCollections?: CollectionSummary[];
1249
+ NextToken?: string | undefined;
1250
+ CidrCollections?: CollectionSummary[] | undefined;
1251
1251
  }
1252
1252
  export interface ListCidrLocationsRequest {
1253
1253
  CollectionId: string | undefined;
1254
- NextToken?: string;
1255
- MaxResults?: number;
1254
+ NextToken?: string | undefined;
1255
+ MaxResults?: number | undefined;
1256
1256
  }
1257
1257
  export interface LocationSummary {
1258
- LocationName?: string;
1258
+ LocationName?: string | undefined;
1259
1259
  }
1260
1260
  export interface ListCidrLocationsResponse {
1261
- NextToken?: string;
1262
- CidrLocations?: LocationSummary[];
1261
+ NextToken?: string | undefined;
1262
+ CidrLocations?: LocationSummary[] | undefined;
1263
1263
  }
1264
1264
  export interface ListGeoLocationsRequest {
1265
- StartContinentCode?: string;
1266
- StartCountryCode?: string;
1267
- StartSubdivisionCode?: string;
1268
- MaxItems?: number;
1265
+ StartContinentCode?: string | undefined;
1266
+ StartCountryCode?: string | undefined;
1267
+ StartSubdivisionCode?: string | undefined;
1268
+ MaxItems?: number | undefined;
1269
1269
  }
1270
1270
  export interface ListGeoLocationsResponse {
1271
1271
  GeoLocationDetailsList: GeoLocationDetails[] | undefined;
1272
1272
  IsTruncated: boolean | undefined;
1273
- NextContinentCode?: string;
1274
- NextCountryCode?: string;
1275
- NextSubdivisionCode?: string;
1273
+ NextContinentCode?: string | undefined;
1274
+ NextCountryCode?: string | undefined;
1275
+ NextSubdivisionCode?: string | undefined;
1276
1276
  MaxItems: number | undefined;
1277
1277
  }
1278
1278
  export interface ListHealthChecksRequest {
1279
- Marker?: string;
1280
- MaxItems?: number;
1279
+ Marker?: string | undefined;
1280
+ MaxItems?: number | undefined;
1281
1281
  }
1282
1282
  export interface ListHealthChecksResponse {
1283
1283
  HealthChecks: HealthCheck[] | undefined;
1284
1284
  Marker: string | undefined;
1285
1285
  IsTruncated: boolean | undefined;
1286
- NextMarker?: string;
1286
+ NextMarker?: string | undefined;
1287
1287
  MaxItems: number | undefined;
1288
1288
  }
1289
1289
  export declare const HostedZoneType: {
@@ -1292,30 +1292,30 @@ export declare const HostedZoneType: {
1292
1292
  export type HostedZoneType =
1293
1293
  (typeof HostedZoneType)[keyof typeof HostedZoneType];
1294
1294
  export interface ListHostedZonesRequest {
1295
- Marker?: string;
1296
- MaxItems?: number;
1297
- DelegationSetId?: string;
1298
- HostedZoneType?: HostedZoneType;
1295
+ Marker?: string | undefined;
1296
+ MaxItems?: number | undefined;
1297
+ DelegationSetId?: string | undefined;
1298
+ HostedZoneType?: HostedZoneType | undefined;
1299
1299
  }
1300
1300
  export interface ListHostedZonesResponse {
1301
1301
  HostedZones: HostedZone[] | undefined;
1302
1302
  Marker: string | undefined;
1303
1303
  IsTruncated: boolean | undefined;
1304
- NextMarker?: string;
1304
+ NextMarker?: string | undefined;
1305
1305
  MaxItems: number | undefined;
1306
1306
  }
1307
1307
  export interface ListHostedZonesByNameRequest {
1308
- DNSName?: string;
1309
- HostedZoneId?: string;
1310
- MaxItems?: number;
1308
+ DNSName?: string | undefined;
1309
+ HostedZoneId?: string | undefined;
1310
+ MaxItems?: number | undefined;
1311
1311
  }
1312
1312
  export interface ListHostedZonesByNameResponse {
1313
1313
  HostedZones: HostedZone[] | undefined;
1314
- DNSName?: string;
1315
- HostedZoneId?: string;
1314
+ DNSName?: string | undefined;
1315
+ HostedZoneId?: string | undefined;
1316
1316
  IsTruncated: boolean | undefined;
1317
- NextDNSName?: string;
1318
- NextHostedZoneId?: string;
1317
+ NextDNSName?: string | undefined;
1318
+ NextHostedZoneId?: string | undefined;
1319
1319
  MaxItems: number | undefined;
1320
1320
  }
1321
1321
  export declare class InvalidPaginationToken extends __BaseException {
@@ -1328,12 +1328,12 @@ export declare class InvalidPaginationToken extends __BaseException {
1328
1328
  export interface ListHostedZonesByVPCRequest {
1329
1329
  VPCId: string | undefined;
1330
1330
  VPCRegion: VPCRegion | undefined;
1331
- MaxItems?: number;
1332
- NextToken?: string;
1331
+ MaxItems?: number | undefined;
1332
+ NextToken?: string | undefined;
1333
1333
  }
1334
1334
  export interface HostedZoneOwner {
1335
- OwningAccount?: string;
1336
- OwningService?: string;
1335
+ OwningAccount?: string | undefined;
1336
+ OwningService?: string | undefined;
1337
1337
  }
1338
1338
  export interface HostedZoneSummary {
1339
1339
  HostedZoneId: string | undefined;
@@ -1343,41 +1343,41 @@ export interface HostedZoneSummary {
1343
1343
  export interface ListHostedZonesByVPCResponse {
1344
1344
  HostedZoneSummaries: HostedZoneSummary[] | undefined;
1345
1345
  MaxItems: number | undefined;
1346
- NextToken?: string;
1346
+ NextToken?: string | undefined;
1347
1347
  }
1348
1348
  export interface ListQueryLoggingConfigsRequest {
1349
- HostedZoneId?: string;
1350
- NextToken?: string;
1351
- MaxResults?: number;
1349
+ HostedZoneId?: string | undefined;
1350
+ NextToken?: string | undefined;
1351
+ MaxResults?: number | undefined;
1352
1352
  }
1353
1353
  export interface ListQueryLoggingConfigsResponse {
1354
1354
  QueryLoggingConfigs: QueryLoggingConfig[] | undefined;
1355
- NextToken?: string;
1355
+ NextToken?: string | undefined;
1356
1356
  }
1357
1357
  export interface ListResourceRecordSetsRequest {
1358
1358
  HostedZoneId: string | undefined;
1359
- StartRecordName?: string;
1360
- StartRecordType?: RRType;
1361
- StartRecordIdentifier?: string;
1362
- MaxItems?: number;
1359
+ StartRecordName?: string | undefined;
1360
+ StartRecordType?: RRType | undefined;
1361
+ StartRecordIdentifier?: string | undefined;
1362
+ MaxItems?: number | undefined;
1363
1363
  }
1364
1364
  export interface ListResourceRecordSetsResponse {
1365
1365
  ResourceRecordSets: ResourceRecordSet[] | undefined;
1366
1366
  IsTruncated: boolean | undefined;
1367
- NextRecordName?: string;
1368
- NextRecordType?: RRType;
1369
- NextRecordIdentifier?: string;
1367
+ NextRecordName?: string | undefined;
1368
+ NextRecordType?: RRType | undefined;
1369
+ NextRecordIdentifier?: string | undefined;
1370
1370
  MaxItems: number | undefined;
1371
1371
  }
1372
1372
  export interface ListReusableDelegationSetsRequest {
1373
- Marker?: string;
1374
- MaxItems?: number;
1373
+ Marker?: string | undefined;
1374
+ MaxItems?: number | undefined;
1375
1375
  }
1376
1376
  export interface ListReusableDelegationSetsResponse {
1377
1377
  DelegationSets: DelegationSet[] | undefined;
1378
1378
  Marker: string | undefined;
1379
1379
  IsTruncated: boolean | undefined;
1380
- NextMarker?: string;
1380
+ NextMarker?: string | undefined;
1381
1381
  MaxItems: number | undefined;
1382
1382
  }
1383
1383
  export interface ListTagsForResourceRequest {
@@ -1385,9 +1385,9 @@ export interface ListTagsForResourceRequest {
1385
1385
  ResourceId: string | undefined;
1386
1386
  }
1387
1387
  export interface ResourceTagSet {
1388
- ResourceType?: TagResourceType;
1389
- ResourceId?: string;
1390
- Tags?: Tag[];
1388
+ ResourceType?: TagResourceType | undefined;
1389
+ ResourceId?: string | undefined;
1390
+ Tags?: Tag[] | undefined;
1391
1391
  }
1392
1392
  export interface ListTagsForResourceResponse {
1393
1393
  ResourceTagSet: ResourceTagSet | undefined;
@@ -1400,8 +1400,8 @@ export interface ListTagsForResourcesResponse {
1400
1400
  ResourceTagSets: ResourceTagSet[] | undefined;
1401
1401
  }
1402
1402
  export interface ListTrafficPoliciesRequest {
1403
- TrafficPolicyIdMarker?: string;
1404
- MaxItems?: number;
1403
+ TrafficPolicyIdMarker?: string | undefined;
1404
+ MaxItems?: number | undefined;
1405
1405
  }
1406
1406
  export interface TrafficPolicySummary {
1407
1407
  Id: string | undefined;
@@ -1417,52 +1417,52 @@ export interface ListTrafficPoliciesResponse {
1417
1417
  MaxItems: number | undefined;
1418
1418
  }
1419
1419
  export interface ListTrafficPolicyInstancesRequest {
1420
- HostedZoneIdMarker?: string;
1421
- TrafficPolicyInstanceNameMarker?: string;
1422
- TrafficPolicyInstanceTypeMarker?: RRType;
1423
- MaxItems?: number;
1420
+ HostedZoneIdMarker?: string | undefined;
1421
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1422
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1423
+ MaxItems?: number | undefined;
1424
1424
  }
1425
1425
  export interface ListTrafficPolicyInstancesResponse {
1426
1426
  TrafficPolicyInstances: TrafficPolicyInstance[] | undefined;
1427
- HostedZoneIdMarker?: string;
1428
- TrafficPolicyInstanceNameMarker?: string;
1429
- TrafficPolicyInstanceTypeMarker?: RRType;
1427
+ HostedZoneIdMarker?: string | undefined;
1428
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1429
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1430
1430
  IsTruncated: boolean | undefined;
1431
1431
  MaxItems: number | undefined;
1432
1432
  }
1433
1433
  export interface ListTrafficPolicyInstancesByHostedZoneRequest {
1434
1434
  HostedZoneId: string | undefined;
1435
- TrafficPolicyInstanceNameMarker?: string;
1436
- TrafficPolicyInstanceTypeMarker?: RRType;
1437
- MaxItems?: number;
1435
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1436
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1437
+ MaxItems?: number | undefined;
1438
1438
  }
1439
1439
  export interface ListTrafficPolicyInstancesByHostedZoneResponse {
1440
1440
  TrafficPolicyInstances: TrafficPolicyInstance[] | undefined;
1441
- TrafficPolicyInstanceNameMarker?: string;
1442
- TrafficPolicyInstanceTypeMarker?: RRType;
1441
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1442
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1443
1443
  IsTruncated: boolean | undefined;
1444
1444
  MaxItems: number | undefined;
1445
1445
  }
1446
1446
  export interface ListTrafficPolicyInstancesByPolicyRequest {
1447
1447
  TrafficPolicyId: string | undefined;
1448
1448
  TrafficPolicyVersion: number | undefined;
1449
- HostedZoneIdMarker?: string;
1450
- TrafficPolicyInstanceNameMarker?: string;
1451
- TrafficPolicyInstanceTypeMarker?: RRType;
1452
- MaxItems?: number;
1449
+ HostedZoneIdMarker?: string | undefined;
1450
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1451
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1452
+ MaxItems?: number | undefined;
1453
1453
  }
1454
1454
  export interface ListTrafficPolicyInstancesByPolicyResponse {
1455
1455
  TrafficPolicyInstances: TrafficPolicyInstance[] | undefined;
1456
- HostedZoneIdMarker?: string;
1457
- TrafficPolicyInstanceNameMarker?: string;
1458
- TrafficPolicyInstanceTypeMarker?: RRType;
1456
+ HostedZoneIdMarker?: string | undefined;
1457
+ TrafficPolicyInstanceNameMarker?: string | undefined;
1458
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
1459
1459
  IsTruncated: boolean | undefined;
1460
1460
  MaxItems: number | undefined;
1461
1461
  }
1462
1462
  export interface ListTrafficPolicyVersionsRequest {
1463
1463
  Id: string | undefined;
1464
- TrafficPolicyVersionMarker?: string;
1465
- MaxItems?: number;
1464
+ TrafficPolicyVersionMarker?: string | undefined;
1465
+ MaxItems?: number | undefined;
1466
1466
  }
1467
1467
  export interface ListTrafficPolicyVersionsResponse {
1468
1468
  TrafficPolicies: TrafficPolicy[] | undefined;
@@ -1472,21 +1472,21 @@ export interface ListTrafficPolicyVersionsResponse {
1472
1472
  }
1473
1473
  export interface ListVPCAssociationAuthorizationsRequest {
1474
1474
  HostedZoneId: string | undefined;
1475
- NextToken?: string;
1476
- MaxResults?: number;
1475
+ NextToken?: string | undefined;
1476
+ MaxResults?: number | undefined;
1477
1477
  }
1478
1478
  export interface ListVPCAssociationAuthorizationsResponse {
1479
1479
  HostedZoneId: string | undefined;
1480
- NextToken?: string;
1480
+ NextToken?: string | undefined;
1481
1481
  VPCs: VPC[] | undefined;
1482
1482
  }
1483
1483
  export interface TestDNSAnswerRequest {
1484
1484
  HostedZoneId: string | undefined;
1485
1485
  RecordName: string | undefined;
1486
1486
  RecordType: RRType | undefined;
1487
- ResolverIP?: string;
1488
- EDNS0ClientSubnetIP?: string;
1489
- EDNS0ClientSubnetMask?: string;
1487
+ ResolverIP?: string | undefined;
1488
+ EDNS0ClientSubnetIP?: string | undefined;
1489
+ EDNS0ClientSubnetMask?: string | undefined;
1490
1490
  }
1491
1491
  export interface TestDNSAnswerResponse {
1492
1492
  Nameserver: string | undefined;
@@ -1513,29 +1513,29 @@ export type ResettableElementName =
1513
1513
  (typeof ResettableElementName)[keyof typeof ResettableElementName];
1514
1514
  export interface UpdateHealthCheckRequest {
1515
1515
  HealthCheckId: string | undefined;
1516
- HealthCheckVersion?: number;
1517
- IPAddress?: string;
1518
- Port?: number;
1519
- ResourcePath?: string;
1520
- FullyQualifiedDomainName?: string;
1521
- SearchString?: string;
1522
- FailureThreshold?: number;
1523
- Inverted?: boolean;
1524
- Disabled?: boolean;
1525
- HealthThreshold?: number;
1526
- ChildHealthChecks?: string[];
1527
- EnableSNI?: boolean;
1528
- Regions?: HealthCheckRegion[];
1529
- AlarmIdentifier?: AlarmIdentifier;
1530
- InsufficientDataHealthStatus?: InsufficientDataHealthStatus;
1531
- ResetElements?: ResettableElementName[];
1516
+ HealthCheckVersion?: number | undefined;
1517
+ IPAddress?: string | undefined;
1518
+ Port?: number | undefined;
1519
+ ResourcePath?: string | undefined;
1520
+ FullyQualifiedDomainName?: string | undefined;
1521
+ SearchString?: string | undefined;
1522
+ FailureThreshold?: number | undefined;
1523
+ Inverted?: boolean | undefined;
1524
+ Disabled?: boolean | undefined;
1525
+ HealthThreshold?: number | undefined;
1526
+ ChildHealthChecks?: string[] | undefined;
1527
+ EnableSNI?: boolean | undefined;
1528
+ Regions?: HealthCheckRegion[] | undefined;
1529
+ AlarmIdentifier?: AlarmIdentifier | undefined;
1530
+ InsufficientDataHealthStatus?: InsufficientDataHealthStatus | undefined;
1531
+ ResetElements?: ResettableElementName[] | undefined;
1532
1532
  }
1533
1533
  export interface UpdateHealthCheckResponse {
1534
1534
  HealthCheck: HealthCheck | undefined;
1535
1535
  }
1536
1536
  export interface UpdateHostedZoneCommentRequest {
1537
1537
  Id: string | undefined;
1538
- Comment?: string;
1538
+ Comment?: string | undefined;
1539
1539
  }
1540
1540
  export interface UpdateHostedZoneCommentResponse {
1541
1541
  HostedZone: HostedZone | undefined;