@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.
@@ -120,7 +120,7 @@ export interface ChangeInfo {
120
120
  * <p>A comment you can provide.</p>
121
121
  * @public
122
122
  */
123
- Comment?: string;
123
+ Comment?: string | undefined;
124
124
  }
125
125
  /**
126
126
  * @public
@@ -781,12 +781,12 @@ export interface VPC {
781
781
  * in.</p>
782
782
  * @public
783
783
  */
784
- VPCRegion?: VPCRegion;
784
+ VPCRegion?: VPCRegion | undefined;
785
785
  /**
786
786
  * <p>(Private hosted zones only) The ID of an Amazon VPC. </p>
787
787
  * @public
788
788
  */
789
- VPCId?: string;
789
+ VPCId?: string | undefined;
790
790
  }
791
791
  /**
792
792
  * <p>A complex type that contains information about the request to associate a VPC with a
@@ -813,7 +813,7 @@ export interface AssociateVPCWithHostedZoneRequest {
813
813
  * <i>Optional:</i> A comment about the association request.</p>
814
814
  * @public
815
815
  */
816
- Comment?: string;
816
+ Comment?: string | undefined;
817
817
  }
818
818
  /**
819
819
  * <p>A complex type that contains the response information for the
@@ -1008,7 +1008,7 @@ export interface ChangeCidrCollectionRequest {
1008
1008
  * </ul>
1009
1009
  * @public
1010
1010
  */
1011
- CollectionVersion?: number;
1011
+ CollectionVersion?: number | undefined;
1012
1012
  /**
1013
1013
  * <p> Information about changes to a CIDR collection.</p>
1014
1014
  * @public
@@ -1034,7 +1034,7 @@ export interface ChangeCidrCollectionResponse {
1034
1034
  export declare class CidrBlockInUseException extends __BaseException {
1035
1035
  readonly name: "CidrBlockInUseException";
1036
1036
  readonly $fault: "client";
1037
- Message?: string;
1037
+ Message?: string | undefined;
1038
1038
  /**
1039
1039
  * @internal
1040
1040
  */
@@ -1048,7 +1048,7 @@ export declare class CidrBlockInUseException extends __BaseException {
1048
1048
  export declare class CidrCollectionVersionMismatchException extends __BaseException {
1049
1049
  readonly name: "CidrCollectionVersionMismatchException";
1050
1050
  readonly $fault: "client";
1051
- Message?: string;
1051
+ Message?: string | undefined;
1052
1052
  /**
1053
1053
  * @internal
1054
1054
  */
@@ -1061,7 +1061,7 @@ export declare class CidrCollectionVersionMismatchException extends __BaseExcept
1061
1061
  export declare class NoSuchCidrCollectionException extends __BaseException {
1062
1062
  readonly name: "NoSuchCidrCollectionException";
1063
1063
  readonly $fault: "client";
1064
- Message?: string;
1064
+ Message?: string | undefined;
1065
1065
  /**
1066
1066
  * @internal
1067
1067
  */
@@ -1153,7 +1153,7 @@ export interface GeoLocation {
1153
1153
  * or <code>SubdivisionCode</code> returns an <code>InvalidInput</code> error.</p>
1154
1154
  * @public
1155
1155
  */
1156
- ContinentCode?: string;
1156
+ ContinentCode?: string | undefined;
1157
1157
  /**
1158
1158
  * <p>For geolocation resource record sets, the two-letter code for a country.</p>
1159
1159
  * <p>Amazon Route 53 uses the two-letter country codes that are specified in <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO standard 3166-1
@@ -1162,7 +1162,7 @@ export interface GeoLocation {
1162
1162
  * Ukraine.</p>
1163
1163
  * @public
1164
1164
  */
1165
- CountryCode?: string;
1165
+ CountryCode?: string | undefined;
1166
1166
  /**
1167
1167
  * <p>For geolocation resource record sets, the two-letter code for a state of the United
1168
1168
  * States. Route 53 doesn't support any other values for <code>SubdivisionCode</code>. For
@@ -1172,7 +1172,7 @@ export interface GeoLocation {
1172
1172
  * <code>CountryCode</code>. </p>
1173
1173
  * @public
1174
1174
  */
1175
- SubdivisionCode?: string;
1175
+ SubdivisionCode?: string | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * <p>
@@ -1207,7 +1207,7 @@ export interface GeoProximityLocation {
1207
1207
  * <p> The Amazon Web Services Region the resource you are directing DNS traffic to, is in. </p>
1208
1208
  * @public
1209
1209
  */
1210
- AWSRegion?: string;
1210
+ AWSRegion?: string | undefined;
1211
1211
  /**
1212
1212
  * <p>
1213
1213
  * Specifies an Amazon Web Services Local Zone Group.
@@ -1219,12 +1219,12 @@ export interface GeoProximityLocation {
1219
1219
  * belongs to the Local Zone Group <code>us-west-2-den-1</code>.</p>
1220
1220
  * @public
1221
1221
  */
1222
- LocalZoneGroup?: string;
1222
+ LocalZoneGroup?: string | undefined;
1223
1223
  /**
1224
1224
  * <p> Contains the longitude and latitude for a geographic region. </p>
1225
1225
  * @public
1226
1226
  */
1227
- Coordinates?: Coordinates;
1227
+ Coordinates?: Coordinates | undefined;
1228
1228
  /**
1229
1229
  * <p>
1230
1230
  * The bias increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
@@ -1243,7 +1243,7 @@ export interface GeoProximityLocation {
1243
1243
  * </ul>
1244
1244
  * @public
1245
1245
  */
1246
- Bias?: number;
1246
+ Bias?: number | undefined;
1247
1247
  }
1248
1248
  /**
1249
1249
  * @public
@@ -1489,7 +1489,7 @@ export interface ResourceRecordSet {
1489
1489
  * Policy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
1490
1490
  * @public
1491
1491
  */
1492
- SetIdentifier?: string;
1492
+ SetIdentifier?: string | undefined;
1493
1493
  /**
1494
1494
  * <p>
1495
1495
  * <i>Weighted resource record sets only:</i> Among resource record sets
@@ -1532,7 +1532,7 @@ export interface ResourceRecordSet {
1532
1532
  * </ul>
1533
1533
  * @public
1534
1534
  */
1535
- Weight?: number;
1535
+ Weight?: number | undefined;
1536
1536
  /**
1537
1537
  * <p>
1538
1538
  * <i>Latency-based resource record sets only:</i> The Amazon EC2 Region
@@ -1568,7 +1568,7 @@ export interface ResourceRecordSet {
1568
1568
  * </ul>
1569
1569
  * @public
1570
1570
  */
1571
- Region?: ResourceRecordSetRegion;
1571
+ Region?: ResourceRecordSetRegion | undefined;
1572
1572
  /**
1573
1573
  * <p>
1574
1574
  * <i>Geolocation resource record sets only:</i> A complex type that lets you
@@ -1605,7 +1605,7 @@ export interface ResourceRecordSet {
1605
1605
  * sets.</p>
1606
1606
  * @public
1607
1607
  */
1608
- GeoLocation?: GeoLocation;
1608
+ GeoLocation?: GeoLocation | undefined;
1609
1609
  /**
1610
1610
  * <p>
1611
1611
  * <i>Failover resource record sets only:</i> To configure failover, you
@@ -1662,7 +1662,7 @@ export interface ResourceRecordSet {
1662
1662
  * </ul>
1663
1663
  * @public
1664
1664
  */
1665
- Failover?: ResourceRecordSetFailover;
1665
+ Failover?: ResourceRecordSetFailover | undefined;
1666
1666
  /**
1667
1667
  * <p>
1668
1668
  * <i>Multivalue answer resource record sets only</i>: To route traffic
@@ -1700,7 +1700,7 @@ export interface ResourceRecordSet {
1700
1700
  * <p>You can't create multivalue answer alias records.</p>
1701
1701
  * @public
1702
1702
  */
1703
- MultiValueAnswer?: boolean;
1703
+ MultiValueAnswer?: boolean | undefined;
1704
1704
  /**
1705
1705
  * <p>The resource record cache time to live (TTL), in seconds. Note the following:</p>
1706
1706
  * <ul>
@@ -1730,7 +1730,7 @@ export interface ResourceRecordSet {
1730
1730
  * </ul>
1731
1731
  * @public
1732
1732
  */
1733
- TTL?: number;
1733
+ TTL?: number | undefined;
1734
1734
  /**
1735
1735
  * <p>Information about the resource records to act upon.</p>
1736
1736
  * <note>
@@ -1739,7 +1739,7 @@ export interface ResourceRecordSet {
1739
1739
  * </note>
1740
1740
  * @public
1741
1741
  */
1742
- ResourceRecords?: ResourceRecord[];
1742
+ ResourceRecords?: ResourceRecord[] | undefined;
1743
1743
  /**
1744
1744
  * <p>
1745
1745
  * <i>Alias resource record sets only:</i> Information about the Amazon Web Services resource, such as a CloudFront distribution or an Amazon S3 bucket, that
@@ -1759,7 +1759,7 @@ export interface ResourceRecordSet {
1759
1759
  * </ul>
1760
1760
  * @public
1761
1761
  */
1762
- AliasTarget?: AliasTarget;
1762
+ AliasTarget?: AliasTarget | undefined;
1763
1763
  /**
1764
1764
  * <p>If you want Amazon Route 53 to return this resource record set in response to a DNS
1765
1765
  * query only when the status of a health check is healthy, include the
@@ -1915,7 +1915,7 @@ export interface ResourceRecordSet {
1915
1915
  * </important>
1916
1916
  * @public
1917
1917
  */
1918
- HealthCheckId?: string;
1918
+ HealthCheckId?: string | undefined;
1919
1919
  /**
1920
1920
  * <p>When you create a traffic policy instance, Amazon Route 53 automatically creates a
1921
1921
  * resource record set. <code>TrafficPolicyInstanceId</code> is the ID of the traffic
@@ -1930,7 +1930,7 @@ export interface ResourceRecordSet {
1930
1930
  * </important>
1931
1931
  * @public
1932
1932
  */
1933
- TrafficPolicyInstanceId?: string;
1933
+ TrafficPolicyInstanceId?: string | undefined;
1934
1934
  /**
1935
1935
  * <p>The object that is specified in resource record set object when you are linking a
1936
1936
  * resource record set to a CIDR location.</p>
@@ -1938,7 +1938,7 @@ export interface ResourceRecordSet {
1938
1938
  * record. <code>CollectionId</code> is still required for default record.</p>
1939
1939
  * @public
1940
1940
  */
1941
- CidrRoutingConfig?: CidrRoutingConfig;
1941
+ CidrRoutingConfig?: CidrRoutingConfig | undefined;
1942
1942
  /**
1943
1943
  * <p>
1944
1944
  * <i> GeoproximityLocation resource record sets only:</i> A complex type that lets you control how
@@ -1946,7 +1946,7 @@ export interface ResourceRecordSet {
1946
1946
  * query and your resources. </p>
1947
1947
  * @public
1948
1948
  */
1949
- GeoProximityLocation?: GeoProximityLocation;
1949
+ GeoProximityLocation?: GeoProximityLocation | undefined;
1950
1950
  }
1951
1951
  /**
1952
1952
  * <p>The information for each resource record set that you want to change.</p>
@@ -2000,7 +2000,7 @@ export interface ChangeBatch {
2000
2000
  * request.</p>
2001
2001
  * @public
2002
2002
  */
2003
- Comment?: string;
2003
+ Comment?: string | undefined;
2004
2004
  /**
2005
2005
  * <p>Information about the changes to make to the record sets.</p>
2006
2006
  * @public
@@ -2051,7 +2051,7 @@ export declare class InvalidChangeBatch extends __BaseException {
2051
2051
  * <p></p>
2052
2052
  * @public
2053
2053
  */
2054
- messages?: string[];
2054
+ messages?: string[] | undefined;
2055
2055
  /**
2056
2056
  * @internal
2057
2057
  */
@@ -2104,7 +2104,7 @@ export interface Tag {
2104
2104
  * </ul>
2105
2105
  * @public
2106
2106
  */
2107
- Key?: string;
2107
+ Key?: string | undefined;
2108
2108
  /**
2109
2109
  * <p>The value of <code>Value</code> depends on the operation that you want to
2110
2110
  * perform:</p>
@@ -2122,7 +2122,7 @@ export interface Tag {
2122
2122
  * </ul>
2123
2123
  * @public
2124
2124
  */
2125
- Value?: string;
2125
+ Value?: string | undefined;
2126
2126
  }
2127
2127
  /**
2128
2128
  * @public
@@ -2167,13 +2167,13 @@ export interface ChangeTagsForResourceRequest {
2167
2167
  * <p>You can add a maximum of 10 tags to a health check or a hosted zone.</p>
2168
2168
  * @public
2169
2169
  */
2170
- AddTags?: Tag[];
2170
+ AddTags?: Tag[] | undefined;
2171
2171
  /**
2172
2172
  * <p>A complex type that contains a list of the tags that you want to delete from the
2173
2173
  * specified health check or hosted zone. You can specify up to 10 keys.</p>
2174
2174
  * @public
2175
2175
  */
2176
- RemoveTagKeys?: string[];
2176
+ RemoveTagKeys?: string[] | undefined;
2177
2177
  }
2178
2178
  /**
2179
2179
  * <p>Empty response for the request.</p>
@@ -2200,7 +2200,7 @@ export declare class ThrottlingException extends __BaseException {
2200
2200
  export declare class CidrCollectionAlreadyExistsException extends __BaseException {
2201
2201
  readonly name: "CidrCollectionAlreadyExistsException";
2202
2202
  readonly $fault: "client";
2203
- Message?: string;
2203
+ Message?: string | undefined;
2204
2204
  /**
2205
2205
  * @internal
2206
2206
  */
@@ -2236,24 +2236,24 @@ export interface CidrCollection {
2236
2236
  * another Amazon Web Services account.</p>
2237
2237
  * @public
2238
2238
  */
2239
- Arn?: string;
2239
+ Arn?: string | undefined;
2240
2240
  /**
2241
2241
  * <p>The unique ID of the CIDR collection.</p>
2242
2242
  * @public
2243
2243
  */
2244
- Id?: string;
2244
+ Id?: string | undefined;
2245
2245
  /**
2246
2246
  * <p>The name of a CIDR collection.</p>
2247
2247
  * @public
2248
2248
  */
2249
- Name?: string;
2249
+ Name?: string | undefined;
2250
2250
  /**
2251
2251
  * <p>A sequential counter that Route 53 sets to 1 when you create a CIDR
2252
2252
  * collection and increments by 1 each time you update settings for the CIDR
2253
2253
  * collection.</p>
2254
2254
  * @public
2255
2255
  */
2256
- Version?: number;
2256
+ Version?: number | undefined;
2257
2257
  }
2258
2258
  /**
2259
2259
  * @public
@@ -2263,12 +2263,12 @@ export interface CreateCidrCollectionResponse {
2263
2263
  * <p>A complex type that contains information about the CIDR collection.</p>
2264
2264
  * @public
2265
2265
  */
2266
- Collection?: CidrCollection;
2266
+ Collection?: CidrCollection | undefined;
2267
2267
  /**
2268
2268
  * <p>A unique URL that represents the location for the CIDR collection.</p>
2269
2269
  * @public
2270
2270
  */
2271
- Location?: string;
2271
+ Location?: string | undefined;
2272
2272
  }
2273
2273
  /**
2274
2274
  * @public
@@ -2379,7 +2379,7 @@ export interface HealthCheckConfig {
2379
2379
  * <code>CLOUDWATCH_METRIC</code>, omit <code>IPAddress</code>.</p>
2380
2380
  * @public
2381
2381
  */
2382
- IPAddress?: string;
2382
+ IPAddress?: string | undefined;
2383
2383
  /**
2384
2384
  * <p>The port on the endpoint that you want Amazon Route 53 to perform health checks
2385
2385
  * on.</p>
@@ -2390,7 +2390,7 @@ export interface HealthCheckConfig {
2390
2390
  * </note>
2391
2391
  * @public
2392
2392
  */
2393
- Port?: number;
2393
+ Port?: number | undefined;
2394
2394
  /**
2395
2395
  * <p>The type of health check that you want to create, which indicates how Amazon Route 53
2396
2396
  * determines whether an endpoint is healthy.</p>
@@ -2474,7 +2474,7 @@ export interface HealthCheckConfig {
2474
2474
  * example, <code>/welcome.html?language=jp&login=y</code>. </p>
2475
2475
  * @public
2476
2476
  */
2477
- ResourcePath?: string;
2477
+ ResourcePath?: string | undefined;
2478
2478
  /**
2479
2479
  * <p>Amazon Route 53 behavior depends on whether you specify a value for
2480
2480
  * <code>IPAddress</code>.</p>
@@ -2545,7 +2545,7 @@ export interface HealthCheckConfig {
2545
2545
  * 53 doesn't pass a <code>Host</code> header.</p>
2546
2546
  * @public
2547
2547
  */
2548
- FullyQualifiedDomainName?: string;
2548
+ FullyQualifiedDomainName?: string | undefined;
2549
2549
  /**
2550
2550
  * <p>If the value of Type is <code>HTTP_STR_MATCH</code> or <code>HTTPS_STR_MATCH</code>,
2551
2551
  * the string that you want Amazon Route 53 to search for in the response body from the
@@ -2555,7 +2555,7 @@ export interface HealthCheckConfig {
2555
2555
  * body. </p>
2556
2556
  * @public
2557
2557
  */
2558
- SearchString?: string;
2558
+ SearchString?: string | undefined;
2559
2559
  /**
2560
2560
  * <p>The number of seconds between the time that Amazon Route 53 gets a response from your
2561
2561
  * endpoint and the time that it sends the next health check request. Each Route 53 health
@@ -2568,7 +2568,7 @@ export interface HealthCheckConfig {
2568
2568
  * <code>30</code> seconds.</p>
2569
2569
  * @public
2570
2570
  */
2571
- RequestInterval?: number;
2571
+ RequestInterval?: number | undefined;
2572
2572
  /**
2573
2573
  * <p>The number of consecutive health checks that an endpoint must pass or fail for Amazon
2574
2574
  * Route 53 to change the current status of the endpoint from unhealthy to healthy or vice
@@ -2578,7 +2578,7 @@ export interface HealthCheckConfig {
2578
2578
  * three health checks.</p>
2579
2579
  * @public
2580
2580
  */
2581
- FailureThreshold?: number;
2581
+ FailureThreshold?: number | undefined;
2582
2582
  /**
2583
2583
  * <p>Specify whether you want Amazon Route 53 to measure the latency between health
2584
2584
  * checkers in multiple Amazon Web Services regions and your endpoint, and to display
@@ -2590,14 +2590,14 @@ export interface HealthCheckConfig {
2590
2590
  * </important>
2591
2591
  * @public
2592
2592
  */
2593
- MeasureLatency?: boolean;
2593
+ MeasureLatency?: boolean | undefined;
2594
2594
  /**
2595
2595
  * <p>Specify whether you want Amazon Route 53 to invert the status of a health check, for
2596
2596
  * example, to consider a health check unhealthy when it otherwise would be considered
2597
2597
  * healthy.</p>
2598
2598
  * @public
2599
2599
  */
2600
- Inverted?: boolean;
2600
+ Inverted?: boolean | undefined;
2601
2601
  /**
2602
2602
  * <p>Stops Route 53 from performing health checks. When you disable a health check, here's
2603
2603
  * what happens:</p>
@@ -2628,7 +2628,7 @@ export interface HealthCheckConfig {
2628
2628
  * Pricing</a>.</p>
2629
2629
  * @public
2630
2630
  */
2631
- Disabled?: boolean;
2631
+ Disabled?: boolean | undefined;
2632
2632
  /**
2633
2633
  * <p>The number of child health checks that are associated with a <code>CALCULATED</code>
2634
2634
  * health check that Amazon Route 53 must consider healthy for the <code>CALCULATED</code>
@@ -2647,14 +2647,14 @@ export interface HealthCheckConfig {
2647
2647
  * </ul>
2648
2648
  * @public
2649
2649
  */
2650
- HealthThreshold?: number;
2650
+ HealthThreshold?: number | undefined;
2651
2651
  /**
2652
2652
  * <p>(CALCULATED Health Checks Only) A complex type that contains one
2653
2653
  * <code>ChildHealthCheck</code> element for each health check that you want to
2654
2654
  * associate with a <code>CALCULATED</code> health check.</p>
2655
2655
  * @public
2656
2656
  */
2657
- ChildHealthChecks?: string[];
2657
+ ChildHealthChecks?: string[] | undefined;
2658
2658
  /**
2659
2659
  * <p>Specify whether you want Amazon Route 53 to send the value of
2660
2660
  * <code>FullyQualifiedDomainName</code> to the endpoint in the
@@ -2678,7 +2678,7 @@ export interface HealthCheckConfig {
2678
2678
  * message.</p>
2679
2679
  * @public
2680
2680
  */
2681
- EnableSNI?: boolean;
2681
+ EnableSNI?: boolean | undefined;
2682
2682
  /**
2683
2683
  * <p>A complex type that contains one <code>Region</code> element for each region from
2684
2684
  * which you want Amazon Route 53 health checkers to check the specified endpoint.</p>
@@ -2691,14 +2691,14 @@ export interface HealthCheckConfig {
2691
2691
  * regions with four different regions). </p>
2692
2692
  * @public
2693
2693
  */
2694
- Regions?: HealthCheckRegion[];
2694
+ Regions?: HealthCheckRegion[] | undefined;
2695
2695
  /**
2696
2696
  * <p>A complex type that identifies the CloudWatch alarm that you want Amazon Route 53
2697
2697
  * health checkers to use to determine whether the specified health check is
2698
2698
  * healthy.</p>
2699
2699
  * @public
2700
2700
  */
2701
- AlarmIdentifier?: AlarmIdentifier;
2701
+ AlarmIdentifier?: AlarmIdentifier | undefined;
2702
2702
  /**
2703
2703
  * <p>When CloudWatch has insufficient data about the metric to determine the alarm state,
2704
2704
  * the status that you want Amazon Route 53 to assign to the health check:</p>
@@ -2723,14 +2723,14 @@ export interface HealthCheckConfig {
2723
2723
  * </ul>
2724
2724
  * @public
2725
2725
  */
2726
- InsufficientDataHealthStatus?: InsufficientDataHealthStatus;
2726
+ InsufficientDataHealthStatus?: InsufficientDataHealthStatus | undefined;
2727
2727
  /**
2728
2728
  * <p>The Amazon Resource Name (ARN) for the Route 53 Application Recovery Controller
2729
2729
  * routing control.</p>
2730
2730
  * <p>For more information about Route 53 Application Recovery Controller, see <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/what-is-route-53-recovery.html">Route 53 Application Recovery Controller Developer Guide.</a>.</p>
2731
2731
  * @public
2732
2732
  */
2733
- RoutingControlArn?: string;
2733
+ RoutingControlArn?: string | undefined;
2734
2734
  }
2735
2735
  /**
2736
2736
  * <p>A complex type that contains the health check request information.</p>
@@ -2880,7 +2880,7 @@ export interface CloudWatchAlarmConfiguration {
2880
2880
  * <i>Amazon CloudWatch User Guide</i>.</p>
2881
2881
  * @public
2882
2882
  */
2883
- Dimensions?: Dimension[];
2883
+ Dimensions?: Dimension[] | undefined;
2884
2884
  }
2885
2885
  /**
2886
2886
  * <p>If a health check or hosted zone was created by another service,
@@ -2896,14 +2896,14 @@ export interface LinkedService {
2896
2896
  * delete it using Amazon Route 53. </p>
2897
2897
  * @public
2898
2898
  */
2899
- ServicePrincipal?: string;
2899
+ ServicePrincipal?: string | undefined;
2900
2900
  /**
2901
2901
  * <p>If the health check or hosted zone was created by another service, an optional
2902
2902
  * description that can be provided by the other service. When a resource is created by
2903
2903
  * another service, you can't edit or delete it using Amazon Route 53. </p>
2904
2904
  * @public
2905
2905
  */
2906
- Description?: string;
2906
+ Description?: string | undefined;
2907
2907
  }
2908
2908
  /**
2909
2909
  * <p>A complex type that contains information about one health check that is associated
@@ -2929,7 +2929,7 @@ export interface HealthCheck {
2929
2929
  * delete it using Amazon Route 53. </p>
2930
2930
  * @public
2931
2931
  */
2932
- LinkedService?: LinkedService;
2932
+ LinkedService?: LinkedService | undefined;
2933
2933
  /**
2934
2934
  * <p>A complex type that contains detailed information about one health check.</p>
2935
2935
  * @public
@@ -2947,7 +2947,7 @@ export interface HealthCheck {
2947
2947
  * 53 is monitoring for this health check.</p>
2948
2948
  * @public
2949
2949
  */
2950
- CloudWatchAlarmConfiguration?: CloudWatchAlarmConfiguration;
2950
+ CloudWatchAlarmConfiguration?: CloudWatchAlarmConfiguration | undefined;
2951
2951
  }
2952
2952
  /**
2953
2953
  * <p>A complex type containing the response information for the new health check.</p>
@@ -3020,12 +3020,12 @@ export interface HostedZoneConfig {
3020
3020
  * <p>Any comments that you want to include about the hosted zone.</p>
3021
3021
  * @public
3022
3022
  */
3023
- Comment?: string;
3023
+ Comment?: string | undefined;
3024
3024
  /**
3025
3025
  * <p>A value that indicates whether this is a private hosted zone.</p>
3026
3026
  * @public
3027
3027
  */
3028
- PrivateZone?: boolean;
3028
+ PrivateZone?: boolean | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * <p>A complex type that contains information about the request to create a public or
@@ -3056,7 +3056,7 @@ export interface CreateHostedZoneRequest {
3056
3056
  * <p>To associate additional Amazon VPCs with the hosted zone, use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_AssociateVPCWithHostedZone.html">AssociateVPCWithHostedZone</a> after you create a hosted zone.</p>
3057
3057
  * @public
3058
3058
  */
3059
- VPC?: VPC;
3059
+ VPC?: VPC | undefined;
3060
3060
  /**
3061
3061
  * <p>A unique string that identifies the request and that allows failed
3062
3062
  * <code>CreateHostedZone</code> requests to be retried without the risk of executing
@@ -3080,7 +3080,7 @@ export interface CreateHostedZoneRequest {
3080
3080
  * <code>HostedZoneConfig</code> and the other elements.</p>
3081
3081
  * @public
3082
3082
  */
3083
- HostedZoneConfig?: HostedZoneConfig;
3083
+ HostedZoneConfig?: HostedZoneConfig | undefined;
3084
3084
  /**
3085
3085
  * <p>If you want to associate a reusable delegation set with this hosted zone, the ID that
3086
3086
  * Amazon Route 53 assigned to the reusable delegation set when you created it.
@@ -3091,7 +3091,7 @@ export interface CreateHostedZoneRequest {
3091
3091
  * <code>ConflictingDomainsExist</code> error.</p>
3092
3092
  * @public
3093
3093
  */
3094
- DelegationSetId?: string;
3094
+ DelegationSetId?: string | undefined;
3095
3095
  }
3096
3096
  /**
3097
3097
  * <p>A complex type that lists the name servers in a delegation set, as well as the
@@ -3103,13 +3103,13 @@ export interface DelegationSet {
3103
3103
  * <p>The ID that Amazon Route 53 assigns to a reusable delegation set.</p>
3104
3104
  * @public
3105
3105
  */
3106
- Id?: string;
3106
+ Id?: string | undefined;
3107
3107
  /**
3108
3108
  * <p>The value that you specified for <code>CallerReference</code> when you created the
3109
3109
  * reusable delegation set.</p>
3110
3110
  * @public
3111
3111
  */
3112
- CallerReference?: string;
3112
+ CallerReference?: string | undefined;
3113
3113
  /**
3114
3114
  * <p>A complex type that contains a list of the authoritative name servers for a hosted
3115
3115
  * zone or for a reusable delegation set.</p>
@@ -3149,19 +3149,19 @@ export interface HostedZone {
3149
3149
  * don't appear in the response.</p>
3150
3150
  * @public
3151
3151
  */
3152
- Config?: HostedZoneConfig;
3152
+ Config?: HostedZoneConfig | undefined;
3153
3153
  /**
3154
3154
  * <p>The number of resource record sets in the hosted zone.</p>
3155
3155
  * @public
3156
3156
  */
3157
- ResourceRecordSetCount?: number;
3157
+ ResourceRecordSetCount?: number | undefined;
3158
3158
  /**
3159
3159
  * <p>If the hosted zone was created by another service, the service that created the hosted
3160
3160
  * zone. When a hosted zone is created by another service, you can't edit or delete it
3161
3161
  * using Route 53. </p>
3162
3162
  * @public
3163
3163
  */
3164
- LinkedService?: LinkedService;
3164
+ LinkedService?: LinkedService | undefined;
3165
3165
  }
3166
3166
  /**
3167
3167
  * <p>A complex type containing the response information for the hosted zone.</p>
@@ -3189,7 +3189,7 @@ export interface CreateHostedZoneResponse {
3189
3189
  * this hosted zone.</p>
3190
3190
  * @public
3191
3191
  */
3192
- VPC?: VPC;
3192
+ VPC?: VPC | undefined;
3193
3193
  /**
3194
3194
  * <p>The unique URL representing the new hosted zone.</p>
3195
3195
  * @public
@@ -3373,7 +3373,7 @@ export interface KeySigningKey {
3373
3373
  * key-signing key in the same hosted zone.</p>
3374
3374
  * @public
3375
3375
  */
3376
- Name?: string;
3376
+ Name?: string | undefined;
3377
3377
  /**
3378
3378
  * <p>The Amazon resource name (ARN) used to identify the customer managed key in Key Management Service (KMS). The <code>KmsArn</code> must be unique for each
3379
3379
  * key-signing key (KSK) in a single hosted zone.</p>
@@ -3420,67 +3420,67 @@ export interface KeySigningKey {
3420
3420
  * concepts</a>.</p>
3421
3421
  * @public
3422
3422
  */
3423
- KmsArn?: string;
3423
+ KmsArn?: string | undefined;
3424
3424
  /**
3425
3425
  * <p>An integer that specifies how the key is used. For key-signing key (KSK), this value
3426
3426
  * is always 257.</p>
3427
3427
  * @public
3428
3428
  */
3429
- Flag?: number;
3429
+ Flag?: number | undefined;
3430
3430
  /**
3431
3431
  * <p>A string used to represent the signing algorithm. This value must follow the
3432
3432
  * guidelines provided by <a href="https://tools.ietf.org/html/rfc8624#section-3.1">RFC-8624 Section 3.1</a>. </p>
3433
3433
  * @public
3434
3434
  */
3435
- SigningAlgorithmMnemonic?: string;
3435
+ SigningAlgorithmMnemonic?: string | undefined;
3436
3436
  /**
3437
3437
  * <p>An integer used to represent the signing algorithm. This value must follow the
3438
3438
  * guidelines provided by <a href="https://tools.ietf.org/html/rfc8624#section-3.1">RFC-8624 Section 3.1</a>. </p>
3439
3439
  * @public
3440
3440
  */
3441
- SigningAlgorithmType?: number;
3441
+ SigningAlgorithmType?: number | undefined;
3442
3442
  /**
3443
3443
  * <p>A string used to represent the delegation signer digest algorithm. This value must
3444
3444
  * follow the guidelines provided by <a href="https://tools.ietf.org/html/rfc8624#section-3.3">RFC-8624 Section 3.3</a>.
3445
3445
  * </p>
3446
3446
  * @public
3447
3447
  */
3448
- DigestAlgorithmMnemonic?: string;
3448
+ DigestAlgorithmMnemonic?: string | undefined;
3449
3449
  /**
3450
3450
  * <p>An integer used to represent the delegation signer digest algorithm. This value must
3451
3451
  * follow the guidelines provided by <a href="https://tools.ietf.org/html/rfc8624#section-3.3">RFC-8624 Section
3452
3452
  * 3.3</a>.</p>
3453
3453
  * @public
3454
3454
  */
3455
- DigestAlgorithmType?: number;
3455
+ DigestAlgorithmType?: number | undefined;
3456
3456
  /**
3457
3457
  * <p>An integer used to identify the DNSSEC record for the domain name. The process used to
3458
3458
  * calculate the value is described in <a href="https://tools.ietf.org/rfc/rfc4034.txt">RFC-4034 Appendix B</a>.</p>
3459
3459
  * @public
3460
3460
  */
3461
- KeyTag?: number;
3461
+ KeyTag?: number | undefined;
3462
3462
  /**
3463
3463
  * <p>A cryptographic digest of a DNSKEY resource record (RR). DNSKEY records are used to
3464
3464
  * publish the public key that resolvers can use to verify DNSSEC signatures that are used
3465
3465
  * to secure certain kinds of information provided by the DNS system.</p>
3466
3466
  * @public
3467
3467
  */
3468
- DigestValue?: string;
3468
+ DigestValue?: string | undefined;
3469
3469
  /**
3470
3470
  * <p>The public key, represented as a Base64 encoding, as required by <a href="https://tools.ietf.org/rfc/rfc4034.txt"> RFC-4034 Page 5</a>.</p>
3471
3471
  * @public
3472
3472
  */
3473
- PublicKey?: string;
3473
+ PublicKey?: string | undefined;
3474
3474
  /**
3475
3475
  * <p>A string that represents a delegation signer (DS) record.</p>
3476
3476
  * @public
3477
3477
  */
3478
- DSRecord?: string;
3478
+ DSRecord?: string | undefined;
3479
3479
  /**
3480
3480
  * <p>A string that represents a DNSKEY record.</p>
3481
3481
  * @public
3482
3482
  */
3483
- DNSKEYRecord?: string;
3483
+ DNSKEYRecord?: string | undefined;
3484
3484
  /**
3485
3485
  * <p>A string that represents the current key-signing key (KSK) status.</p>
3486
3486
  * <p>Status can have one of the following values:</p>
@@ -3514,7 +3514,7 @@ export interface KeySigningKey {
3514
3514
  * </dl>
3515
3515
  * @public
3516
3516
  */
3517
- Status?: string;
3517
+ Status?: string | undefined;
3518
3518
  /**
3519
3519
  * <p>The status message provided for the following key-signing key (KSK) statuses:
3520
3520
  * <code>ACTION_NEEDED</code> or <code>INTERNAL_FAILURE</code>. The status message
@@ -3522,17 +3522,17 @@ export interface KeySigningKey {
3522
3522
  * correct the issue.</p>
3523
3523
  * @public
3524
3524
  */
3525
- StatusMessage?: string;
3525
+ StatusMessage?: string | undefined;
3526
3526
  /**
3527
3527
  * <p>The date when the key-signing key (KSK) was created.</p>
3528
3528
  * @public
3529
3529
  */
3530
- CreatedDate?: Date;
3530
+ CreatedDate?: Date | undefined;
3531
3531
  /**
3532
3532
  * <p>The last time that the key-signing key (KSK) was changed.</p>
3533
3533
  * @public
3534
3534
  */
3535
- LastModifiedDate?: Date;
3535
+ LastModifiedDate?: Date | undefined;
3536
3536
  }
3537
3537
  /**
3538
3538
  * @public
@@ -3745,7 +3745,7 @@ export interface CreateReusableDelegationSetRequest {
3745
3745
  * for that hosted zone.</p>
3746
3746
  * @public
3747
3747
  */
3748
- HostedZoneId?: string;
3748
+ HostedZoneId?: string | undefined;
3749
3749
  }
3750
3750
  /**
3751
3751
  * @public
@@ -3819,7 +3819,7 @@ export interface CreateTrafficPolicyRequest {
3819
3819
  * <p>(Optional) Any comments that you want to include about the traffic policy.</p>
3820
3820
  * @public
3821
3821
  */
3822
- Comment?: string;
3822
+ Comment?: string | undefined;
3823
3823
  }
3824
3824
  /**
3825
3825
  * <p>A complex type that contains settings for a traffic policy.</p>
@@ -3860,7 +3860,7 @@ export interface TrafficPolicy {
3860
3860
  * any.</p>
3861
3861
  * @public
3862
3862
  */
3863
- Comment?: string;
3863
+ Comment?: string | undefined;
3864
3864
  }
3865
3865
  /**
3866
3866
  * <p>A complex type that contains the response information for the
@@ -4121,7 +4121,7 @@ export interface CreateTrafficPolicyVersionRequest {
4121
4121
  * if any.</p>
4122
4122
  * @public
4123
4123
  */
4124
- Comment?: string;
4124
+ Comment?: string | undefined;
4125
4125
  }
4126
4126
  /**
4127
4127
  * <p>A complex type that contains the response information for the
@@ -4270,7 +4270,7 @@ export declare class KeySigningKeyInUse extends __BaseException {
4270
4270
  export declare class CidrCollectionInUseException extends __BaseException {
4271
4271
  readonly name: "CidrCollectionInUseException";
4272
4272
  readonly $fault: "client";
4273
- Message?: string;
4273
+ Message?: string | undefined;
4274
4274
  /**
4275
4275
  * @internal
4276
4276
  */
@@ -4603,7 +4603,7 @@ export interface DisassociateVPCFromHostedZoneRequest {
4603
4603
  * <i>Optional:</i> A comment about the disassociation request.</p>
4604
4604
  * @public
4605
4605
  */
4606
- Comment?: string;
4606
+ Comment?: string | undefined;
4607
4607
  }
4608
4608
  /**
4609
4609
  * <p>A complex type that contains the response information for the disassociate
@@ -4856,14 +4856,14 @@ export interface DNSSECStatus {
4856
4856
  * </dl>
4857
4857
  * @public
4858
4858
  */
4859
- ServeSignature?: string;
4859
+ ServeSignature?: string | undefined;
4860
4860
  /**
4861
4861
  * <p>The status message provided for the following DNSSEC signing status:
4862
4862
  * <code>INTERNAL_FAILURE</code>. The status message includes information about what
4863
4863
  * the problem might be and steps that you can take to correct the issue.</p>
4864
4864
  * @public
4865
4865
  */
4866
- StatusMessage?: string;
4866
+ StatusMessage?: string | undefined;
4867
4867
  }
4868
4868
  /**
4869
4869
  * @public
@@ -4921,7 +4921,7 @@ export interface GetGeoLocationRequest {
4921
4921
  * </ul>
4922
4922
  * @public
4923
4923
  */
4924
- ContinentCode?: string;
4924
+ ContinentCode?: string | undefined;
4925
4925
  /**
4926
4926
  * <p>Amazon Route 53 uses the two-letter country codes that are specified in <a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2">ISO standard 3166-1
4927
4927
  * alpha-2</a>.</p>
@@ -4929,7 +4929,7 @@ export interface GetGeoLocationRequest {
4929
4929
  * Ukraine.</p>
4930
4930
  * @public
4931
4931
  */
4932
- CountryCode?: string;
4932
+ CountryCode?: string | undefined;
4933
4933
  /**
4934
4934
  * <p>The code for the subdivision, such as a particular state within the United States. For
4935
4935
  * a list of US state abbreviations, see <a href="https://pe.usps.com/text/pub28/28apb.htm">Appendix B: Two–Letter State and
@@ -4938,7 +4938,7 @@ export interface GetGeoLocationRequest {
4938
4938
  * API.</p>
4939
4939
  * @public
4940
4940
  */
4941
- SubdivisionCode?: string;
4941
+ SubdivisionCode?: string | undefined;
4942
4942
  }
4943
4943
  /**
4944
4944
  * <p>A complex type that contains the codes and full continent, country, and subdivision
@@ -4950,22 +4950,22 @@ export interface GeoLocationDetails {
4950
4950
  * <p>The two-letter code for the continent.</p>
4951
4951
  * @public
4952
4952
  */
4953
- ContinentCode?: string;
4953
+ ContinentCode?: string | undefined;
4954
4954
  /**
4955
4955
  * <p>The full name of the continent.</p>
4956
4956
  * @public
4957
4957
  */
4958
- ContinentName?: string;
4958
+ ContinentName?: string | undefined;
4959
4959
  /**
4960
4960
  * <p>The two-letter code for the country.</p>
4961
4961
  * @public
4962
4962
  */
4963
- CountryCode?: string;
4963
+ CountryCode?: string | undefined;
4964
4964
  /**
4965
4965
  * <p>The name of the country.</p>
4966
4966
  * @public
4967
4967
  */
4968
- CountryName?: string;
4968
+ CountryName?: string | undefined;
4969
4969
  /**
4970
4970
  * <p>The code for the subdivision, such as a particular state within the United States. For
4971
4971
  * a list of US state abbreviations, see <a href="https://pe.usps.com/text/pub28/28apb.htm">Appendix B: Two–Letter State and
@@ -4974,13 +4974,13 @@ export interface GeoLocationDetails {
4974
4974
  * API.</p>
4975
4975
  * @public
4976
4976
  */
4977
- SubdivisionCode?: string;
4977
+ SubdivisionCode?: string | undefined;
4978
4978
  /**
4979
4979
  * <p>The full name of the subdivision. Route 53 currently supports only states in the
4980
4980
  * United States.</p>
4981
4981
  * @public
4982
4982
  */
4983
- SubdivisionName?: string;
4983
+ SubdivisionName?: string | undefined;
4984
4984
  }
4985
4985
  /**
4986
4986
  * <p>A complex type that contains the response information for the specified geolocation
@@ -5096,14 +5096,14 @@ export interface StatusReport {
5096
5096
  * Amazon Route 53 health checkers.</p>
5097
5097
  * @public
5098
5098
  */
5099
- Status?: string;
5099
+ Status?: string | undefined;
5100
5100
  /**
5101
5101
  * <p>The date and time that the health checker performed the health check in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601 format</a> and Coordinated
5102
5102
  * Universal Time (UTC). For example, the value <code>2017-03-27T17:48:16.751Z</code>
5103
5103
  * represents March 27, 2017 at 17:48:16.751 UTC.</p>
5104
5104
  * @public
5105
5105
  */
5106
- CheckedTime?: Date;
5106
+ CheckedTime?: Date | undefined;
5107
5107
  }
5108
5108
  /**
5109
5109
  * <p>A complex type that contains the last failure reason as reported by one Amazon Route
@@ -5116,19 +5116,19 @@ export interface HealthCheckObservation {
5116
5116
  * <code>StatusReport</code>.</p>
5117
5117
  * @public
5118
5118
  */
5119
- Region?: HealthCheckRegion;
5119
+ Region?: HealthCheckRegion | undefined;
5120
5120
  /**
5121
5121
  * <p>The IP address of the Amazon Route 53 health checker that provided the failure reason
5122
5122
  * in <code>StatusReport</code>.</p>
5123
5123
  * @public
5124
5124
  */
5125
- IPAddress?: string;
5125
+ IPAddress?: string | undefined;
5126
5126
  /**
5127
5127
  * <p>A complex type that contains the last failure reason as reported by one Amazon Route
5128
5128
  * 53 health checker and the time of the failed health check.</p>
5129
5129
  * @public
5130
5130
  */
5131
- StatusReport?: StatusReport;
5131
+ StatusReport?: StatusReport | undefined;
5132
5132
  }
5133
5133
  /**
5134
5134
  * <p>A complex type that contains the response to a
@@ -5204,13 +5204,13 @@ export interface GetHostedZoneResponse {
5204
5204
  * zone.</p>
5205
5205
  * @public
5206
5206
  */
5207
- DelegationSet?: DelegationSet;
5207
+ DelegationSet?: DelegationSet | undefined;
5208
5208
  /**
5209
5209
  * <p>A complex type that contains information about the VPCs that are associated with the
5210
5210
  * specified hosted zone.</p>
5211
5211
  * @public
5212
5212
  */
5213
- VPCs?: VPC[];
5213
+ VPCs?: VPC[] | undefined;
5214
5214
  }
5215
5215
  /**
5216
5216
  * <p>A request to retrieve a count of all the hosted zones that are associated with the
@@ -5534,18 +5534,18 @@ export interface ListCidrBlocksRequest {
5534
5534
  * <p>The name of the CIDR collection location.</p>
5535
5535
  * @public
5536
5536
  */
5537
- LocationName?: string;
5537
+ LocationName?: string | undefined;
5538
5538
  /**
5539
5539
  * <p>An opaque pagination token to indicate where the service is to begin enumerating
5540
5540
  * results.</p>
5541
5541
  * @public
5542
5542
  */
5543
- NextToken?: string;
5543
+ NextToken?: string | undefined;
5544
5544
  /**
5545
5545
  * <p>Maximum number of results you want returned.</p>
5546
5546
  * @public
5547
5547
  */
5548
- MaxResults?: number;
5548
+ MaxResults?: number | undefined;
5549
5549
  }
5550
5550
  /**
5551
5551
  * <p>A complex type that lists the CIDR blocks.</p>
@@ -5556,12 +5556,12 @@ export interface CidrBlockSummary {
5556
5556
  * <p>Value for the CIDR block.</p>
5557
5557
  * @public
5558
5558
  */
5559
- CidrBlock?: string;
5559
+ CidrBlock?: string | undefined;
5560
5560
  /**
5561
5561
  * <p>The location name of the CIDR block.</p>
5562
5562
  * @public
5563
5563
  */
5564
- LocationName?: string;
5564
+ LocationName?: string | undefined;
5565
5565
  }
5566
5566
  /**
5567
5567
  * @public
@@ -5573,12 +5573,12 @@ export interface ListCidrBlocksResponse {
5573
5573
  * <p>If no value is provided, the listing of results starts from the beginning.</p>
5574
5574
  * @public
5575
5575
  */
5576
- NextToken?: string;
5576
+ NextToken?: string | undefined;
5577
5577
  /**
5578
5578
  * <p>A complex type that contains information about the CIDR blocks.</p>
5579
5579
  * @public
5580
5580
  */
5581
- CidrBlocks?: CidrBlockSummary[];
5581
+ CidrBlocks?: CidrBlockSummary[] | undefined;
5582
5582
  }
5583
5583
  /**
5584
5584
  * <p>The CIDR collection location doesn't match any locations in your account.</p>
@@ -5587,7 +5587,7 @@ export interface ListCidrBlocksResponse {
5587
5587
  export declare class NoSuchCidrLocationException extends __BaseException {
5588
5588
  readonly name: "NoSuchCidrLocationException";
5589
5589
  readonly $fault: "client";
5590
- Message?: string;
5590
+ Message?: string | undefined;
5591
5591
  /**
5592
5592
  * @internal
5593
5593
  */
@@ -5603,12 +5603,12 @@ export interface ListCidrCollectionsRequest {
5603
5603
  * <p>If no value is provided, the listing of results starts from the beginning.</p>
5604
5604
  * @public
5605
5605
  */
5606
- NextToken?: string;
5606
+ NextToken?: string | undefined;
5607
5607
  /**
5608
5608
  * <p>The maximum number of CIDR collections to return in the response.</p>
5609
5609
  * @public
5610
5610
  */
5611
- MaxResults?: number;
5611
+ MaxResults?: number | undefined;
5612
5612
  }
5613
5613
  /**
5614
5614
  * <p>A complex type that is an entry in an <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CidrCollection.html">CidrCollection</a>
@@ -5621,24 +5621,24 @@ export interface CollectionSummary {
5621
5621
  * policy or cross-account.</p>
5622
5622
  * @public
5623
5623
  */
5624
- Arn?: string;
5624
+ Arn?: string | undefined;
5625
5625
  /**
5626
5626
  * <p>Unique ID for the CIDR collection.</p>
5627
5627
  * @public
5628
5628
  */
5629
- Id?: string;
5629
+ Id?: string | undefined;
5630
5630
  /**
5631
5631
  * <p>The name of a CIDR collection.</p>
5632
5632
  * @public
5633
5633
  */
5634
- Name?: string;
5634
+ Name?: string | undefined;
5635
5635
  /**
5636
5636
  * <p>A sequential counter that Route 53 sets to 1 when you create a CIDR
5637
5637
  * collection and increments by 1 each time you update settings for the CIDR
5638
5638
  * collection.</p>
5639
5639
  * @public
5640
5640
  */
5641
- Version?: number;
5641
+ Version?: number | undefined;
5642
5642
  }
5643
5643
  /**
5644
5644
  * @public
@@ -5650,12 +5650,12 @@ export interface ListCidrCollectionsResponse {
5650
5650
  * <p>If no value is provided, the listing of results starts from the beginning.</p>
5651
5651
  * @public
5652
5652
  */
5653
- NextToken?: string;
5653
+ NextToken?: string | undefined;
5654
5654
  /**
5655
5655
  * <p>A complex type with information about the CIDR collection.</p>
5656
5656
  * @public
5657
5657
  */
5658
- CidrCollections?: CollectionSummary[];
5658
+ CidrCollections?: CollectionSummary[] | undefined;
5659
5659
  }
5660
5660
  /**
5661
5661
  * @public
@@ -5672,12 +5672,12 @@ export interface ListCidrLocationsRequest {
5672
5672
  * <p>If no value is provided, the listing of results starts from the beginning.</p>
5673
5673
  * @public
5674
5674
  */
5675
- NextToken?: string;
5675
+ NextToken?: string | undefined;
5676
5676
  /**
5677
5677
  * <p>The maximum number of CIDR collection locations to return in the response.</p>
5678
5678
  * @public
5679
5679
  */
5680
- MaxResults?: number;
5680
+ MaxResults?: number | undefined;
5681
5681
  }
5682
5682
  /**
5683
5683
  * <p>A complex type that contains information about the CIDR location.</p>
@@ -5688,7 +5688,7 @@ export interface LocationSummary {
5688
5688
  * <p>A string that specifies a location name.</p>
5689
5689
  * @public
5690
5690
  */
5691
- LocationName?: string;
5691
+ LocationName?: string | undefined;
5692
5692
  }
5693
5693
  /**
5694
5694
  * @public
@@ -5700,12 +5700,12 @@ export interface ListCidrLocationsResponse {
5700
5700
  * <p>If no value is provided, the listing of results starts from the beginning.</p>
5701
5701
  * @public
5702
5702
  */
5703
- NextToken?: string;
5703
+ NextToken?: string | undefined;
5704
5704
  /**
5705
5705
  * <p>A complex type that contains information about the list of CIDR locations.</p>
5706
5706
  * @public
5707
5707
  */
5708
- CidrLocations?: LocationSummary[];
5708
+ CidrLocations?: LocationSummary[] | undefined;
5709
5709
  }
5710
5710
  /**
5711
5711
  * <p>A request to get a list of geographic locations that Amazon Route 53 supports for
@@ -5724,7 +5724,7 @@ export interface ListGeoLocationsRequest {
5724
5724
  * their subdivisions.</p>
5725
5725
  * @public
5726
5726
  */
5727
- StartContinentCode?: string;
5727
+ StartContinentCode?: string | undefined;
5728
5728
  /**
5729
5729
  * <p>The code for the country with which you want to start listing locations that Amazon
5730
5730
  * Route 53 supports for geolocation. If Route 53 has already returned a page or more of
@@ -5733,7 +5733,7 @@ export interface ListGeoLocationsRequest {
5733
5733
  * value in <code>startcountrycode</code> to return the next page of results.</p>
5734
5734
  * @public
5735
5735
  */
5736
- StartCountryCode?: string;
5736
+ StartCountryCode?: string | undefined;
5737
5737
  /**
5738
5738
  * <p>The code for the state of the United States with which you want to start listing
5739
5739
  * locations that Amazon Route 53 supports for geolocation. If Route 53 has already
@@ -5745,7 +5745,7 @@ export interface ListGeoLocationsRequest {
5745
5745
  * <code>startcountrycode</code> and <code>startsubdivisioncode</code>.</p>
5746
5746
  * @public
5747
5747
  */
5748
- StartSubdivisionCode?: string;
5748
+ StartSubdivisionCode?: string | undefined;
5749
5749
  /**
5750
5750
  * <p>(Optional) The maximum number of geolocations to be included in the response body for this
5751
5751
  * request. If more than <code>maxitems</code> geolocations remain to be listed, then the
@@ -5753,7 +5753,7 @@ export interface ListGeoLocationsRequest {
5753
5753
  * <code>true</code>.</p>
5754
5754
  * @public
5755
5755
  */
5756
- MaxItems?: number;
5756
+ MaxItems?: number | undefined;
5757
5757
  }
5758
5758
  /**
5759
5759
  * <p>A complex type containing the response information for the request.</p>
@@ -5784,7 +5784,7 @@ export interface ListGeoLocationsResponse {
5784
5784
  * request.</p>
5785
5785
  * @public
5786
5786
  */
5787
- NextContinentCode?: string;
5787
+ NextContinentCode?: string | undefined;
5788
5788
  /**
5789
5789
  * <p>If <code>IsTruncated</code> is <code>true</code>, you can make a follow-up request to
5790
5790
  * display more locations. Enter the value of <code>NextCountryCode</code> in the
@@ -5792,7 +5792,7 @@ export interface ListGeoLocationsResponse {
5792
5792
  * request.</p>
5793
5793
  * @public
5794
5794
  */
5795
- NextCountryCode?: string;
5795
+ NextCountryCode?: string | undefined;
5796
5796
  /**
5797
5797
  * <p>If <code>IsTruncated</code> is <code>true</code>, you can make a follow-up request to
5798
5798
  * display more locations. Enter the value of <code>NextSubdivisionCode</code> in the
@@ -5800,7 +5800,7 @@ export interface ListGeoLocationsResponse {
5800
5800
  * request.</p>
5801
5801
  * @public
5802
5802
  */
5803
- NextSubdivisionCode?: string;
5803
+ NextSubdivisionCode?: string | undefined;
5804
5804
  /**
5805
5805
  * <p>The value that you specified for <code>MaxItems</code> in the request.</p>
5806
5806
  * @public
@@ -5824,7 +5824,7 @@ export interface ListHealthChecksRequest {
5824
5824
  * <code>false</code>, there are no more health checks to get.</p>
5825
5825
  * @public
5826
5826
  */
5827
- Marker?: string;
5827
+ Marker?: string | undefined;
5828
5828
  /**
5829
5829
  * <p>The maximum number of health checks that you want <code>ListHealthChecks</code> to
5830
5830
  * return in response to the current request. Amazon Route 53 returns a maximum of 1000
@@ -5832,7 +5832,7 @@ export interface ListHealthChecksRequest {
5832
5832
  * only the first 1000 health checks. </p>
5833
5833
  * @public
5834
5834
  */
5835
- MaxItems?: number;
5835
+ MaxItems?: number | undefined;
5836
5836
  }
5837
5837
  /**
5838
5838
  * <p>A complex type that contains the response to a <code>ListHealthChecks</code>
@@ -5868,7 +5868,7 @@ export interface ListHealthChecksResponse {
5868
5868
  * <code>NextMarker</code> in the <code>marker</code> parameter.</p>
5869
5869
  * @public
5870
5870
  */
5871
- NextMarker?: string;
5871
+ NextMarker?: string | undefined;
5872
5872
  /**
5873
5873
  * <p>The value that you specified for the <code>maxitems</code> parameter in the call to
5874
5874
  * <code>ListHealthChecks</code> that produced the current response.</p>
@@ -5904,7 +5904,7 @@ export interface ListHostedZonesRequest {
5904
5904
  * <code>false</code>, there are no more hosted zones to get.</p>
5905
5905
  * @public
5906
5906
  */
5907
- Marker?: string;
5907
+ Marker?: string | undefined;
5908
5908
  /**
5909
5909
  * <p>(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return.
5910
5910
  * If you have more than <code>maxitems</code> hosted zones, the value of
@@ -5913,21 +5913,21 @@ export interface ListHostedZonesRequest {
5913
5913
  * will return if you submit another request.</p>
5914
5914
  * @public
5915
5915
  */
5916
- MaxItems?: number;
5916
+ MaxItems?: number | undefined;
5917
5917
  /**
5918
5918
  * <p>If you're using reusable delegation sets and you want to list all of the hosted zones
5919
5919
  * that are associated with a reusable delegation set, specify the ID of that reusable
5920
5920
  * delegation set. </p>
5921
5921
  * @public
5922
5922
  */
5923
- DelegationSetId?: string;
5923
+ DelegationSetId?: string | undefined;
5924
5924
  /**
5925
5925
  * <p>
5926
5926
  * (Optional) Specifies if the hosted zone is private.
5927
5927
  * </p>
5928
5928
  * @public
5929
5929
  */
5930
- HostedZoneType?: HostedZoneType;
5930
+ HostedZoneType?: HostedZoneType | undefined;
5931
5931
  }
5932
5932
  /**
5933
5933
  * @public
@@ -5962,7 +5962,7 @@ export interface ListHostedZonesResponse {
5962
5962
  * <p>This element is present only if <code>IsTruncated</code> is <code>true</code>.</p>
5963
5963
  * @public
5964
5964
  */
5965
- NextMarker?: string;
5965
+ NextMarker?: string | undefined;
5966
5966
  /**
5967
5967
  * <p>The value that you specified for the <code>maxitems</code> parameter in the call to
5968
5968
  * <code>ListHostedZones</code> that produced the current response.</p>
@@ -5986,7 +5986,7 @@ export interface ListHostedZonesByNameRequest {
5986
5986
  * previous response.</p>
5987
5987
  * @public
5988
5988
  */
5989
- DNSName?: string;
5989
+ DNSName?: string | undefined;
5990
5990
  /**
5991
5991
  * <p>(Optional) For your first request to <code>ListHostedZonesByName</code>, do not
5992
5992
  * include the <code>hostedzoneid</code> parameter.</p>
@@ -5999,7 +5999,7 @@ export interface ListHostedZonesByNameRequest {
5999
5999
  * element from the previous response.</p>
6000
6000
  * @public
6001
6001
  */
6002
- HostedZoneId?: string;
6002
+ HostedZoneId?: string | undefined;
6003
6003
  /**
6004
6004
  * <p>The maximum number of hosted zones to be included in the response body for this
6005
6005
  * request. If you have more than <code>maxitems</code> hosted zones, then the value of the
@@ -6008,7 +6008,7 @@ export interface ListHostedZonesByNameRequest {
6008
6008
  * zone in the next group of <code>maxitems</code> hosted zones. </p>
6009
6009
  * @public
6010
6010
  */
6011
- MaxItems?: number;
6011
+ MaxItems?: number | undefined;
6012
6012
  }
6013
6013
  /**
6014
6014
  * <p>A complex type that contains the response information for the request.</p>
@@ -6026,12 +6026,12 @@ export interface ListHostedZonesByNameResponse {
6026
6026
  * parameter in the request that produced the current response.</p>
6027
6027
  * @public
6028
6028
  */
6029
- DNSName?: string;
6029
+ DNSName?: string | undefined;
6030
6030
  /**
6031
6031
  * <p>The ID that Amazon Route 53 assigned to the hosted zone when you created it.</p>
6032
6032
  * @public
6033
6033
  */
6034
- HostedZoneId?: string;
6034
+ HostedZoneId?: string | undefined;
6035
6035
  /**
6036
6036
  * <p>A flag that indicates whether there are more hosted zones to be listed. If the
6037
6037
  * response was truncated, you can get the next group of <code>maxitems</code> hosted zones
@@ -6050,7 +6050,7 @@ export interface ListHostedZonesByNameResponse {
6050
6050
  * <p>This element is present only if <code>IsTruncated</code> is <code>true</code>.</p>
6051
6051
  * @public
6052
6052
  */
6053
- NextDNSName?: string;
6053
+ NextDNSName?: string | undefined;
6054
6054
  /**
6055
6055
  * <p>If <code>IsTruncated</code> is <code>true</code>, the value of
6056
6056
  * <code>NextHostedZoneId</code> identifies the first hosted zone in the next group of
@@ -6060,7 +6060,7 @@ export interface ListHostedZonesByNameResponse {
6060
6060
  * <p>This element is present only if <code>IsTruncated</code> is <code>true</code>.</p>
6061
6061
  * @public
6062
6062
  */
6063
- NextHostedZoneId?: string;
6063
+ NextHostedZoneId?: string | undefined;
6064
6064
  /**
6065
6065
  * <p>The value that you specified for the <code>maxitems</code> parameter in the call to
6066
6066
  * <code>ListHostedZonesByName</code> that produced the current response.</p>
@@ -6106,7 +6106,7 @@ export interface ListHostedZonesByVPCRequest {
6106
6106
  * you submit another request.</p>
6107
6107
  * @public
6108
6108
  */
6109
- MaxItems?: number;
6109
+ MaxItems?: number | undefined;
6110
6110
  /**
6111
6111
  * <p>If the previous response included a <code>NextToken</code> element, the specified VPC
6112
6112
  * is associated with more hosted zones. To get more hosted zones, submit another
@@ -6117,7 +6117,7 @@ export interface ListHostedZonesByVPCRequest {
6117
6117
  * more hosted zones to get.</p>
6118
6118
  * @public
6119
6119
  */
6120
- NextToken?: string;
6120
+ NextToken?: string | undefined;
6121
6121
  }
6122
6122
  /**
6123
6123
  * <p>A complex type that identifies a hosted zone that a specified Amazon VPC is associated
@@ -6135,7 +6135,7 @@ export interface HostedZoneOwner {
6135
6135
  * zone using the current Amazon Web Services account. </p>
6136
6136
  * @public
6137
6137
  */
6138
- OwningAccount?: string;
6138
+ OwningAccount?: string | undefined;
6139
6139
  /**
6140
6140
  * <p>If an Amazon Web Services service uses its own account to create a hosted zone and
6141
6141
  * associate the specified VPC with that hosted zone, <code>OwningService</code> contains
@@ -6144,7 +6144,7 @@ export interface HostedZoneOwner {
6144
6144
  * of <code>OwningService</code> is <code>efs.amazonaws.com</code>.</p>
6145
6145
  * @public
6146
6146
  */
6147
- OwningService?: string;
6147
+ OwningService?: string | undefined;
6148
6148
  }
6149
6149
  /**
6150
6150
  * <p>In the response to a <code>ListHostedZonesByVPC</code> request, the
@@ -6197,7 +6197,7 @@ export interface ListHostedZonesByVPCResponse {
6197
6197
  * <code>ListHostedZonesByVPC</code> request.</p>
6198
6198
  * @public
6199
6199
  */
6200
- NextToken?: string;
6200
+ NextToken?: string | undefined;
6201
6201
  }
6202
6202
  /**
6203
6203
  * @public
@@ -6210,7 +6210,7 @@ export interface ListQueryLoggingConfigsRequest {
6210
6210
  * all of the configurations that are associated with the current Amazon Web Services account.</p>
6211
6211
  * @public
6212
6212
  */
6213
- HostedZoneId?: string;
6213
+ HostedZoneId?: string | undefined;
6214
6214
  /**
6215
6215
  * <p>(Optional) If the current Amazon Web Services account has more than
6216
6216
  * <code>MaxResults</code> query logging configurations, use <code>NextToken</code> to
@@ -6221,7 +6221,7 @@ export interface ListQueryLoggingConfigsRequest {
6221
6221
  * request.</p>
6222
6222
  * @public
6223
6223
  */
6224
- NextToken?: string;
6224
+ NextToken?: string | undefined;
6225
6225
  /**
6226
6226
  * <p>(Optional) The maximum number of query logging configurations that you want Amazon
6227
6227
  * Route 53 to return in response to the current request. If the current Amazon Web Services account has more than <code>MaxResults</code> configurations, use the
@@ -6230,7 +6230,7 @@ export interface ListQueryLoggingConfigsRequest {
6230
6230
  * configurations.</p>
6231
6231
  * @public
6232
6232
  */
6233
- MaxResults?: number;
6233
+ MaxResults?: number | undefined;
6234
6234
  }
6235
6235
  /**
6236
6236
  * @public
@@ -6252,7 +6252,7 @@ export interface ListQueryLoggingConfigsResponse {
6252
6252
  * <code>NextToken</code> in the next request.</p>
6253
6253
  * @public
6254
6254
  */
6255
- NextToken?: string;
6255
+ NextToken?: string | undefined;
6256
6256
  }
6257
6257
  /**
6258
6258
  * <p>A request for the resource record sets that are associated with a specified hosted
@@ -6272,7 +6272,7 @@ export interface ListResourceRecordSetsRequest {
6272
6272
  * resource record set that has a name greater than the value of <code>name</code>.</p>
6273
6273
  * @public
6274
6274
  */
6275
- StartRecordName?: string;
6275
+ StartRecordName?: string | undefined;
6276
6276
  /**
6277
6277
  * <p>The type of resource record set to begin the record listing from.</p>
6278
6278
  * <p>Valid values for basic resource record sets: <code>A</code> | <code>AAAA</code> |
@@ -6325,7 +6325,7 @@ export interface ListResourceRecordSetsRequest {
6325
6325
  * an <code>InvalidInput</code> error.</p>
6326
6326
  * @public
6327
6327
  */
6328
- StartRecordType?: RRType;
6328
+ StartRecordType?: RRType | undefined;
6329
6329
  /**
6330
6330
  * <p>
6331
6331
  * <i>Resource record sets that have a routing policy other than
@@ -6334,7 +6334,7 @@ export interface ListResourceRecordSetsRequest {
6334
6334
  * next resource record set that has the current DNS name and type.</p>
6335
6335
  * @public
6336
6336
  */
6337
- StartRecordIdentifier?: string;
6337
+ StartRecordIdentifier?: string | undefined;
6338
6338
  /**
6339
6339
  * <p>(Optional) The maximum number of resource records sets to include in the response body
6340
6340
  * for this request. If the response includes more than <code>maxitems</code> resource
@@ -6344,7 +6344,7 @@ export interface ListResourceRecordSetsRequest {
6344
6344
  * record set in the next group of <code>maxitems</code> resource record sets.</p>
6345
6345
  * @public
6346
6346
  */
6347
- MaxItems?: number;
6347
+ MaxItems?: number | undefined;
6348
6348
  }
6349
6349
  /**
6350
6350
  * <p>A complex type that contains list information for the resource record set.</p>
@@ -6368,13 +6368,13 @@ export interface ListResourceRecordSetsResponse {
6368
6368
  * <p>This element is present only if <code>IsTruncated</code> is true. </p>
6369
6369
  * @public
6370
6370
  */
6371
- NextRecordName?: string;
6371
+ NextRecordName?: string | undefined;
6372
6372
  /**
6373
6373
  * <p>If the results were truncated, the type of the next record in the list.</p>
6374
6374
  * <p>This element is present only if <code>IsTruncated</code> is true. </p>
6375
6375
  * @public
6376
6376
  */
6377
- NextRecordType?: RRType;
6377
+ NextRecordType?: RRType | undefined;
6378
6378
  /**
6379
6379
  * <p>
6380
6380
  * <i>Resource record sets that have a routing policy other than
@@ -6385,7 +6385,7 @@ export interface ListResourceRecordSetsResponse {
6385
6385
  * Policy</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
6386
6386
  * @public
6387
6387
  */
6388
- NextRecordIdentifier?: string;
6388
+ NextRecordIdentifier?: string | undefined;
6389
6389
  /**
6390
6390
  * <p>The maximum number of records you requested.</p>
6391
6391
  * @public
@@ -6409,14 +6409,14 @@ export interface ListReusableDelegationSetsRequest {
6409
6409
  * <code>false</code>, there are no more reusable delegation sets to get.</p>
6410
6410
  * @public
6411
6411
  */
6412
- Marker?: string;
6412
+ Marker?: string | undefined;
6413
6413
  /**
6414
6414
  * <p>The number of reusable delegation sets that you want Amazon Route 53 to return in the
6415
6415
  * response to this request. If you specify a value greater than 100, Route 53 returns only
6416
6416
  * the first 100 reusable delegation sets.</p>
6417
6417
  * @public
6418
6418
  */
6419
- MaxItems?: number;
6419
+ MaxItems?: number | undefined;
6420
6420
  }
6421
6421
  /**
6422
6422
  * <p>A complex type that contains information about the reusable delegation sets that are
@@ -6450,7 +6450,7 @@ export interface ListReusableDelegationSetsResponse {
6450
6450
  * <code>NextMarker</code> in the <code>marker</code> parameter.</p>
6451
6451
  * @public
6452
6452
  */
6453
- NextMarker?: string;
6453
+ NextMarker?: string | undefined;
6454
6454
  /**
6455
6455
  * <p>The value that you specified for the <code>maxitems</code> parameter in the call to
6456
6456
  * <code>ListReusableDelegationSets</code> that produced the current response.</p>
@@ -6500,17 +6500,17 @@ export interface ResourceTagSet {
6500
6500
  * </ul>
6501
6501
  * @public
6502
6502
  */
6503
- ResourceType?: TagResourceType;
6503
+ ResourceType?: TagResourceType | undefined;
6504
6504
  /**
6505
6505
  * <p>The ID for the specified resource.</p>
6506
6506
  * @public
6507
6507
  */
6508
- ResourceId?: string;
6508
+ ResourceId?: string | undefined;
6509
6509
  /**
6510
6510
  * <p>The tags associated with the specified resource.</p>
6511
6511
  * @public
6512
6512
  */
6513
- Tags?: Tag[];
6513
+ Tags?: Tag[] | undefined;
6514
6514
  }
6515
6515
  /**
6516
6516
  * <p>A complex type that contains information about the health checks or hosted zones for
@@ -6581,7 +6581,7 @@ export interface ListTrafficPoliciesRequest {
6581
6581
  * response.</p>
6582
6582
  * @public
6583
6583
  */
6584
- TrafficPolicyIdMarker?: string;
6584
+ TrafficPolicyIdMarker?: string | undefined;
6585
6585
  /**
6586
6586
  * <p>(Optional) The maximum number of traffic policies that you want Amazon Route 53 to
6587
6587
  * return in response to this request. If you have more than <code>MaxItems</code> traffic
@@ -6590,7 +6590,7 @@ export interface ListTrafficPoliciesRequest {
6590
6590
  * policy that Route 53 will return if you submit another request.</p>
6591
6591
  * @public
6592
6592
  */
6593
- MaxItems?: number;
6593
+ MaxItems?: number | undefined;
6594
6594
  }
6595
6595
  /**
6596
6596
  * <p>A complex type that contains information about the latest version of one traffic
@@ -6677,7 +6677,7 @@ export interface ListTrafficPolicyInstancesRequest {
6677
6677
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6678
6678
  * @public
6679
6679
  */
6680
- HostedZoneIdMarker?: string;
6680
+ HostedZoneIdMarker?: string | undefined;
6681
6681
  /**
6682
6682
  * <p>If the value of <code>IsTruncated</code> in the previous response was
6683
6683
  * <code>true</code>, you have more traffic policy instances. To get more traffic
@@ -6690,7 +6690,7 @@ export interface ListTrafficPolicyInstancesRequest {
6690
6690
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6691
6691
  * @public
6692
6692
  */
6693
- TrafficPolicyInstanceNameMarker?: string;
6693
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6694
6694
  /**
6695
6695
  * <p>If the value of <code>IsTruncated</code> in the previous response was
6696
6696
  * <code>true</code>, you have more traffic policy instances. To get more traffic
@@ -6703,7 +6703,7 @@ export interface ListTrafficPolicyInstancesRequest {
6703
6703
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6704
6704
  * @public
6705
6705
  */
6706
- TrafficPolicyInstanceTypeMarker?: RRType;
6706
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6707
6707
  /**
6708
6708
  * <p>The maximum number of traffic policy instances that you want Amazon Route 53 to return
6709
6709
  * in response to a <code>ListTrafficPolicyInstances</code> request. If you have more than
@@ -6714,7 +6714,7 @@ export interface ListTrafficPolicyInstancesRequest {
6714
6714
  * instance in the next group of <code>MaxItems</code> traffic policy instances.</p>
6715
6715
  * @public
6716
6716
  */
6717
- MaxItems?: number;
6717
+ MaxItems?: number | undefined;
6718
6718
  }
6719
6719
  /**
6720
6720
  * <p>A complex type that contains the response information for the request.</p>
@@ -6733,7 +6733,7 @@ export interface ListTrafficPolicyInstancesResponse {
6733
6733
  * if you submit another <code>ListTrafficPolicyInstances</code> request. </p>
6734
6734
  * @public
6735
6735
  */
6736
- HostedZoneIdMarker?: string;
6736
+ HostedZoneIdMarker?: string | undefined;
6737
6737
  /**
6738
6738
  * <p>If <code>IsTruncated</code> is <code>true</code>,
6739
6739
  * <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy
@@ -6741,7 +6741,7 @@ export interface ListTrafficPolicyInstancesResponse {
6741
6741
  * <code>ListTrafficPolicyInstances</code> request. </p>
6742
6742
  * @public
6743
6743
  */
6744
- TrafficPolicyInstanceNameMarker?: string;
6744
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6745
6745
  /**
6746
6746
  * <p>If <code>IsTruncated</code> is <code>true</code>,
6747
6747
  * <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record
@@ -6750,7 +6750,7 @@ export interface ListTrafficPolicyInstancesResponse {
6750
6750
  * </p>
6751
6751
  * @public
6752
6752
  */
6753
- TrafficPolicyInstanceTypeMarker?: RRType;
6753
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6754
6754
  /**
6755
6755
  * <p>A flag that indicates whether there are more traffic policy instances to be listed. If
6756
6756
  * the response was truncated, you can get more traffic policy instances by calling
@@ -6791,7 +6791,7 @@ export interface ListTrafficPolicyInstancesByHostedZoneRequest {
6791
6791
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6792
6792
  * @public
6793
6793
  */
6794
- TrafficPolicyInstanceNameMarker?: string;
6794
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6795
6795
  /**
6796
6796
  * <p>If the value of <code>IsTruncated</code> in the previous response is true, you have
6797
6797
  * more traffic policy instances. To get more traffic policy instances, submit another
@@ -6804,7 +6804,7 @@ export interface ListTrafficPolicyInstancesByHostedZoneRequest {
6804
6804
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6805
6805
  * @public
6806
6806
  */
6807
- TrafficPolicyInstanceTypeMarker?: RRType;
6807
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6808
6808
  /**
6809
6809
  * <p>The maximum number of traffic policy instances to be included in the response body for
6810
6810
  * this request. If you have more than <code>MaxItems</code> traffic policy instances, the
@@ -6815,7 +6815,7 @@ export interface ListTrafficPolicyInstancesByHostedZoneRequest {
6815
6815
  * instance that Amazon Route 53 will return if you submit another request.</p>
6816
6816
  * @public
6817
6817
  */
6818
- MaxItems?: number;
6818
+ MaxItems?: number | undefined;
6819
6819
  }
6820
6820
  /**
6821
6821
  * <p>A complex type that contains the response information for the request.</p>
@@ -6834,14 +6834,14 @@ export interface ListTrafficPolicyInstancesByHostedZoneResponse {
6834
6834
  * instance in the next group of traffic policy instances.</p>
6835
6835
  * @public
6836
6836
  */
6837
- TrafficPolicyInstanceNameMarker?: string;
6837
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6838
6838
  /**
6839
6839
  * <p>If <code>IsTruncated</code> is true, <code>TrafficPolicyInstanceTypeMarker</code> is
6840
6840
  * the DNS type of the resource record sets that are associated with the first traffic
6841
6841
  * policy instance in the next group of traffic policy instances.</p>
6842
6842
  * @public
6843
6843
  */
6844
- TrafficPolicyInstanceTypeMarker?: RRType;
6844
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6845
6845
  /**
6846
6846
  * <p>A flag that indicates whether there are more traffic policy instances to be listed. If
6847
6847
  * the response was truncated, you can get the next group of traffic policy instances by
@@ -6893,7 +6893,7 @@ export interface ListTrafficPolicyInstancesByPolicyRequest {
6893
6893
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6894
6894
  * @public
6895
6895
  */
6896
- HostedZoneIdMarker?: string;
6896
+ HostedZoneIdMarker?: string | undefined;
6897
6897
  /**
6898
6898
  * <p>If the value of <code>IsTruncated</code> in the previous response was
6899
6899
  * <code>true</code>, you have more traffic policy instances. To get more traffic
@@ -6907,7 +6907,7 @@ export interface ListTrafficPolicyInstancesByPolicyRequest {
6907
6907
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6908
6908
  * @public
6909
6909
  */
6910
- TrafficPolicyInstanceNameMarker?: string;
6910
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6911
6911
  /**
6912
6912
  * <p>If the value of <code>IsTruncated</code> in the previous response was
6913
6913
  * <code>true</code>, you have more traffic policy instances. To get more traffic
@@ -6921,7 +6921,7 @@ export interface ListTrafficPolicyInstancesByPolicyRequest {
6921
6921
  * <code>false</code>, there are no more traffic policy instances to get.</p>
6922
6922
  * @public
6923
6923
  */
6924
- TrafficPolicyInstanceTypeMarker?: RRType;
6924
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6925
6925
  /**
6926
6926
  * <p>The maximum number of traffic policy instances to be included in the response body for
6927
6927
  * this request. If you have more than <code>MaxItems</code> traffic policy instances, the
@@ -6932,7 +6932,7 @@ export interface ListTrafficPolicyInstancesByPolicyRequest {
6932
6932
  * instance that Amazon Route 53 will return if you submit another request.</p>
6933
6933
  * @public
6934
6934
  */
6935
- MaxItems?: number;
6935
+ MaxItems?: number | undefined;
6936
6936
  }
6937
6937
  /**
6938
6938
  * <p>A complex type that contains the response information for the request.</p>
@@ -6951,14 +6951,14 @@ export interface ListTrafficPolicyInstancesByPolicyResponse {
6951
6951
  * traffic policy instances.</p>
6952
6952
  * @public
6953
6953
  */
6954
- HostedZoneIdMarker?: string;
6954
+ HostedZoneIdMarker?: string | undefined;
6955
6955
  /**
6956
6956
  * <p>If <code>IsTruncated</code> is <code>true</code>,
6957
6957
  * <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy
6958
6958
  * instance in the next group of <code>MaxItems</code> traffic policy instances.</p>
6959
6959
  * @public
6960
6960
  */
6961
- TrafficPolicyInstanceNameMarker?: string;
6961
+ TrafficPolicyInstanceNameMarker?: string | undefined;
6962
6962
  /**
6963
6963
  * <p>If <code>IsTruncated</code> is <code>true</code>,
6964
6964
  * <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record
@@ -6966,7 +6966,7 @@ export interface ListTrafficPolicyInstancesByPolicyResponse {
6966
6966
  * <code>MaxItems</code> traffic policy instances.</p>
6967
6967
  * @public
6968
6968
  */
6969
- TrafficPolicyInstanceTypeMarker?: RRType;
6969
+ TrafficPolicyInstanceTypeMarker?: RRType | undefined;
6970
6970
  /**
6971
6971
  * <p>A flag that indicates whether there are more traffic policy instances to be listed. If
6972
6972
  * the response was truncated, you can get the next group of traffic policy instances by
@@ -7008,7 +7008,7 @@ export interface ListTrafficPolicyVersionsRequest {
7008
7008
  * <code>TrafficPolicyVersionMarker</code> in the previous response.</p>
7009
7009
  * @public
7010
7010
  */
7011
- TrafficPolicyVersionMarker?: string;
7011
+ TrafficPolicyVersionMarker?: string | undefined;
7012
7012
  /**
7013
7013
  * <p>The maximum number of traffic policy versions that you want Amazon Route 53 to include
7014
7014
  * in the response body for this request. If the specified traffic policy has more than
@@ -7018,7 +7018,7 @@ export interface ListTrafficPolicyVersionsRequest {
7018
7018
  * Route 53 will return if you submit another request.</p>
7019
7019
  * @public
7020
7020
  */
7021
- MaxItems?: number;
7021
+ MaxItems?: number | undefined;
7022
7022
  }
7023
7023
  /**
7024
7024
  * <p>A complex type that contains the response information for the request.</p>
@@ -7079,7 +7079,7 @@ export interface ListVPCAssociationAuthorizationsRequest {
7079
7079
  * another <code>ListVPCAssociationAuthorizations</code> request.</p>
7080
7080
  * @public
7081
7081
  */
7082
- NextToken?: string;
7082
+ NextToken?: string | undefined;
7083
7083
  /**
7084
7084
  * <p>
7085
7085
  * <i>Optional</i>: An integer that specifies the maximum number of VPCs
@@ -7087,7 +7087,7 @@ export interface ListVPCAssociationAuthorizationsRequest {
7087
7087
  * <code>MaxResults</code>, Route 53 returns up to 50 VPCs per page.</p>
7088
7088
  * @public
7089
7089
  */
7090
- MaxResults?: number;
7090
+ MaxResults?: number | undefined;
7091
7091
  }
7092
7092
  /**
7093
7093
  * <p>A complex type that contains the response information for the request.</p>
@@ -7107,7 +7107,7 @@ export interface ListVPCAssociationAuthorizationsResponse {
7107
7107
  * request parameter.</p>
7108
7108
  * @public
7109
7109
  */
7110
- NextToken?: string;
7110
+ NextToken?: string | undefined;
7111
7111
  /**
7112
7112
  * <p>The list of VPCs that are authorized to be associated with the specified hosted
7113
7113
  * zone.</p>
@@ -7146,14 +7146,14 @@ export interface TestDNSAnswerRequest {
7146
7146
  * (<code>us-east-1</code>).</p>
7147
7147
  * @public
7148
7148
  */
7149
- ResolverIP?: string;
7149
+ ResolverIP?: string | undefined;
7150
7150
  /**
7151
7151
  * <p>If the resolver that you specified for resolverip supports EDNS0, specify the IPv4 or
7152
7152
  * IPv6 address of a client in the applicable location, for example,
7153
7153
  * <code>192.0.2.44</code> or <code>2001:db8:85a3::8a2e:370:7334</code>.</p>
7154
7154
  * @public
7155
7155
  */
7156
- EDNS0ClientSubnetIP?: string;
7156
+ EDNS0ClientSubnetIP?: string | undefined;
7157
7157
  /**
7158
7158
  * <p>If you specify an IP address for <code>edns0clientsubnetip</code>, you can optionally
7159
7159
  * specify the number of bits of the IP address that you want the checking tool to include
@@ -7177,7 +7177,7 @@ export interface TestDNSAnswerRequest {
7177
7177
  * </ul>
7178
7178
  * @public
7179
7179
  */
7180
- EDNS0ClientSubnetMask?: string;
7180
+ EDNS0ClientSubnetMask?: string | undefined;
7181
7181
  }
7182
7182
  /**
7183
7183
  * <p>A complex type that contains the response to a <code>TestDNSAnswer</code> request.
@@ -7285,7 +7285,7 @@ export interface UpdateHealthCheckRequest {
7285
7285
  * </ul>
7286
7286
  * @public
7287
7287
  */
7288
- HealthCheckVersion?: number;
7288
+ HealthCheckVersion?: number | undefined;
7289
7289
  /**
7290
7290
  * <p>The IPv4 or IPv6 IP address for the endpoint that you want Amazon Route 53 to perform
7291
7291
  * health checks on. If you don't specify a value for <code>IPAddress</code>, Route 53
@@ -7358,7 +7358,7 @@ export interface UpdateHealthCheckRequest {
7358
7358
  * </ul>
7359
7359
  * @public
7360
7360
  */
7361
- IPAddress?: string;
7361
+ IPAddress?: string | undefined;
7362
7362
  /**
7363
7363
  * <p>The port on the endpoint that you want Amazon Route 53 to perform health checks
7364
7364
  * on.</p>
@@ -7369,7 +7369,7 @@ export interface UpdateHealthCheckRequest {
7369
7369
  * </note>
7370
7370
  * @public
7371
7371
  */
7372
- Port?: number;
7372
+ Port?: number | undefined;
7373
7373
  /**
7374
7374
  * <p>The path that you want Amazon Route 53 to request when performing health checks. The
7375
7375
  * path can be any value for which your endpoint will return an HTTP status code of 2xx or
@@ -7379,7 +7379,7 @@ export interface UpdateHealthCheckRequest {
7379
7379
  * <p>Specify this value only if you want to change it.</p>
7380
7380
  * @public
7381
7381
  */
7382
- ResourcePath?: string;
7382
+ ResourcePath?: string | undefined;
7383
7383
  /**
7384
7384
  * <p>Amazon Route 53 behavior depends on whether you specify a value for
7385
7385
  * <code>IPAddress</code>.</p>
@@ -7457,7 +7457,7 @@ export interface UpdateHealthCheckRequest {
7457
7457
  * 53 doesn't pass a <code>Host</code> header.</p>
7458
7458
  * @public
7459
7459
  */
7460
- FullyQualifiedDomainName?: string;
7460
+ FullyQualifiedDomainName?: string | undefined;
7461
7461
  /**
7462
7462
  * <p>If the value of <code>Type</code> is <code>HTTP_STR_MATCH</code> or
7463
7463
  * <code>HTTPS_STR_MATCH</code>, the string that you want Amazon Route 53 to search for
@@ -7466,7 +7466,7 @@ export interface UpdateHealthCheckRequest {
7466
7466
  * <code>Type</code> when you update a health check.)</p>
7467
7467
  * @public
7468
7468
  */
7469
- SearchString?: string;
7469
+ SearchString?: string | undefined;
7470
7470
  /**
7471
7471
  * <p>The number of consecutive health checks that an endpoint must pass or fail for Amazon
7472
7472
  * Route 53 to change the current status of the endpoint from unhealthy to healthy or vice
@@ -7476,14 +7476,14 @@ export interface UpdateHealthCheckRequest {
7476
7476
  * three health checks.</p>
7477
7477
  * @public
7478
7478
  */
7479
- FailureThreshold?: number;
7479
+ FailureThreshold?: number | undefined;
7480
7480
  /**
7481
7481
  * <p>Specify whether you want Amazon Route 53 to invert the status of a health check, for
7482
7482
  * example, to consider a health check unhealthy when it otherwise would be considered
7483
7483
  * healthy.</p>
7484
7484
  * @public
7485
7485
  */
7486
- Inverted?: boolean;
7486
+ Inverted?: boolean | undefined;
7487
7487
  /**
7488
7488
  * <p>Stops Route 53 from performing health checks. When you disable a health check, here's
7489
7489
  * what happens:</p>
@@ -7514,7 +7514,7 @@ export interface UpdateHealthCheckRequest {
7514
7514
  * Pricing</a>.</p>
7515
7515
  * @public
7516
7516
  */
7517
- Disabled?: boolean;
7517
+ Disabled?: boolean | undefined;
7518
7518
  /**
7519
7519
  * <p>The number of child health checks that are associated with a <code>CALCULATED</code>
7520
7520
  * health that Amazon Route 53 must consider healthy for the <code>CALCULATED</code> health
@@ -7534,13 +7534,13 @@ export interface UpdateHealthCheckRequest {
7534
7534
  * </ul>
7535
7535
  * @public
7536
7536
  */
7537
- HealthThreshold?: number;
7537
+ HealthThreshold?: number | undefined;
7538
7538
  /**
7539
7539
  * <p>A complex type that contains one <code>ChildHealthCheck</code> element for each health
7540
7540
  * check that you want to associate with a <code>CALCULATED</code> health check.</p>
7541
7541
  * @public
7542
7542
  */
7543
- ChildHealthChecks?: string[];
7543
+ ChildHealthChecks?: string[] | undefined;
7544
7544
  /**
7545
7545
  * <p>Specify whether you want Amazon Route 53 to send the value of
7546
7546
  * <code>FullyQualifiedDomainName</code> to the endpoint in the
@@ -7564,20 +7564,20 @@ export interface UpdateHealthCheckRequest {
7564
7564
  * message.</p>
7565
7565
  * @public
7566
7566
  */
7567
- EnableSNI?: boolean;
7567
+ EnableSNI?: boolean | undefined;
7568
7568
  /**
7569
7569
  * <p>A complex type that contains one <code>Region</code> element for each region that you
7570
7570
  * want Amazon Route 53 health checkers to check the specified endpoint from.</p>
7571
7571
  * @public
7572
7572
  */
7573
- Regions?: HealthCheckRegion[];
7573
+ Regions?: HealthCheckRegion[] | undefined;
7574
7574
  /**
7575
7575
  * <p>A complex type that identifies the CloudWatch alarm that you want Amazon Route 53
7576
7576
  * health checkers to use to determine whether the specified health check is
7577
7577
  * healthy.</p>
7578
7578
  * @public
7579
7579
  */
7580
- AlarmIdentifier?: AlarmIdentifier;
7580
+ AlarmIdentifier?: AlarmIdentifier | undefined;
7581
7581
  /**
7582
7582
  * <p>When CloudWatch has insufficient data about the metric to determine the alarm state,
7583
7583
  * the status that you want Amazon Route 53 to assign to the health check:</p>
@@ -7602,7 +7602,7 @@ export interface UpdateHealthCheckRequest {
7602
7602
  * </ul>
7603
7603
  * @public
7604
7604
  */
7605
- InsufficientDataHealthStatus?: InsufficientDataHealthStatus;
7605
+ InsufficientDataHealthStatus?: InsufficientDataHealthStatus | undefined;
7606
7606
  /**
7607
7607
  * <p>A complex type that contains one <code>ResettableElementName</code> element for each
7608
7608
  * element that you want to reset to the default value. Valid values for
@@ -7627,7 +7627,7 @@ export interface UpdateHealthCheckRequest {
7627
7627
  * </ul>
7628
7628
  * @public
7629
7629
  */
7630
- ResetElements?: ResettableElementName[];
7630
+ ResetElements?: ResettableElementName[] | undefined;
7631
7631
  }
7632
7632
  /**
7633
7633
  * <p>A complex type that contains the response to the <code>UpdateHealthCheck</code>
@@ -7658,7 +7658,7 @@ export interface UpdateHostedZoneCommentRequest {
7658
7658
  * <code>Comment</code> element, if any.</p>
7659
7659
  * @public
7660
7660
  */
7661
- Comment?: string;
7661
+ Comment?: string | undefined;
7662
7662
  }
7663
7663
  /**
7664
7664
  * <p>A complex type that contains the response to the <code>UpdateHostedZoneComment</code>