@aws-sdk/client-route-53-domains 3.687.0 → 3.692.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.
@@ -29,7 +29,7 @@ export interface AcceptDomainTransferFromAnotherAwsAccountResponse {
29
29
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
30
30
  * @public
31
31
  */
32
- OperationId?: string;
32
+ OperationId?: string | undefined;
33
33
  }
34
34
  /**
35
35
  * <p>The number of domains has exceeded the allowed threshold for the account.</p>
@@ -93,7 +93,7 @@ export interface DnssecSigningAttributes {
93
93
  * <p> Algorithm which was used to generate the digest from the public key. </p>
94
94
  * @public
95
95
  */
96
- Algorithm?: number;
96
+ Algorithm?: number | undefined;
97
97
  /**
98
98
  * <p>Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK
99
99
  * (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS
@@ -102,13 +102,13 @@ export interface DnssecSigningAttributes {
102
102
  * record. If you have ZSK keys only – use ZSK to create a DS record.</p>
103
103
  * @public
104
104
  */
105
- Flags?: number;
105
+ Flags?: number | undefined;
106
106
  /**
107
107
  * <p> The base64-encoded public key part of the key pair that is passed to the registry.
108
108
  * </p>
109
109
  * @public
110
110
  */
111
- PublicKey?: string;
111
+ PublicKey?: string | undefined;
112
112
  }
113
113
  /**
114
114
  * @public
@@ -135,7 +135,7 @@ export interface AssociateDelegationSignerToDomainResponse {
135
135
  * status, use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
136
136
  * @public
137
137
  */
138
- OperationId?: string;
138
+ OperationId?: string | undefined;
139
139
  }
140
140
  /**
141
141
  * <p> This error is returned if you call <code>AssociateDelegationSignerToDomain</code>
@@ -162,7 +162,7 @@ export declare class DuplicateRequest extends __BaseException {
162
162
  * <p>ID of the request operation.</p>
163
163
  * @public
164
164
  */
165
- requestId?: string;
165
+ requestId?: string | undefined;
166
166
  /**
167
167
  * @internal
168
168
  */
@@ -223,28 +223,28 @@ export interface BillingRecord {
223
223
  * Guide</i>.</p>
224
224
  * @public
225
225
  */
226
- DomainName?: string;
226
+ DomainName?: string | undefined;
227
227
  /**
228
228
  * <p>The operation that you were charged for.</p>
229
229
  * @public
230
230
  */
231
- Operation?: OperationType;
231
+ Operation?: OperationType | undefined;
232
232
  /**
233
233
  * <p>The ID of the invoice that is associated with the billing record.</p>
234
234
  * @public
235
235
  */
236
- InvoiceId?: string;
236
+ InvoiceId?: string | undefined;
237
237
  /**
238
238
  * <p>The date that the operation was billed, in Unix format.</p>
239
239
  * @public
240
240
  */
241
- BillDate?: Date;
241
+ BillDate?: Date | undefined;
242
242
  /**
243
243
  * <p>The price that you were charged for the operation, in US dollars.</p>
244
244
  * <p>Example value: 12.0</p>
245
245
  * @public
246
246
  */
247
- Price?: number;
247
+ Price?: number | undefined;
248
248
  }
249
249
  /**
250
250
  * <p>The CancelDomainTransferToAnotherAwsAccount request includes the following
@@ -271,7 +271,7 @@ export interface CancelDomainTransferToAnotherAwsAccountResponse {
271
271
  * status.</p>
272
272
  * @public
273
273
  */
274
- OperationId?: string;
274
+ OperationId?: string | undefined;
275
275
  }
276
276
  /**
277
277
  * <p>The CheckDomainAvailability request contains the following elements.</p>
@@ -312,7 +312,7 @@ export interface CheckDomainAvailabilityRequest {
312
312
  * <p>Reserved for future use.</p>
313
313
  * @public
314
314
  */
315
- IdnLangCode?: string;
315
+ IdnLangCode?: string | undefined;
316
316
  }
317
317
  /**
318
318
  * @public
@@ -395,7 +395,7 @@ export interface CheckDomainAvailabilityResponse {
395
395
  * </dl>
396
396
  * @public
397
397
  */
398
- Availability?: DomainAvailability;
398
+ Availability?: DomainAvailability | undefined;
399
399
  }
400
400
  /**
401
401
  * <p>The CheckDomainTransferability request contains the following elements.</p>
@@ -434,7 +434,7 @@ export interface CheckDomainTransferabilityRequest {
434
434
  * domain.</p>
435
435
  * @public
436
436
  */
437
- AuthCode?: string;
437
+ AuthCode?: string | undefined;
438
438
  }
439
439
  /**
440
440
  * @public
@@ -493,7 +493,7 @@ export interface DomainTransferability {
493
493
  * </dl>
494
494
  * @public
495
495
  */
496
- Transferable?: Transferable;
496
+ Transferable?: Transferable | undefined;
497
497
  }
498
498
  /**
499
499
  * <p>The CheckDomainTransferability response includes the following elements.</p>
@@ -505,12 +505,12 @@ export interface CheckDomainTransferabilityResponse {
505
505
  * transferred to Route 53.</p>
506
506
  * @public
507
507
  */
508
- Transferability?: DomainTransferability;
508
+ Transferability?: DomainTransferability | undefined;
509
509
  /**
510
510
  * <p>Provides an explanation for when a domain can't be transferred.</p>
511
511
  * @public
512
512
  */
513
- Message?: string;
513
+ Message?: string | undefined;
514
514
  }
515
515
  /**
516
516
  * <p> Customer's consent for the owner change request. </p>
@@ -1686,12 +1686,12 @@ export interface ContactDetail {
1686
1686
  * <p>First name of contact.</p>
1687
1687
  * @public
1688
1688
  */
1689
- FirstName?: string;
1689
+ FirstName?: string | undefined;
1690
1690
  /**
1691
1691
  * <p>Last name of contact.</p>
1692
1692
  * @public
1693
1693
  */
1694
- LastName?: string;
1694
+ LastName?: string | undefined;
1695
1695
  /**
1696
1696
  * <p>Indicates whether the contact is a person, company, association, or public
1697
1697
  * organization. Note the following:</p>
@@ -1715,42 +1715,42 @@ export interface ContactDetail {
1715
1715
  * </ul>
1716
1716
  * @public
1717
1717
  */
1718
- ContactType?: ContactType;
1718
+ ContactType?: ContactType | undefined;
1719
1719
  /**
1720
1720
  * <p>Name of the organization for contact types other than <code>PERSON</code>.</p>
1721
1721
  * @public
1722
1722
  */
1723
- OrganizationName?: string;
1723
+ OrganizationName?: string | undefined;
1724
1724
  /**
1725
1725
  * <p>First line of the contact's address.</p>
1726
1726
  * @public
1727
1727
  */
1728
- AddressLine1?: string;
1728
+ AddressLine1?: string | undefined;
1729
1729
  /**
1730
1730
  * <p>Second line of contact's address, if any.</p>
1731
1731
  * @public
1732
1732
  */
1733
- AddressLine2?: string;
1733
+ AddressLine2?: string | undefined;
1734
1734
  /**
1735
1735
  * <p>The city of the contact's address.</p>
1736
1736
  * @public
1737
1737
  */
1738
- City?: string;
1738
+ City?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>The state or province of the contact's city.</p>
1741
1741
  * @public
1742
1742
  */
1743
- State?: string;
1743
+ State?: string | undefined;
1744
1744
  /**
1745
1745
  * <p>Code for the country of the contact's address.</p>
1746
1746
  * @public
1747
1747
  */
1748
- CountryCode?: CountryCode;
1748
+ CountryCode?: CountryCode | undefined;
1749
1749
  /**
1750
1750
  * <p>The zip or postal code of the contact's address.</p>
1751
1751
  * @public
1752
1752
  */
1753
- ZipCode?: string;
1753
+ ZipCode?: string | undefined;
1754
1754
  /**
1755
1755
  * <p>The phone number of the contact.</p>
1756
1756
  * <p>Constraints: Phone number must be specified in the format "+[country dialing
@@ -1758,12 +1758,12 @@ export interface ContactDetail {
1758
1758
  * as <code>"+1.1234567890"</code>.</p>
1759
1759
  * @public
1760
1760
  */
1761
- PhoneNumber?: string;
1761
+ PhoneNumber?: string | undefined;
1762
1762
  /**
1763
1763
  * <p>Email address of the contact.</p>
1764
1764
  * @public
1765
1765
  */
1766
- Email?: string;
1766
+ Email?: string | undefined;
1767
1767
  /**
1768
1768
  * <p>Fax number of the contact.</p>
1769
1769
  * <p>Constraints: Phone number must be specified in the format "+[country dialing
@@ -1771,13 +1771,13 @@ export interface ContactDetail {
1771
1771
  * <code>"+1.1234567890"</code>.</p>
1772
1772
  * @public
1773
1773
  */
1774
- Fax?: string;
1774
+ Fax?: string | undefined;
1775
1775
  /**
1776
1776
  * <p>A list of name-value pairs for parameters required by certain top-level
1777
1777
  * domains.</p>
1778
1778
  * @public
1779
1779
  */
1780
- ExtraParams?: ExtraParam[];
1780
+ ExtraParams?: ExtraParam[] | undefined;
1781
1781
  }
1782
1782
  /**
1783
1783
  * @public
@@ -1798,7 +1798,7 @@ export interface DeleteDomainResponse {
1798
1798
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
1799
1799
  * @public
1800
1800
  */
1801
- OperationId?: string;
1801
+ OperationId?: string | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * <p>The DeleteTagsForDomainRequest includes the following elements.</p>
@@ -1857,7 +1857,7 @@ export interface DisableDomainTransferLockResponse {
1857
1857
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
1858
1858
  * @public
1859
1859
  */
1860
- OperationId?: string;
1860
+ OperationId?: string | undefined;
1861
1861
  }
1862
1862
  /**
1863
1863
  * @public
@@ -1884,7 +1884,7 @@ export interface DisassociateDelegationSignerFromDomainResponse {
1884
1884
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
1885
1885
  * @public
1886
1886
  */
1887
- OperationId?: string;
1887
+ OperationId?: string | undefined;
1888
1888
  }
1889
1889
  /**
1890
1890
  * <p>Information about the DNSSEC key.</p>
@@ -1900,7 +1900,7 @@ export interface DnssecKey {
1900
1900
  * <p>For more information about enabling DNSSEC signing, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-configuring-dnssec-enable-signing.html">Enabling DNSSEC signing and establishing a chain of trust</a>.</p>
1901
1901
  * @public
1902
1902
  */
1903
- Algorithm?: number;
1903
+ Algorithm?: number | undefined;
1904
1904
  /**
1905
1905
  * <p>Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK
1906
1906
  * (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS
@@ -1909,20 +1909,20 @@ export interface DnssecKey {
1909
1909
  * record. If you have ZSK keys only – use ZSK to create a DS record.</p>
1910
1910
  * @public
1911
1911
  */
1912
- Flags?: number;
1912
+ Flags?: number | undefined;
1913
1913
  /**
1914
1914
  * <p>The base64-encoded public key part of the key pair that is passed to the registry
1915
1915
  * .</p>
1916
1916
  * @public
1917
1917
  */
1918
- PublicKey?: string;
1918
+ PublicKey?: string | undefined;
1919
1919
  /**
1920
1920
  * <p> The number of the DS digest algorithm according to an IANA assignment.</p>
1921
1921
  * <p>For more information, see <a href="https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml">IANA</a>
1922
1922
  * for DNSSEC Delegation Signer (DS) Resource Record (RR) Type Digest Algorithms. </p>
1923
1923
  * @public
1924
1924
  */
1925
- DigestType?: number;
1925
+ DigestType?: number | undefined;
1926
1926
  /**
1927
1927
  * <p> The delegation signer digest.</p>
1928
1928
  * <p>Digest is calculated from the public key provided using specified digest algorithm and
@@ -1930,17 +1930,17 @@ export interface DnssecKey {
1930
1930
  * DS records. </p>
1931
1931
  * @public
1932
1932
  */
1933
- Digest?: string;
1933
+ Digest?: string | undefined;
1934
1934
  /**
1935
1935
  * <p> A numeric identification of the DNSKEY record referred to by this DS record. </p>
1936
1936
  * @public
1937
1937
  */
1938
- KeyTag?: number;
1938
+ KeyTag?: number | undefined;
1939
1939
  /**
1940
1940
  * <p> An ID assigned to each DS record created by <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AssociateDelegationSignerToDomain.html">AssociateDelegationSignerToDomain</a>. </p>
1941
1941
  * @public
1942
1942
  */
1943
- Id?: string;
1943
+ Id?: string | undefined;
1944
1944
  }
1945
1945
  /**
1946
1946
  * <p>Currency-specific price information.</p>
@@ -1967,32 +1967,32 @@ export interface DomainPrice {
1967
1967
  * <p>The name of the TLD for which the prices apply.</p>
1968
1968
  * @public
1969
1969
  */
1970
- Name?: string;
1970
+ Name?: string | undefined;
1971
1971
  /**
1972
1972
  * <p>The price for domain registration with Route 53.</p>
1973
1973
  * @public
1974
1974
  */
1975
- RegistrationPrice?: PriceWithCurrency;
1975
+ RegistrationPrice?: PriceWithCurrency | undefined;
1976
1976
  /**
1977
1977
  * <p>The price for transferring the domain registration to Route 53.</p>
1978
1978
  * @public
1979
1979
  */
1980
- TransferPrice?: PriceWithCurrency;
1980
+ TransferPrice?: PriceWithCurrency | undefined;
1981
1981
  /**
1982
1982
  * <p>The price for renewing domain registration with Route 53.</p>
1983
1983
  * @public
1984
1984
  */
1985
- RenewalPrice?: PriceWithCurrency;
1985
+ RenewalPrice?: PriceWithCurrency | undefined;
1986
1986
  /**
1987
1987
  * <p>The price for changing domain ownership.</p>
1988
1988
  * @public
1989
1989
  */
1990
- ChangeOwnershipPrice?: PriceWithCurrency;
1990
+ ChangeOwnershipPrice?: PriceWithCurrency | undefined;
1991
1991
  /**
1992
1992
  * <p>The price for restoring the domain with Route 53.</p>
1993
1993
  * @public
1994
1994
  */
1995
- RestorationPrice?: PriceWithCurrency;
1995
+ RestorationPrice?: PriceWithCurrency | undefined;
1996
1996
  }
1997
1997
  /**
1998
1998
  * <p>Information about one suggested domain name.</p>
@@ -2003,7 +2003,7 @@ export interface DomainSuggestion {
2003
2003
  * <p>A suggested domain name.</p>
2004
2004
  * @public
2005
2005
  */
2006
- DomainName?: string;
2006
+ DomainName?: string | undefined;
2007
2007
  /**
2008
2008
  * <p>Whether the domain name is available for registering.</p>
2009
2009
  * <note>
@@ -2057,7 +2057,7 @@ export interface DomainSuggestion {
2057
2057
  * </dl>
2058
2058
  * @public
2059
2059
  */
2060
- Availability?: string;
2060
+ Availability?: string | undefined;
2061
2061
  }
2062
2062
  /**
2063
2063
  * <p>Summary information about one domain.</p>
@@ -2068,24 +2068,24 @@ export interface DomainSummary {
2068
2068
  * <p>The name of the domain that the summary information applies to.</p>
2069
2069
  * @public
2070
2070
  */
2071
- DomainName?: string;
2071
+ DomainName?: string | undefined;
2072
2072
  /**
2073
2073
  * <p>Indicates whether the domain is automatically renewed upon expiration.</p>
2074
2074
  * @public
2075
2075
  */
2076
- AutoRenew?: boolean;
2076
+ AutoRenew?: boolean | undefined;
2077
2077
  /**
2078
2078
  * <p>Indicates whether a domain is locked from unauthorized transfer to another
2079
2079
  * party.</p>
2080
2080
  * @public
2081
2081
  */
2082
- TransferLock?: boolean;
2082
+ TransferLock?: boolean | undefined;
2083
2083
  /**
2084
2084
  * <p>Expiration date of the domain in Unix time format and Coordinated Universal Time
2085
2085
  * (UTC).</p>
2086
2086
  * @public
2087
2087
  */
2088
- Expiry?: Date;
2088
+ Expiry?: Date | undefined;
2089
2089
  }
2090
2090
  /**
2091
2091
  * @public
@@ -2123,7 +2123,7 @@ export interface EnableDomainTransferLockResponse {
2123
2123
  * operation status, use GetOperationDetail.</p>
2124
2124
  * @public
2125
2125
  */
2126
- OperationId?: string;
2126
+ OperationId?: string | undefined;
2127
2127
  }
2128
2128
  /**
2129
2129
  * @public
@@ -2195,7 +2195,7 @@ export interface GetContactReachabilityStatusRequest {
2195
2195
  * confirmed that the email address is valid.</p>
2196
2196
  * @public
2197
2197
  */
2198
- domainName?: string;
2198
+ domainName?: string | undefined;
2199
2199
  }
2200
2200
  /**
2201
2201
  * @public
@@ -2218,7 +2218,7 @@ export interface GetContactReachabilityStatusResponse {
2218
2218
  * <p>The domain name for which you requested the reachability status.</p>
2219
2219
  * @public
2220
2220
  */
2221
- domainName?: string;
2221
+ domainName?: string | undefined;
2222
2222
  /**
2223
2223
  * <p>Whether the registrant contact has responded. Values include the following:</p>
2224
2224
  * <dl>
@@ -2237,7 +2237,7 @@ export interface GetContactReachabilityStatusResponse {
2237
2237
  * </dl>
2238
2238
  * @public
2239
2239
  */
2240
- status?: ReachabilityStatus;
2240
+ status?: ReachabilityStatus | undefined;
2241
2241
  }
2242
2242
  /**
2243
2243
  * <p>The GetDomainDetail request includes the following element.</p>
@@ -2269,7 +2269,7 @@ export interface Nameserver {
2269
2269
  * <p>Constraints: The list can contain only one IPv4 and one IPv6 address.</p>
2270
2270
  * @public
2271
2271
  */
2272
- GlueIps?: string[];
2272
+ GlueIps?: string[] | undefined;
2273
2273
  }
2274
2274
  /**
2275
2275
  * <p>The GetDomainDetail response includes the following elements.</p>
@@ -2280,32 +2280,32 @@ export interface GetDomainDetailResponse {
2280
2280
  * <p>The name of a domain.</p>
2281
2281
  * @public
2282
2282
  */
2283
- DomainName?: string;
2283
+ DomainName?: string | undefined;
2284
2284
  /**
2285
2285
  * <p>The name servers of the domain.</p>
2286
2286
  * @public
2287
2287
  */
2288
- Nameservers?: Nameserver[];
2288
+ Nameservers?: Nameserver[] | undefined;
2289
2289
  /**
2290
2290
  * <p>Specifies whether the domain registration is set to renew automatically.</p>
2291
2291
  * @public
2292
2292
  */
2293
- AutoRenew?: boolean;
2293
+ AutoRenew?: boolean | undefined;
2294
2294
  /**
2295
2295
  * <p>Provides details about the domain administrative contact.</p>
2296
2296
  * @public
2297
2297
  */
2298
- AdminContact?: ContactDetail;
2298
+ AdminContact?: ContactDetail | undefined;
2299
2299
  /**
2300
2300
  * <p>Provides details about the domain registrant.</p>
2301
2301
  * @public
2302
2302
  */
2303
- RegistrantContact?: ContactDetail;
2303
+ RegistrantContact?: ContactDetail | undefined;
2304
2304
  /**
2305
2305
  * <p>Provides details about the domain technical contact.</p>
2306
2306
  * @public
2307
2307
  */
2308
- TechContact?: ContactDetail;
2308
+ TechContact?: ContactDetail | undefined;
2309
2309
  /**
2310
2310
  * <p>Specifies whether contact information is concealed from WHOIS queries. If the value is
2311
2311
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -2314,7 +2314,7 @@ export interface GetDomainDetailResponse {
2314
2314
  * information that you entered for the admin contact.</p>
2315
2315
  * @public
2316
2316
  */
2317
- AdminPrivacy?: boolean;
2317
+ AdminPrivacy?: boolean | undefined;
2318
2318
  /**
2319
2319
  * <p>Specifies whether contact information is concealed from WHOIS queries. If the value is
2320
2320
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -2323,7 +2323,7 @@ export interface GetDomainDetailResponse {
2323
2323
  * information that you entered for the registrant contact (domain owner).</p>
2324
2324
  * @public
2325
2325
  */
2326
- RegistrantPrivacy?: boolean;
2326
+ RegistrantPrivacy?: boolean | undefined;
2327
2327
  /**
2328
2328
  * <p>Specifies whether contact information is concealed from WHOIS queries. If the value is
2329
2329
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -2332,69 +2332,69 @@ export interface GetDomainDetailResponse {
2332
2332
  * information that you entered for the technical contact.</p>
2333
2333
  * @public
2334
2334
  */
2335
- TechPrivacy?: boolean;
2335
+ TechPrivacy?: boolean | undefined;
2336
2336
  /**
2337
2337
  * <p>Name of the registrar of the domain as identified in the registry. </p>
2338
2338
  * @public
2339
2339
  */
2340
- RegistrarName?: string;
2340
+ RegistrarName?: string | undefined;
2341
2341
  /**
2342
2342
  * <p>The fully qualified name of the WHOIS server that can answer the WHOIS query for the
2343
2343
  * domain.</p>
2344
2344
  * @public
2345
2345
  */
2346
- WhoIsServer?: string;
2346
+ WhoIsServer?: string | undefined;
2347
2347
  /**
2348
2348
  * <p>Web address of the registrar.</p>
2349
2349
  * @public
2350
2350
  */
2351
- RegistrarUrl?: string;
2351
+ RegistrarUrl?: string | undefined;
2352
2352
  /**
2353
2353
  * <p>Email address to contact to report incorrect contact information for a domain, to
2354
2354
  * report that the domain is being used to send spam, to report that someone is
2355
2355
  * cybersquatting on a domain name, or report some other type of abuse.</p>
2356
2356
  * @public
2357
2357
  */
2358
- AbuseContactEmail?: string;
2358
+ AbuseContactEmail?: string | undefined;
2359
2359
  /**
2360
2360
  * <p>Phone number for reporting abuse.</p>
2361
2361
  * @public
2362
2362
  */
2363
- AbuseContactPhone?: string;
2363
+ AbuseContactPhone?: string | undefined;
2364
2364
  /**
2365
2365
  * <p>Reserved for future use.</p>
2366
2366
  * @public
2367
2367
  */
2368
- RegistryDomainId?: string;
2368
+ RegistryDomainId?: string | undefined;
2369
2369
  /**
2370
2370
  * <p>The date when the domain was created as found in the response to a WHOIS query. The
2371
2371
  * date and time is in Unix time format and Coordinated Universal time (UTC).</p>
2372
2372
  * @public
2373
2373
  */
2374
- CreationDate?: Date;
2374
+ CreationDate?: Date | undefined;
2375
2375
  /**
2376
2376
  * <p>The last updated date of the domain as found in the response to a WHOIS query. The
2377
2377
  * date and time is in Unix time format and Coordinated Universal time (UTC).</p>
2378
2378
  * @public
2379
2379
  */
2380
- UpdatedDate?: Date;
2380
+ UpdatedDate?: Date | undefined;
2381
2381
  /**
2382
2382
  * <p>The date when the registration for the domain is set to expire. The date and time is
2383
2383
  * in Unix time format and Coordinated Universal time (UTC).</p>
2384
2384
  * @public
2385
2385
  */
2386
- ExpirationDate?: Date;
2386
+ ExpirationDate?: Date | undefined;
2387
2387
  /**
2388
2388
  * <p>Reseller of the domain. Domains registered or transferred using Route 53 domains will
2389
2389
  * have <code>"Amazon"</code> as the reseller. </p>
2390
2390
  * @public
2391
2391
  */
2392
- Reseller?: string;
2392
+ Reseller?: string | undefined;
2393
2393
  /**
2394
2394
  * <p>Deprecated.</p>
2395
2395
  * @public
2396
2396
  */
2397
- DnsSec?: string;
2397
+ DnsSec?: string | undefined;
2398
2398
  /**
2399
2399
  * <p>An array of domain name status codes, also known as Extensible Provisioning Protocol
2400
2400
  * (EPP) status codes.</p>
@@ -2409,17 +2409,17 @@ export interface GetDomainDetailResponse {
2409
2409
  * return an old version of the document.)</p>
2410
2410
  * @public
2411
2411
  */
2412
- StatusList?: string[];
2412
+ StatusList?: string[] | undefined;
2413
2413
  /**
2414
2414
  * <p>A complex type that contains information about the DNSSEC configuration.</p>
2415
2415
  * @public
2416
2416
  */
2417
- DnssecKeys?: DnssecKey[];
2417
+ DnssecKeys?: DnssecKey[] | undefined;
2418
2418
  /**
2419
2419
  * <p>Provides details about the domain billing contact.</p>
2420
2420
  * @public
2421
2421
  */
2422
- BillingContact?: ContactDetail;
2422
+ BillingContact?: ContactDetail | undefined;
2423
2423
  /**
2424
2424
  * <p>Specifies whether contact information is concealed from WHOIS queries. If the value is
2425
2425
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -2428,7 +2428,7 @@ export interface GetDomainDetailResponse {
2428
2428
  * information that you entered for the billing contact.</p>
2429
2429
  * @public
2430
2430
  */
2431
- BillingPrivacy?: boolean;
2431
+ BillingPrivacy?: boolean | undefined;
2432
2432
  }
2433
2433
  /**
2434
2434
  * @public
@@ -2490,7 +2490,7 @@ export interface GetDomainSuggestionsResponse {
2490
2490
  * available for registration.</p>
2491
2491
  * @public
2492
2492
  */
2493
- SuggestionsList?: DomainSuggestion[];
2493
+ SuggestionsList?: DomainSuggestion[] | undefined;
2494
2494
  }
2495
2495
  /**
2496
2496
  * <p>The <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a> request includes the following element.</p>
@@ -2543,37 +2543,37 @@ export interface GetOperationDetailResponse {
2543
2543
  * <p>The identifier for the operation.</p>
2544
2544
  * @public
2545
2545
  */
2546
- OperationId?: string;
2546
+ OperationId?: string | undefined;
2547
2547
  /**
2548
2548
  * <p>The current status of the requested operation in the system.</p>
2549
2549
  * @public
2550
2550
  */
2551
- Status?: OperationStatus;
2551
+ Status?: OperationStatus | undefined;
2552
2552
  /**
2553
2553
  * <p>Detailed information on the status including possible errors.</p>
2554
2554
  * @public
2555
2555
  */
2556
- Message?: string;
2556
+ Message?: string | undefined;
2557
2557
  /**
2558
2558
  * <p>The name of a domain.</p>
2559
2559
  * @public
2560
2560
  */
2561
- DomainName?: string;
2561
+ DomainName?: string | undefined;
2562
2562
  /**
2563
2563
  * <p>The type of operation that was requested.</p>
2564
2564
  * @public
2565
2565
  */
2566
- Type?: OperationType;
2566
+ Type?: OperationType | undefined;
2567
2567
  /**
2568
2568
  * <p>The date when the request was submitted.</p>
2569
2569
  * @public
2570
2570
  */
2571
- SubmittedDate?: Date;
2571
+ SubmittedDate?: Date | undefined;
2572
2572
  /**
2573
2573
  * <p> The date when the operation was last updated. </p>
2574
2574
  * @public
2575
2575
  */
2576
- LastUpdatedDate?: Date;
2576
+ LastUpdatedDate?: Date | undefined;
2577
2577
  /**
2578
2578
  * <p> Lists any outstanding operations that require customer action. Valid values
2579
2579
  * are:</p>
@@ -2606,7 +2606,7 @@ export interface GetOperationDetailResponse {
2606
2606
  * </ul>
2607
2607
  * @public
2608
2608
  */
2609
- StatusFlag?: StatusFlag;
2609
+ StatusFlag?: StatusFlag | undefined;
2610
2610
  }
2611
2611
  /**
2612
2612
  * @public
@@ -2652,13 +2652,13 @@ export interface ListDomainsRequest {
2652
2652
  * domain expiration.</p>
2653
2653
  * @public
2654
2654
  */
2655
- FilterConditions?: FilterCondition[];
2655
+ FilterConditions?: FilterCondition[] | undefined;
2656
2656
  /**
2657
2657
  * <p>A complex type that contains information about the requested ordering of domains in
2658
2658
  * the returned list.</p>
2659
2659
  * @public
2660
2660
  */
2661
- SortCondition?: SortCondition;
2661
+ SortCondition?: SortCondition | undefined;
2662
2662
  /**
2663
2663
  * <p>For an initial request for a list of domains, omit this element. If the number of
2664
2664
  * domains that are associated with the current Amazon Web Services account is greater than
@@ -2669,13 +2669,13 @@ export interface ListDomainsRequest {
2669
2669
  * <p>Constraints: The marker must match the value specified in the previous request.</p>
2670
2670
  * @public
2671
2671
  */
2672
- Marker?: string;
2672
+ Marker?: string | undefined;
2673
2673
  /**
2674
2674
  * <p>Number of domains to be returned.</p>
2675
2675
  * <p>Default: 20</p>
2676
2676
  * @public
2677
2677
  */
2678
- MaxItems?: number;
2678
+ MaxItems?: number | undefined;
2679
2679
  }
2680
2680
  /**
2681
2681
  * <p>The ListDomains response includes the following elements.</p>
@@ -2686,14 +2686,14 @@ export interface ListDomainsResponse {
2686
2686
  * <p>A list of domains.</p>
2687
2687
  * @public
2688
2688
  */
2689
- Domains?: DomainSummary[];
2689
+ Domains?: DomainSummary[] | undefined;
2690
2690
  /**
2691
2691
  * <p>If there are more domains than you specified for <code>MaxItems</code> in the request,
2692
2692
  * submit another request and include the value of <code>NextPageMarker</code> in the value
2693
2693
  * of <code>Marker</code>.</p>
2694
2694
  * @public
2695
2695
  */
2696
- NextPageMarker?: string;
2696
+ NextPageMarker?: string | undefined;
2697
2697
  }
2698
2698
  /**
2699
2699
  * @public
@@ -2717,7 +2717,7 @@ export interface ListOperationsRequest {
2717
2717
  * and Coordinated Universal time (UTC).</p>
2718
2718
  * @public
2719
2719
  */
2720
- SubmittedSince?: Date;
2720
+ SubmittedSince?: Date | undefined;
2721
2721
  /**
2722
2722
  * <p>For an initial request for a list of operations, omit this element. If the number of
2723
2723
  * operations that are not yet complete is greater than the value that you specified for
@@ -2727,33 +2727,33 @@ export interface ListOperationsRequest {
2727
2727
  * <code>Marker</code> element.</p>
2728
2728
  * @public
2729
2729
  */
2730
- Marker?: string;
2730
+ Marker?: string | undefined;
2731
2731
  /**
2732
2732
  * <p>Number of domains to be returned.</p>
2733
2733
  * <p>Default: 20</p>
2734
2734
  * @public
2735
2735
  */
2736
- MaxItems?: number;
2736
+ MaxItems?: number | undefined;
2737
2737
  /**
2738
2738
  * <p> The status of the operations. </p>
2739
2739
  * @public
2740
2740
  */
2741
- Status?: OperationStatus[];
2741
+ Status?: OperationStatus[] | undefined;
2742
2742
  /**
2743
2743
  * <p> An arrays of the domains operation types. </p>
2744
2744
  * @public
2745
2745
  */
2746
- Type?: OperationType[];
2746
+ Type?: OperationType[] | undefined;
2747
2747
  /**
2748
2748
  * <p> The sort type for returned values. </p>
2749
2749
  * @public
2750
2750
  */
2751
- SortBy?: ListOperationsSortAttributeName;
2751
+ SortBy?: ListOperationsSortAttributeName | undefined;
2752
2752
  /**
2753
2753
  * <p> The sort order for returned values, either ascending or descending. </p>
2754
2754
  * @public
2755
2755
  */
2756
- SortOrder?: SortOrder;
2756
+ SortOrder?: SortOrder | undefined;
2757
2757
  }
2758
2758
  /**
2759
2759
  * <p>OperationSummary includes the following elements.</p>
@@ -2764,32 +2764,32 @@ export interface OperationSummary {
2764
2764
  * <p>Identifier returned to track the requested action.</p>
2765
2765
  * @public
2766
2766
  */
2767
- OperationId?: string;
2767
+ OperationId?: string | undefined;
2768
2768
  /**
2769
2769
  * <p>The current status of the requested operation in the system.</p>
2770
2770
  * @public
2771
2771
  */
2772
- Status?: OperationStatus;
2772
+ Status?: OperationStatus | undefined;
2773
2773
  /**
2774
2774
  * <p>Type of the action requested.</p>
2775
2775
  * @public
2776
2776
  */
2777
- Type?: OperationType;
2777
+ Type?: OperationType | undefined;
2778
2778
  /**
2779
2779
  * <p>The date when the request was submitted.</p>
2780
2780
  * @public
2781
2781
  */
2782
- SubmittedDate?: Date;
2782
+ SubmittedDate?: Date | undefined;
2783
2783
  /**
2784
2784
  * <p> Name of the domain. </p>
2785
2785
  * @public
2786
2786
  */
2787
- DomainName?: string;
2787
+ DomainName?: string | undefined;
2788
2788
  /**
2789
2789
  * <p> Message about the operation. </p>
2790
2790
  * @public
2791
2791
  */
2792
- Message?: string;
2792
+ Message?: string | undefined;
2793
2793
  /**
2794
2794
  * <p> Automatically checks whether there are no outstanding operations on domains that need
2795
2795
  * customer attention. </p>
@@ -2823,13 +2823,13 @@ export interface OperationSummary {
2823
2823
  * </ul>
2824
2824
  * @public
2825
2825
  */
2826
- StatusFlag?: StatusFlag;
2826
+ StatusFlag?: StatusFlag | undefined;
2827
2827
  /**
2828
2828
  * <p> The date when the last change was made in Unix time format and Coordinated Universal
2829
2829
  * Time (UTC). </p>
2830
2830
  * @public
2831
2831
  */
2832
- LastUpdatedDate?: Date;
2832
+ LastUpdatedDate?: Date | undefined;
2833
2833
  }
2834
2834
  /**
2835
2835
  * <p>The ListOperations response includes the following elements.</p>
@@ -2840,14 +2840,14 @@ export interface ListOperationsResponse {
2840
2840
  * <p>Lists summaries of the operations.</p>
2841
2841
  * @public
2842
2842
  */
2843
- Operations?: OperationSummary[];
2843
+ Operations?: OperationSummary[] | undefined;
2844
2844
  /**
2845
2845
  * <p>If there are more operations than you specified for <code>MaxItems</code> in the
2846
2846
  * request, submit another request and include the value of <code>NextPageMarker</code> in
2847
2847
  * the value of <code>Marker</code>.</p>
2848
2848
  * @public
2849
2849
  */
2850
- NextPageMarker?: string;
2850
+ NextPageMarker?: string | undefined;
2851
2851
  }
2852
2852
  /**
2853
2853
  * @public
@@ -2860,7 +2860,7 @@ export interface ListPricesRequest {
2860
2860
  * by Route 53 is returned.</p>
2861
2861
  * @public
2862
2862
  */
2863
- Tld?: string;
2863
+ Tld?: string | undefined;
2864
2864
  /**
2865
2865
  * <p>For an initial request for a list of prices, omit this element. If the number of
2866
2866
  * prices that are not yet complete is greater than the value that you specified for
@@ -2872,14 +2872,14 @@ export interface ListPricesRequest {
2872
2872
  * <code>Marker</code>.</p>
2873
2873
  * @public
2874
2874
  */
2875
- Marker?: string;
2875
+ Marker?: string | undefined;
2876
2876
  /**
2877
2877
  * <p>Number of <code>Prices</code> to be returned.</p>
2878
2878
  * <p>Used only for all TLDs. If you specify a TLD, don't specify a
2879
2879
  * <code>MaxItems</code>.</p>
2880
2880
  * @public
2881
2881
  */
2882
- MaxItems?: number;
2882
+ MaxItems?: number | undefined;
2883
2883
  }
2884
2884
  /**
2885
2885
  * @public
@@ -2890,7 +2890,7 @@ export interface ListPricesResponse {
2890
2890
  * array contains only the pricing for that TLD.</p>
2891
2891
  * @public
2892
2892
  */
2893
- Prices?: DomainPrice[];
2893
+ Prices?: DomainPrice[] | undefined;
2894
2894
  /**
2895
2895
  * <p>If there are more prices than you specified for <code>MaxItems</code> in the request,
2896
2896
  * submit another request and include the value of <code>NextPageMarker</code> in the value
@@ -2899,7 +2899,7 @@ export interface ListPricesResponse {
2899
2899
  * <code>NextPageMarker</code>.</p>
2900
2900
  * @public
2901
2901
  */
2902
- NextPageMarker?: string;
2902
+ NextPageMarker?: string | undefined;
2903
2903
  }
2904
2904
  /**
2905
2905
  * <p>The ListTagsForDomainRequest includes the following elements.</p>
@@ -2923,14 +2923,14 @@ export interface Tag {
2923
2923
  * <p>Constraints: Each key can be 1-128 characters long.</p>
2924
2924
  * @public
2925
2925
  */
2926
- Key?: string;
2926
+ Key?: string | undefined;
2927
2927
  /**
2928
2928
  * <p>The value of a tag.</p>
2929
2929
  * <p>Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"</p>
2930
2930
  * <p>Constraints: Each value can be 0-256 characters long.</p>
2931
2931
  * @public
2932
2932
  */
2933
- Value?: string;
2933
+ Value?: string | undefined;
2934
2934
  }
2935
2935
  /**
2936
2936
  * <p>The ListTagsForDomain response includes the following elements.</p>
@@ -2941,7 +2941,7 @@ export interface ListTagsForDomainResponse {
2941
2941
  * <p>A list of the tags that are associated with the specified domain.</p>
2942
2942
  * @public
2943
2943
  */
2944
- TagList?: Tag[];
2944
+ TagList?: Tag[] | undefined;
2945
2945
  }
2946
2946
  /**
2947
2947
  * @public
@@ -2995,7 +2995,7 @@ export interface RegisterDomainRequest {
2995
2995
  * <p>Reserved for future use.</p>
2996
2996
  * @public
2997
2997
  */
2998
- IdnLangCode?: string;
2998
+ IdnLangCode?: string | undefined;
2999
2999
  /**
3000
3000
  * <p>The number of years that you want to register the domain for. Domains are registered
3001
3001
  * for a minimum of one year. The maximum period depends on the top-level domain. For the
@@ -3014,7 +3014,7 @@ export interface RegisterDomainRequest {
3014
3014
  * </p>
3015
3015
  * @public
3016
3016
  */
3017
- AutoRenew?: boolean;
3017
+ AutoRenew?: boolean | undefined;
3018
3018
  /**
3019
3019
  * <p>Provides detailed contact information. For information about the values that you
3020
3020
  * specify for each element, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html">ContactDetail</a>.</p>
@@ -3047,7 +3047,7 @@ export interface RegisterDomainRequest {
3047
3047
  * </p>
3048
3048
  * @public
3049
3049
  */
3050
- PrivacyProtectAdminContact?: boolean;
3050
+ PrivacyProtectAdminContact?: boolean | undefined;
3051
3051
  /**
3052
3052
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3053
3053
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3062,7 +3062,7 @@ export interface RegisterDomainRequest {
3062
3062
  * </p>
3063
3063
  * @public
3064
3064
  */
3065
- PrivacyProtectRegistrantContact?: boolean;
3065
+ PrivacyProtectRegistrantContact?: boolean | undefined;
3066
3066
  /**
3067
3067
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3068
3068
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3077,13 +3077,13 @@ export interface RegisterDomainRequest {
3077
3077
  * </p>
3078
3078
  * @public
3079
3079
  */
3080
- PrivacyProtectTechContact?: boolean;
3080
+ PrivacyProtectTechContact?: boolean | undefined;
3081
3081
  /**
3082
3082
  * <p>Provides detailed contact information. For information about the values that you
3083
3083
  * specify for each element, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html">ContactDetail</a>.</p>
3084
3084
  * @public
3085
3085
  */
3086
- BillingContact?: ContactDetail;
3086
+ BillingContact?: ContactDetail | undefined;
3087
3087
  /**
3088
3088
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3089
3089
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3096,7 +3096,7 @@ export interface RegisterDomainRequest {
3096
3096
  * </note>
3097
3097
  * @public
3098
3098
  */
3099
- PrivacyProtectBillingContact?: boolean;
3099
+ PrivacyProtectBillingContact?: boolean | undefined;
3100
3100
  }
3101
3101
  /**
3102
3102
  * <p>The RegisterDomain response includes the following element.</p>
@@ -3108,7 +3108,7 @@ export interface RegisterDomainResponse {
3108
3108
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3109
3109
  * @public
3110
3110
  */
3111
- OperationId?: string;
3111
+ OperationId?: string | undefined;
3112
3112
  }
3113
3113
  /**
3114
3114
  * <p>The RejectDomainTransferFromAnotherAwsAccount request includes the following
@@ -3136,7 +3136,7 @@ export interface RejectDomainTransferFromAnotherAwsAccountResponse {
3136
3136
  * status.</p>
3137
3137
  * @public
3138
3138
  */
3139
- OperationId?: string;
3139
+ OperationId?: string | undefined;
3140
3140
  }
3141
3141
  /**
3142
3142
  * <p>A <code>RenewDomain</code> request includes the number of years that you want to renew
@@ -3158,7 +3158,7 @@ export interface RenewDomainRequest {
3158
3158
  * <p>Default: 1</p>
3159
3159
  * @public
3160
3160
  */
3161
- DurationInYears?: number;
3161
+ DurationInYears?: number | undefined;
3162
3162
  /**
3163
3163
  * <p>The year when the registration for the domain is set to expire. This value must match
3164
3164
  * the current expiration date for the domain.</p>
@@ -3175,7 +3175,7 @@ export interface RenewDomainResponse {
3175
3175
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3176
3176
  * @public
3177
3177
  */
3178
- OperationId?: string;
3178
+ OperationId?: string | undefined;
3179
3179
  }
3180
3180
  /**
3181
3181
  * @public
@@ -3186,7 +3186,7 @@ export interface ResendContactReachabilityEmailRequest {
3186
3186
  * the registrant contact.</p>
3187
3187
  * @public
3188
3188
  */
3189
- domainName?: string;
3189
+ domainName?: string | undefined;
3190
3190
  }
3191
3191
  /**
3192
3192
  * @public
@@ -3196,13 +3196,13 @@ export interface ResendContactReachabilityEmailResponse {
3196
3196
  * <p>The domain name for which you requested a confirmation email.</p>
3197
3197
  * @public
3198
3198
  */
3199
- domainName?: string;
3199
+ domainName?: string | undefined;
3200
3200
  /**
3201
3201
  * <p>The email address for the registrant contact at the time that we sent the verification
3202
3202
  * email.</p>
3203
3203
  * @public
3204
3204
  */
3205
- emailAddress?: string;
3205
+ emailAddress?: string | undefined;
3206
3206
  /**
3207
3207
  * <p>
3208
3208
  * <code>True</code> if the email address for the registrant contact has already been
@@ -3210,7 +3210,7 @@ export interface ResendContactReachabilityEmailResponse {
3210
3210
  * verified, we don't send another confirmation email.</p>
3211
3211
  * @public
3212
3212
  */
3213
- isAlreadyVerified?: boolean;
3213
+ isAlreadyVerified?: boolean | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3243,7 +3243,7 @@ export interface RetrieveDomainAuthCodeResponse {
3243
3243
  * <p>The authorization code for the domain.</p>
3244
3244
  * @public
3245
3245
  */
3246
- AuthCode?: string;
3246
+ AuthCode?: string | undefined;
3247
3247
  }
3248
3248
  /**
3249
3249
  * <p>The TransferDomain request includes the following elements.</p>
@@ -3280,7 +3280,7 @@ export interface TransferDomainRequest {
3280
3280
  * <p>Reserved for future use.</p>
3281
3281
  * @public
3282
3282
  */
3283
- IdnLangCode?: string;
3283
+ IdnLangCode?: string | undefined;
3284
3284
  /**
3285
3285
  * <p>The number of years that you want to register the domain for. Domains are registered
3286
3286
  * for a minimum of one year. The maximum period depends on the top-level domain.</p>
@@ -3292,20 +3292,20 @@ export interface TransferDomainRequest {
3292
3292
  * <p>Contains details for the host and glue IP addresses.</p>
3293
3293
  * @public
3294
3294
  */
3295
- Nameservers?: Nameserver[];
3295
+ Nameservers?: Nameserver[] | undefined;
3296
3296
  /**
3297
3297
  * <p>The authorization code for the domain. You get this value from the current
3298
3298
  * registrar.</p>
3299
3299
  * @public
3300
3300
  */
3301
- AuthCode?: string;
3301
+ AuthCode?: string | undefined;
3302
3302
  /**
3303
3303
  * <p>Indicates whether the domain will be automatically renewed (true) or not (false). Auto
3304
3304
  * renewal only takes effect after the account is charged.</p>
3305
3305
  * <p>Default: true</p>
3306
3306
  * @public
3307
3307
  */
3308
- AutoRenew?: boolean;
3308
+ AutoRenew?: boolean | undefined;
3309
3309
  /**
3310
3310
  * <p>Provides detailed contact information.</p>
3311
3311
  * @public
@@ -3334,7 +3334,7 @@ export interface TransferDomainRequest {
3334
3334
  * </p>
3335
3335
  * @public
3336
3336
  */
3337
- PrivacyProtectAdminContact?: boolean;
3337
+ PrivacyProtectAdminContact?: boolean | undefined;
3338
3338
  /**
3339
3339
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3340
3340
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3349,7 +3349,7 @@ export interface TransferDomainRequest {
3349
3349
  * </p>
3350
3350
  * @public
3351
3351
  */
3352
- PrivacyProtectRegistrantContact?: boolean;
3352
+ PrivacyProtectRegistrantContact?: boolean | undefined;
3353
3353
  /**
3354
3354
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3355
3355
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3364,12 +3364,12 @@ export interface TransferDomainRequest {
3364
3364
  * </p>
3365
3365
  * @public
3366
3366
  */
3367
- PrivacyProtectTechContact?: boolean;
3367
+ PrivacyProtectTechContact?: boolean | undefined;
3368
3368
  /**
3369
3369
  * <p>Provides detailed contact information.</p>
3370
3370
  * @public
3371
3371
  */
3372
- BillingContact?: ContactDetail;
3372
+ BillingContact?: ContactDetail | undefined;
3373
3373
  /**
3374
3374
  * <p>
3375
3375
  * Whether you want to conceal contact information from WHOIS queries. If you specify
@@ -3384,7 +3384,7 @@ export interface TransferDomainRequest {
3384
3384
  * </note>
3385
3385
  * @public
3386
3386
  */
3387
- PrivacyProtectBillingContact?: boolean;
3387
+ PrivacyProtectBillingContact?: boolean | undefined;
3388
3388
  }
3389
3389
  /**
3390
3390
  * <p>The TransferDomain response includes the following element.</p>
@@ -3396,7 +3396,7 @@ export interface TransferDomainResponse {
3396
3396
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3397
3397
  * @public
3398
3398
  */
3399
- OperationId?: string;
3399
+ OperationId?: string | undefined;
3400
3400
  }
3401
3401
  /**
3402
3402
  * <p>The TransferDomainToAnotherAwsAccount request includes the following elements.</p>
@@ -3426,7 +3426,7 @@ export interface TransferDomainToAnotherAwsAccountResponse {
3426
3426
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3427
3427
  * @public
3428
3428
  */
3429
- OperationId?: string;
3429
+ OperationId?: string | undefined;
3430
3430
  /**
3431
3431
  * <p>To finish transferring a domain to another Amazon Web Services account, the account
3432
3432
  * that the domain is being transferred to must submit an <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html">AcceptDomainTransferFromAnotherAwsAccount</a> request. The request must include
@@ -3434,7 +3434,7 @@ export interface TransferDomainToAnotherAwsAccountResponse {
3434
3434
  * <code>TransferDomainToAnotherAwsAccount</code> response.</p>
3435
3435
  * @public
3436
3436
  */
3437
- Password?: string;
3437
+ Password?: string | undefined;
3438
3438
  }
3439
3439
  /**
3440
3440
  * <p>The UpdateDomainContact request includes the following elements.</p>
@@ -3450,27 +3450,27 @@ export interface UpdateDomainContactRequest {
3450
3450
  * <p>Provides detailed contact information.</p>
3451
3451
  * @public
3452
3452
  */
3453
- AdminContact?: ContactDetail;
3453
+ AdminContact?: ContactDetail | undefined;
3454
3454
  /**
3455
3455
  * <p>Provides detailed contact information.</p>
3456
3456
  * @public
3457
3457
  */
3458
- RegistrantContact?: ContactDetail;
3458
+ RegistrantContact?: ContactDetail | undefined;
3459
3459
  /**
3460
3460
  * <p>Provides detailed contact information.</p>
3461
3461
  * @public
3462
3462
  */
3463
- TechContact?: ContactDetail;
3463
+ TechContact?: ContactDetail | undefined;
3464
3464
  /**
3465
3465
  * <p> Customer's consent for the owner change request. Required if the domain is not free (consent price is more than $0.00).</p>
3466
3466
  * @public
3467
3467
  */
3468
- Consent?: Consent;
3468
+ Consent?: Consent | undefined;
3469
3469
  /**
3470
3470
  * <p>Provides detailed contact information.</p>
3471
3471
  * @public
3472
3472
  */
3473
- BillingContact?: ContactDetail;
3473
+ BillingContact?: ContactDetail | undefined;
3474
3474
  }
3475
3475
  /**
3476
3476
  * <p>The UpdateDomainContact response includes the following element.</p>
@@ -3482,7 +3482,7 @@ export interface UpdateDomainContactResponse {
3482
3482
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3483
3483
  * @public
3484
3484
  */
3485
- OperationId?: string;
3485
+ OperationId?: string | undefined;
3486
3486
  }
3487
3487
  /**
3488
3488
  * <p>The UpdateDomainContactPrivacy request includes the following elements.</p>
@@ -3506,7 +3506,7 @@ export interface UpdateDomainContactPrivacyRequest {
3506
3506
  * </note>
3507
3507
  * @public
3508
3508
  */
3509
- AdminPrivacy?: boolean;
3509
+ AdminPrivacy?: boolean | undefined;
3510
3510
  /**
3511
3511
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3512
3512
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3519,7 +3519,7 @@ export interface UpdateDomainContactPrivacyRequest {
3519
3519
  * </note>
3520
3520
  * @public
3521
3521
  */
3522
- RegistrantPrivacy?: boolean;
3522
+ RegistrantPrivacy?: boolean | undefined;
3523
3523
  /**
3524
3524
  * <p>Whether you want to conceal contact information from WHOIS queries. If you specify
3525
3525
  * <code>true</code>, WHOIS ("who is") queries return contact information either for
@@ -3532,7 +3532,7 @@ export interface UpdateDomainContactPrivacyRequest {
3532
3532
  * </note>
3533
3533
  * @public
3534
3534
  */
3535
- TechPrivacy?: boolean;
3535
+ TechPrivacy?: boolean | undefined;
3536
3536
  /**
3537
3537
  * <p>
3538
3538
  * Whether you want to conceal contact information from WHOIS queries. If you specify
@@ -3547,7 +3547,7 @@ export interface UpdateDomainContactPrivacyRequest {
3547
3547
  * </note>
3548
3548
  * @public
3549
3549
  */
3550
- BillingPrivacy?: boolean;
3550
+ BillingPrivacy?: boolean | undefined;
3551
3551
  }
3552
3552
  /**
3553
3553
  * <p>The UpdateDomainContactPrivacy response includes the following element.</p>
@@ -3559,7 +3559,7 @@ export interface UpdateDomainContactPrivacyResponse {
3559
3559
  * operation status, use GetOperationDetail.</p>
3560
3560
  * @public
3561
3561
  */
3562
- OperationId?: string;
3562
+ OperationId?: string | undefined;
3563
3563
  }
3564
3564
  /**
3565
3565
  * <p>Replaces the current set of name servers for the domain with the specified set of name
@@ -3582,7 +3582,7 @@ export interface UpdateDomainNameserversRequest {
3582
3582
  * <p>The authorization key for .fi domains</p>
3583
3583
  * @public
3584
3584
  */
3585
- FIAuthKey?: string;
3585
+ FIAuthKey?: string | undefined;
3586
3586
  /**
3587
3587
  * <p>A list of new name servers for the domain.</p>
3588
3588
  * @public
@@ -3599,7 +3599,7 @@ export interface UpdateDomainNameserversResponse {
3599
3599
  * use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a>.</p>
3600
3600
  * @public
3601
3601
  */
3602
- OperationId?: string;
3602
+ OperationId?: string | undefined;
3603
3603
  }
3604
3604
  /**
3605
3605
  * <p>The UpdateTagsForDomainRequest includes the following elements.</p>
@@ -3616,7 +3616,7 @@ export interface UpdateTagsForDomainRequest {
3616
3616
  * that already exists, the corresponding value will be replaced.</p>
3617
3617
  * @public
3618
3618
  */
3619
- TagsToUpdate?: Tag[];
3619
+ TagsToUpdate?: Tag[] | undefined;
3620
3620
  }
3621
3621
  /**
3622
3622
  * @public
@@ -3634,14 +3634,14 @@ export interface ViewBillingRequest {
3634
3634
  * (UTC).</p>
3635
3635
  * @public
3636
3636
  */
3637
- Start?: Date;
3637
+ Start?: Date | undefined;
3638
3638
  /**
3639
3639
  * <p>The end date and time for the time period for which you want a list of billing
3640
3640
  * records. Specify the date and time in Unix time format and Coordinated Universal time
3641
3641
  * (UTC).</p>
3642
3642
  * @public
3643
3643
  */
3644
- End?: Date;
3644
+ End?: Date | undefined;
3645
3645
  /**
3646
3646
  * <p>For an initial request for a list of billing records, omit this element. If the number
3647
3647
  * of billing records that are associated with the current Amazon Web Services account
@@ -3654,13 +3654,13 @@ export interface ViewBillingRequest {
3654
3654
  * returned in the previous response.</p>
3655
3655
  * @public
3656
3656
  */
3657
- Marker?: string;
3657
+ Marker?: string | undefined;
3658
3658
  /**
3659
3659
  * <p>The number of billing records to be returned.</p>
3660
3660
  * <p>Default: 20</p>
3661
3661
  * @public
3662
3662
  */
3663
- MaxItems?: number;
3663
+ MaxItems?: number | undefined;
3664
3664
  }
3665
3665
  /**
3666
3666
  * <p>The ViewBilling response includes the following elements.</p>
@@ -3673,12 +3673,12 @@ export interface ViewBillingResponse {
3673
3673
  * the value of <code>Marker</code>.</p>
3674
3674
  * @public
3675
3675
  */
3676
- NextPageMarker?: string;
3676
+ NextPageMarker?: string | undefined;
3677
3677
  /**
3678
3678
  * <p>A summary of billing records.</p>
3679
3679
  * @public
3680
3680
  */
3681
- BillingRecords?: BillingRecord[];
3681
+ BillingRecords?: BillingRecord[] | undefined;
3682
3682
  }
3683
3683
  /**
3684
3684
  * @internal