@aws-sdk/client-route-53-domains 3.296.0 → 3.297.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.
Files changed (44) hide show
  1. package/dist-types/Route53Domains.d.ts +35 -0
  2. package/dist-types/Route53DomainsClient.d.ts +24 -4
  3. package/dist-types/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateDelegationSignerToDomainCommand.d.ts +16 -0
  5. package/dist-types/commands/CancelDomainTransferToAnotherAwsAccountCommand.d.ts +16 -0
  6. package/dist-types/commands/CheckDomainAvailabilityCommand.d.ts +16 -0
  7. package/dist-types/commands/CheckDomainTransferabilityCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteTagsForDomainCommand.d.ts +16 -0
  10. package/dist-types/commands/DisableDomainAutoRenewCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableDomainTransferLockCommand.d.ts +16 -0
  12. package/dist-types/commands/DisassociateDelegationSignerFromDomainCommand.d.ts +16 -0
  13. package/dist-types/commands/EnableDomainAutoRenewCommand.d.ts +16 -0
  14. package/dist-types/commands/EnableDomainTransferLockCommand.d.ts +16 -0
  15. package/dist-types/commands/GetContactReachabilityStatusCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDomainDetailCommand.d.ts +16 -0
  17. package/dist-types/commands/GetDomainSuggestionsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetOperationDetailCommand.d.ts +16 -0
  19. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListPricesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForDomainCommand.d.ts +16 -0
  23. package/dist-types/commands/PushDomainCommand.d.ts +16 -0
  24. package/dist-types/commands/RegisterDomainCommand.d.ts +16 -0
  25. package/dist-types/commands/RejectDomainTransferFromAnotherAwsAccountCommand.d.ts +16 -0
  26. package/dist-types/commands/RenewDomainCommand.d.ts +16 -0
  27. package/dist-types/commands/ResendContactReachabilityEmailCommand.d.ts +16 -0
  28. package/dist-types/commands/ResendOperationAuthorizationCommand.d.ts +16 -0
  29. package/dist-types/commands/RetrieveDomainAuthCodeCommand.d.ts +16 -0
  30. package/dist-types/commands/TransferDomainCommand.d.ts +16 -0
  31. package/dist-types/commands/TransferDomainToAnotherAwsAccountCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateDomainContactCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateDomainContactPrivacyCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateDomainNameserversCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateTagsForDomainCommand.d.ts +16 -0
  36. package/dist-types/commands/ViewBillingCommand.d.ts +16 -0
  37. package/dist-types/models/Route53DomainsServiceException.d.ts +2 -0
  38. package/dist-types/models/models_0.d.ts +174 -0
  39. package/dist-types/pagination/Interfaces.d.ts +3 -0
  40. package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListPricesPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ViewBillingPaginator.d.ts +3 -0
  44. package/package.json +3 -3
@@ -35,11 +35,13 @@ import { UpdateTagsForDomainCommandInput, UpdateTagsForDomainCommandOutput } fro
35
35
  import { ViewBillingCommandInput, ViewBillingCommandOutput } from "./commands/ViewBillingCommand";
36
36
  import { Route53DomainsClient } from "./Route53DomainsClient";
37
37
  /**
38
+ * @public
38
39
  * <p>Amazon Route 53 API actions let you register domain names and perform related
39
40
  * operations.</p>
40
41
  */
41
42
  export declare class Route53Domains extends Route53DomainsClient {
42
43
  /**
44
+ * @public
43
45
  * <p>Accepts the transfer of a domain from another Amazon Web Services account to the
44
46
  * currentAmazon Web Services account. You initiate a transfer between Amazon Web Services accounts using <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html">TransferDomainToAnotherAwsAccount</a>.</p>
45
47
  * <p>If you use the CLI command at <a href="https://docs.aws.amazon.com/cli/latest/reference/route53domains/accept-domain-transfer-from-another-aws-account.html">accept-domain-transfer-from-another-aws-account</a>, use JSON format as input
@@ -52,6 +54,7 @@ export declare class Route53Domains extends Route53DomainsClient {
52
54
  acceptDomainTransferFromAnotherAwsAccount(args: AcceptDomainTransferFromAnotherAwsAccountCommandInput, cb: (err: any, data?: AcceptDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
53
55
  acceptDomainTransferFromAnotherAwsAccount(args: AcceptDomainTransferFromAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
54
56
  /**
57
+ * @public
55
58
  * <p> Creates a delegation signer (DS) record in the registry zone for this domain
56
59
  * name.</p>
57
60
  * <p>Note that creating DS record at the registry impacts DNSSEC validation of your DNS
@@ -65,6 +68,7 @@ export declare class Route53Domains extends Route53DomainsClient {
65
68
  associateDelegationSignerToDomain(args: AssociateDelegationSignerToDomainCommandInput, cb: (err: any, data?: AssociateDelegationSignerToDomainCommandOutput) => void): void;
66
69
  associateDelegationSignerToDomain(args: AssociateDelegationSignerToDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDelegationSignerToDomainCommandOutput) => void): void;
67
70
  /**
71
+ * @public
68
72
  * <p>Cancels the transfer of a domain from the current Amazon Web Services account to
69
73
  * another Amazon Web Services account. You initiate a transfer betweenAmazon Web Services accounts using <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html">TransferDomainToAnotherAwsAccount</a>. </p>
70
74
  * <important>
@@ -78,6 +82,7 @@ export declare class Route53Domains extends Route53DomainsClient {
78
82
  cancelDomainTransferToAnotherAwsAccount(args: CancelDomainTransferToAnotherAwsAccountCommandInput, cb: (err: any, data?: CancelDomainTransferToAnotherAwsAccountCommandOutput) => void): void;
79
83
  cancelDomainTransferToAnotherAwsAccount(args: CancelDomainTransferToAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDomainTransferToAnotherAwsAccountCommandOutput) => void): void;
80
84
  /**
85
+ * @public
81
86
  * <p>This operation checks the availability of one domain name. Note that if the
82
87
  * availability status of a domain is pending, you must submit another request to determine
83
88
  * the availability of the domain name.</p>
@@ -86,12 +91,14 @@ export declare class Route53Domains extends Route53DomainsClient {
86
91
  checkDomainAvailability(args: CheckDomainAvailabilityCommandInput, cb: (err: any, data?: CheckDomainAvailabilityCommandOutput) => void): void;
87
92
  checkDomainAvailability(args: CheckDomainAvailabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckDomainAvailabilityCommandOutput) => void): void;
88
93
  /**
94
+ * @public
89
95
  * <p>Checks whether a domain name can be transferred to Amazon Route 53. </p>
90
96
  */
91
97
  checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, options?: __HttpHandlerOptions): Promise<CheckDomainTransferabilityCommandOutput>;
92
98
  checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, cb: (err: any, data?: CheckDomainTransferabilityCommandOutput) => void): void;
93
99
  checkDomainTransferability(args: CheckDomainTransferabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckDomainTransferabilityCommandOutput) => void): void;
94
100
  /**
101
+ * @public
95
102
  * <p>This operation deletes the specified domain. This action is permanent. For more
96
103
  * information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-delete.html">Deleting a domain name
97
104
  * registration</a>.</p>
@@ -119,6 +126,7 @@ export declare class Route53Domains extends Route53DomainsClient {
119
126
  deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
120
127
  deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
121
128
  /**
129
+ * @public
122
130
  * <p>This operation deletes the specified tags for a domain.</p>
123
131
  * <p>All tag operations are eventually consistent; subsequent operations might not
124
132
  * immediately represent all issued operations.</p>
@@ -127,6 +135,7 @@ export declare class Route53Domains extends Route53DomainsClient {
127
135
  deleteTagsForDomain(args: DeleteTagsForDomainCommandInput, cb: (err: any, data?: DeleteTagsForDomainCommandOutput) => void): void;
128
136
  deleteTagsForDomain(args: DeleteTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsForDomainCommandOutput) => void): void;
129
137
  /**
138
+ * @public
130
139
  * <p>This operation disables automatic renewal of domain registration for the specified
131
140
  * domain.</p>
132
141
  */
@@ -134,6 +143,7 @@ export declare class Route53Domains extends Route53DomainsClient {
134
143
  disableDomainAutoRenew(args: DisableDomainAutoRenewCommandInput, cb: (err: any, data?: DisableDomainAutoRenewCommandOutput) => void): void;
135
144
  disableDomainAutoRenew(args: DisableDomainAutoRenewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDomainAutoRenewCommandOutput) => void): void;
136
145
  /**
146
+ * @public
137
147
  * <p>This operation removes the transfer lock on the domain (specifically the
138
148
  * <code>clientTransferProhibited</code> status) to allow domain transfers. We
139
149
  * recommend you refrain from performing this action unless you intend to transfer the
@@ -145,6 +155,7 @@ export declare class Route53Domains extends Route53DomainsClient {
145
155
  disableDomainTransferLock(args: DisableDomainTransferLockCommandInput, cb: (err: any, data?: DisableDomainTransferLockCommandOutput) => void): void;
146
156
  disableDomainTransferLock(args: DisableDomainTransferLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDomainTransferLockCommandOutput) => void): void;
147
157
  /**
158
+ * @public
148
159
  * <p>Deletes a delegation signer (DS) record in the registry zone for this domain
149
160
  * name.</p>
150
161
  */
@@ -152,6 +163,7 @@ export declare class Route53Domains extends Route53DomainsClient {
152
163
  disassociateDelegationSignerFromDomain(args: DisassociateDelegationSignerFromDomainCommandInput, cb: (err: any, data?: DisassociateDelegationSignerFromDomainCommandOutput) => void): void;
153
164
  disassociateDelegationSignerFromDomain(args: DisassociateDelegationSignerFromDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateDelegationSignerFromDomainCommandOutput) => void): void;
154
165
  /**
166
+ * @public
155
167
  * <p>This operation configures Amazon Route 53 to automatically renew the specified domain
156
168
  * before the domain registration expires. The cost of renewing your domain registration is
157
169
  * billed to your Amazon Web Services account.</p>
@@ -165,6 +177,7 @@ export declare class Route53Domains extends Route53DomainsClient {
165
177
  enableDomainAutoRenew(args: EnableDomainAutoRenewCommandInput, cb: (err: any, data?: EnableDomainAutoRenewCommandOutput) => void): void;
166
178
  enableDomainAutoRenew(args: EnableDomainAutoRenewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDomainAutoRenewCommandOutput) => void): void;
167
179
  /**
180
+ * @public
168
181
  * <p>This operation sets the transfer lock on the domain (specifically the
169
182
  * <code>clientTransferProhibited</code> status) to prevent domain transfers.
170
183
  * Successful submission returns an operation ID that you can use to track the progress and
@@ -175,6 +188,7 @@ export declare class Route53Domains extends Route53DomainsClient {
175
188
  enableDomainTransferLock(args: EnableDomainTransferLockCommandInput, cb: (err: any, data?: EnableDomainTransferLockCommandOutput) => void): void;
176
189
  enableDomainTransferLock(args: EnableDomainTransferLockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDomainTransferLockCommandOutput) => void): void;
177
190
  /**
191
+ * @public
178
192
  * <p>For operations that require confirmation that the email address for the registrant
179
193
  * contact is valid, such as registering a new domain, this operation returns information
180
194
  * about whether the registrant contact has responded.</p>
@@ -185,6 +199,7 @@ export declare class Route53Domains extends Route53DomainsClient {
185
199
  getContactReachabilityStatus(args: GetContactReachabilityStatusCommandInput, cb: (err: any, data?: GetContactReachabilityStatusCommandOutput) => void): void;
186
200
  getContactReachabilityStatus(args: GetContactReachabilityStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactReachabilityStatusCommandOutput) => void): void;
187
201
  /**
202
+ * @public
188
203
  * <p>This operation returns detailed information about a specified domain that is
189
204
  * associated with the current Amazon Web Services account. Contact information for the
190
205
  * domain is also returned as part of the output.</p>
@@ -193,12 +208,14 @@ export declare class Route53Domains extends Route53DomainsClient {
193
208
  getDomainDetail(args: GetDomainDetailCommandInput, cb: (err: any, data?: GetDomainDetailCommandOutput) => void): void;
194
209
  getDomainDetail(args: GetDomainDetailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainDetailCommandOutput) => void): void;
195
210
  /**
211
+ * @public
196
212
  * <p>The GetDomainSuggestions operation returns a list of suggested domain names.</p>
197
213
  */
198
214
  getDomainSuggestions(args: GetDomainSuggestionsCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainSuggestionsCommandOutput>;
199
215
  getDomainSuggestions(args: GetDomainSuggestionsCommandInput, cb: (err: any, data?: GetDomainSuggestionsCommandOutput) => void): void;
200
216
  getDomainSuggestions(args: GetDomainSuggestionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainSuggestionsCommandOutput) => void): void;
201
217
  /**
218
+ * @public
202
219
  * <p>This operation returns the current status of an operation that is not
203
220
  * completed.</p>
204
221
  */
@@ -206,6 +223,7 @@ export declare class Route53Domains extends Route53DomainsClient {
206
223
  getOperationDetail(args: GetOperationDetailCommandInput, cb: (err: any, data?: GetOperationDetailCommandOutput) => void): void;
207
224
  getOperationDetail(args: GetOperationDetailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOperationDetailCommandOutput) => void): void;
208
225
  /**
226
+ * @public
209
227
  * <p>This operation returns all the domain names registered with Amazon Route 53 for the
210
228
  * current Amazon Web Services account if no filtering conditions are used.</p>
211
229
  */
@@ -213,6 +231,7 @@ export declare class Route53Domains extends Route53DomainsClient {
213
231
  listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
214
232
  listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
215
233
  /**
234
+ * @public
216
235
  * <p>Returns information about all of the operations that return an operation ID and that
217
236
  * have ever been performed on domains that were registered by the current account. </p>
218
237
  * <p>This command runs only in the us-east-1 Region.</p>
@@ -221,6 +240,7 @@ export declare class Route53Domains extends Route53DomainsClient {
221
240
  listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
222
241
  listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
223
242
  /**
243
+ * @public
224
244
  * <p>Lists the following prices for either all the TLDs supported by Route 53, or
225
245
  * the specified TLD:</p>
226
246
  * <ul>
@@ -245,6 +265,7 @@ export declare class Route53Domains extends Route53DomainsClient {
245
265
  listPrices(args: ListPricesCommandInput, cb: (err: any, data?: ListPricesCommandOutput) => void): void;
246
266
  listPrices(args: ListPricesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPricesCommandOutput) => void): void;
247
267
  /**
268
+ * @public
248
269
  * <p>This operation returns all of the tags that are associated with the specified
249
270
  * domain.</p>
250
271
  * <p>All tag operations are eventually consistent; subsequent operations might not
@@ -254,6 +275,7 @@ export declare class Route53Domains extends Route53DomainsClient {
254
275
  listTagsForDomain(args: ListTagsForDomainCommandInput, cb: (err: any, data?: ListTagsForDomainCommandOutput) => void): void;
255
276
  listTagsForDomain(args: ListTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForDomainCommandOutput) => void): void;
256
277
  /**
278
+ * @public
257
279
  * <p> Moves a domain from Amazon Web Services to another registrar. </p>
258
280
  * <p>Supported actions:</p>
259
281
  * <ul>
@@ -267,6 +289,7 @@ export declare class Route53Domains extends Route53DomainsClient {
267
289
  pushDomain(args: PushDomainCommandInput, cb: (err: any, data?: PushDomainCommandOutput) => void): void;
268
290
  pushDomain(args: PushDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PushDomainCommandOutput) => void): void;
269
291
  /**
292
+ * @public
270
293
  * <p>This operation registers a domain. Domains are registered either by Amazon Registrar
271
294
  * (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other
272
295
  * domains). For some top-level domains (TLDs), this operation requires extra
@@ -309,6 +332,7 @@ export declare class Route53Domains extends Route53DomainsClient {
309
332
  registerDomain(args: RegisterDomainCommandInput, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
310
333
  registerDomain(args: RegisterDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDomainCommandOutput) => void): void;
311
334
  /**
335
+ * @public
312
336
  * <p>Rejects the transfer of a domain from another Amazon Web Services account to the
313
337
  * current Amazon Web Services account. You initiate a transfer betweenAmazon Web Services accounts using <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html">TransferDomainToAnotherAwsAccount</a>. </p>
314
338
  * <p>Use either <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html">ListOperations</a> or <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a> to determine whether the operation succeeded. <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html">GetOperationDetail</a> provides additional information, for example,
@@ -318,6 +342,7 @@ export declare class Route53Domains extends Route53DomainsClient {
318
342
  rejectDomainTransferFromAnotherAwsAccount(args: RejectDomainTransferFromAnotherAwsAccountCommandInput, cb: (err: any, data?: RejectDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
319
343
  rejectDomainTransferFromAnotherAwsAccount(args: RejectDomainTransferFromAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectDomainTransferFromAnotherAwsAccountCommandOutput) => void): void;
320
344
  /**
345
+ * @public
321
346
  * <p>This operation renews a domain for the specified number of years. The cost of renewing
322
347
  * your domain is billed to your Amazon Web Services account.</p>
323
348
  * <p>We recommend that you renew your domain several weeks before the expiration date. Some
@@ -330,6 +355,7 @@ export declare class Route53Domains extends Route53DomainsClient {
330
355
  renewDomain(args: RenewDomainCommandInput, cb: (err: any, data?: RenewDomainCommandOutput) => void): void;
331
356
  renewDomain(args: RenewDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewDomainCommandOutput) => void): void;
332
357
  /**
358
+ * @public
333
359
  * <p>For operations that require confirmation that the email address for the registrant
334
360
  * contact is valid, such as registering a new domain, this operation resends the
335
361
  * confirmation email to the current email address for the registrant contact.</p>
@@ -338,12 +364,14 @@ export declare class Route53Domains extends Route53DomainsClient {
338
364
  resendContactReachabilityEmail(args: ResendContactReachabilityEmailCommandInput, cb: (err: any, data?: ResendContactReachabilityEmailCommandOutput) => void): void;
339
365
  resendContactReachabilityEmail(args: ResendContactReachabilityEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendContactReachabilityEmailCommandOutput) => void): void;
340
366
  /**
367
+ * @public
341
368
  * <p> Resend the form of authorization email for this operation. </p>
342
369
  */
343
370
  resendOperationAuthorization(args: ResendOperationAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<ResendOperationAuthorizationCommandOutput>;
344
371
  resendOperationAuthorization(args: ResendOperationAuthorizationCommandInput, cb: (err: any, data?: ResendOperationAuthorizationCommandOutput) => void): void;
345
372
  resendOperationAuthorization(args: ResendOperationAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendOperationAuthorizationCommandOutput) => void): void;
346
373
  /**
374
+ * @public
347
375
  * <p>This operation returns the authorization code for the domain. To transfer a domain to
348
376
  * another registrar, you provide this value to the new registrar.</p>
349
377
  */
@@ -351,6 +379,7 @@ export declare class Route53Domains extends Route53DomainsClient {
351
379
  retrieveDomainAuthCode(args: RetrieveDomainAuthCodeCommandInput, cb: (err: any, data?: RetrieveDomainAuthCodeCommandOutput) => void): void;
352
380
  retrieveDomainAuthCode(args: RetrieveDomainAuthCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetrieveDomainAuthCodeCommandOutput) => void): void;
353
381
  /**
382
+ * @public
354
383
  * <p>Transfers a domain from another registrar to Amazon Route 53. When the transfer is
355
384
  * complete, the domain is registered either with Amazon Registrar (for .com, .net, and
356
385
  * .org domains) or with our registrar associate, Gandi (for all other TLDs).</p>
@@ -389,6 +418,7 @@ export declare class Route53Domains extends Route53DomainsClient {
389
418
  transferDomain(args: TransferDomainCommandInput, cb: (err: any, data?: TransferDomainCommandOutput) => void): void;
390
419
  transferDomain(args: TransferDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferDomainCommandOutput) => void): void;
391
420
  /**
421
+ * @public
392
422
  * <p>Transfers a domain from the current Amazon Web Services account to another Amazon Web Services account. Note the following:</p>
393
423
  * <ul>
394
424
  * <li>
@@ -419,6 +449,7 @@ export declare class Route53Domains extends Route53DomainsClient {
419
449
  transferDomainToAnotherAwsAccount(args: TransferDomainToAnotherAwsAccountCommandInput, cb: (err: any, data?: TransferDomainToAnotherAwsAccountCommandOutput) => void): void;
420
450
  transferDomainToAnotherAwsAccount(args: TransferDomainToAnotherAwsAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TransferDomainToAnotherAwsAccountCommandOutput) => void): void;
421
451
  /**
452
+ * @public
422
453
  * <p>This operation updates the contact information for a particular domain. You must
423
454
  * specify information for at least one contact: registrant, administrator, or
424
455
  * technical.</p>
@@ -430,6 +461,7 @@ export declare class Route53Domains extends Route53DomainsClient {
430
461
  updateDomainContact(args: UpdateDomainContactCommandInput, cb: (err: any, data?: UpdateDomainContactCommandOutput) => void): void;
431
462
  updateDomainContact(args: UpdateDomainContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainContactCommandOutput) => void): void;
432
463
  /**
464
+ * @public
433
465
  * <p>This operation updates the specified domain contact's privacy setting. When privacy
434
466
  * protection is enabled, contact information such as email address is replaced either with
435
467
  * contact information for Amazon Registrar (for .com, .net, and .org domains) or with
@@ -458,6 +490,7 @@ export declare class Route53Domains extends Route53DomainsClient {
458
490
  updateDomainContactPrivacy(args: UpdateDomainContactPrivacyCommandInput, cb: (err: any, data?: UpdateDomainContactPrivacyCommandOutput) => void): void;
459
491
  updateDomainContactPrivacy(args: UpdateDomainContactPrivacyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainContactPrivacyCommandOutput) => void): void;
460
492
  /**
493
+ * @public
461
494
  * <p>This operation replaces the current set of name servers for the domain with the
462
495
  * specified set of name servers. If you use Amazon Route 53 as your DNS service, specify
463
496
  * the four name servers in the delegation set for the hosted zone for the domain.</p>
@@ -469,6 +502,7 @@ export declare class Route53Domains extends Route53DomainsClient {
469
502
  updateDomainNameservers(args: UpdateDomainNameserversCommandInput, cb: (err: any, data?: UpdateDomainNameserversCommandOutput) => void): void;
470
503
  updateDomainNameservers(args: UpdateDomainNameserversCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainNameserversCommandOutput) => void): void;
471
504
  /**
505
+ * @public
472
506
  * <p>This operation adds or updates tags for a specified domain.</p>
473
507
  * <p>All tag operations are eventually consistent; subsequent operations might not
474
508
  * immediately represent all issued operations.</p>
@@ -477,6 +511,7 @@ export declare class Route53Domains extends Route53DomainsClient {
477
511
  updateTagsForDomain(args: UpdateTagsForDomainCommandInput, cb: (err: any, data?: UpdateTagsForDomainCommandOutput) => void): void;
478
512
  updateTagsForDomain(args: UpdateTagsForDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTagsForDomainCommandOutput) => void): void;
479
513
  /**
514
+ * @public
480
515
  * <p>Returns all the domain-related billing records for the current Amazon Web Services account for a specified period</p>
481
516
  */
482
517
  viewBilling(args: ViewBillingCommandInput, options?: __HttpHandlerOptions): Promise<ViewBillingCommandOutput>;
@@ -42,15 +42,24 @@ import { UpdateDomainNameserversCommandInput, UpdateDomainNameserversCommandOutp
42
42
  import { UpdateTagsForDomainCommandInput, UpdateTagsForDomainCommandOutput } from "./commands/UpdateTagsForDomainCommand";
43
43
  import { ViewBillingCommandInput, ViewBillingCommandOutput } from "./commands/ViewBillingCommand";
44
44
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
45
+ /**
46
+ * @public
47
+ */
45
48
  export type ServiceInputTypes = AcceptDomainTransferFromAnotherAwsAccountCommandInput | AssociateDelegationSignerToDomainCommandInput | CancelDomainTransferToAnotherAwsAccountCommandInput | CheckDomainAvailabilityCommandInput | CheckDomainTransferabilityCommandInput | DeleteDomainCommandInput | DeleteTagsForDomainCommandInput | DisableDomainAutoRenewCommandInput | DisableDomainTransferLockCommandInput | DisassociateDelegationSignerFromDomainCommandInput | EnableDomainAutoRenewCommandInput | EnableDomainTransferLockCommandInput | GetContactReachabilityStatusCommandInput | GetDomainDetailCommandInput | GetDomainSuggestionsCommandInput | GetOperationDetailCommandInput | ListDomainsCommandInput | ListOperationsCommandInput | ListPricesCommandInput | ListTagsForDomainCommandInput | PushDomainCommandInput | RegisterDomainCommandInput | RejectDomainTransferFromAnotherAwsAccountCommandInput | RenewDomainCommandInput | ResendContactReachabilityEmailCommandInput | ResendOperationAuthorizationCommandInput | RetrieveDomainAuthCodeCommandInput | TransferDomainCommandInput | TransferDomainToAnotherAwsAccountCommandInput | UpdateDomainContactCommandInput | UpdateDomainContactPrivacyCommandInput | UpdateDomainNameserversCommandInput | UpdateTagsForDomainCommandInput | ViewBillingCommandInput;
49
+ /**
50
+ * @public
51
+ */
46
52
  export type ServiceOutputTypes = AcceptDomainTransferFromAnotherAwsAccountCommandOutput | AssociateDelegationSignerToDomainCommandOutput | CancelDomainTransferToAnotherAwsAccountCommandOutput | CheckDomainAvailabilityCommandOutput | CheckDomainTransferabilityCommandOutput | DeleteDomainCommandOutput | DeleteTagsForDomainCommandOutput | DisableDomainAutoRenewCommandOutput | DisableDomainTransferLockCommandOutput | DisassociateDelegationSignerFromDomainCommandOutput | EnableDomainAutoRenewCommandOutput | EnableDomainTransferLockCommandOutput | GetContactReachabilityStatusCommandOutput | GetDomainDetailCommandOutput | GetDomainSuggestionsCommandOutput | GetOperationDetailCommandOutput | ListDomainsCommandOutput | ListOperationsCommandOutput | ListPricesCommandOutput | ListTagsForDomainCommandOutput | PushDomainCommandOutput | RegisterDomainCommandOutput | RejectDomainTransferFromAnotherAwsAccountCommandOutput | RenewDomainCommandOutput | ResendContactReachabilityEmailCommandOutput | ResendOperationAuthorizationCommandOutput | RetrieveDomainAuthCodeCommandOutput | TransferDomainCommandOutput | TransferDomainToAnotherAwsAccountCommandOutput | UpdateDomainContactCommandOutput | UpdateDomainContactPrivacyCommandOutput | UpdateDomainNameserversCommandOutput | UpdateTagsForDomainCommandOutput | ViewBillingCommandOutput;
53
+ /**
54
+ * @public
55
+ */
47
56
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
48
57
  /**
49
58
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
50
59
  */
51
60
  requestHandler?: __HttpHandler;
52
61
  /**
53
- * A constructor for a class implementing the {@link __Checksum} interface
62
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
54
63
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
55
64
  * @internal
56
65
  */
@@ -140,23 +149,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
140
149
  */
141
150
  logger?: __Logger;
142
151
  /**
143
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
152
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
144
153
  */
145
154
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
146
155
  }
156
+ /**
157
+ * @public
158
+ */
147
159
  type Route53DomainsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
148
160
  /**
149
- * The configuration interface of Route53DomainsClient class constructor that set the region, credentials and other options.
161
+ * @public
162
+ *
163
+ * The configuration interface of Route53DomainsClient class constructor that set the region, credentials and other options.
150
164
  */
151
165
  export interface Route53DomainsClientConfig extends Route53DomainsClientConfigType {
152
166
  }
167
+ /**
168
+ * @public
169
+ */
153
170
  type Route53DomainsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
154
171
  /**
155
- * The resolved configuration interface of Route53DomainsClient class. This is resolved and normalized from the {@link Route53DomainsClientConfig | constructor configuration interface}.
172
+ * @public
173
+ *
174
+ * The resolved configuration interface of Route53DomainsClient class. This is resolved and normalized from the {@link Route53DomainsClientConfig | constructor configuration interface}.
156
175
  */
157
176
  export interface Route53DomainsClientResolvedConfig extends Route53DomainsClientResolvedConfigType {
158
177
  }
159
178
  /**
179
+ * @public
160
180
  * <p>Amazon Route 53 API actions let you register domain names and perform related
161
181
  * operations.</p>
162
182
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AcceptDomainTransferFromAnotherAwsAccountRequest, AcceptDomainTransferFromAnotherAwsAccountResponse } from "../models/models_0";
5
5
  import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AcceptDomainTransferFromAnotherAwsAccountCommand}.
8
10
  */
9
11
  export interface AcceptDomainTransferFromAnotherAwsAccountCommandInput extends AcceptDomainTransferFromAnotherAwsAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AcceptDomainTransferFromAnotherAwsAccountCommand}.
13
17
  */
14
18
  export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput extends AcceptDomainTransferFromAnotherAwsAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Accepts the transfer of a domain from another Amazon Web Services account to the
18
23
  * currentAmazon Web Services account. You initiate a transfer between Amazon Web Services accounts using <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html">TransferDomainToAnotherAwsAccount</a>.</p>
19
24
  * <p>If you use the CLI command at <a href="https://docs.aws.amazon.com/cli/latest/reference/route53domains/accept-domain-transfer-from-another-aws-account.html">accept-domain-transfer-from-another-aws-account</a>, use JSON format as input
@@ -31,6 +36,8 @@ export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput extends
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param AcceptDomainTransferFromAnotherAwsAccountCommandInput - {@link AcceptDomainTransferFromAnotherAwsAccountCommandInput}
40
+ * @returns {@link AcceptDomainTransferFromAnotherAwsAccountCommandOutput}
34
41
  * @see {@link AcceptDomainTransferFromAnotherAwsAccountCommandInput} for command's `input` shape.
35
42
  * @see {@link AcceptDomainTransferFromAnotherAwsAccountCommandOutput} for command's `response` shape.
36
43
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
@@ -56,11 +63,20 @@ export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput extends
56
63
  export declare class AcceptDomainTransferFromAnotherAwsAccountCommand extends $Command<AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
57
64
  readonly input: AcceptDomainTransferFromAnotherAwsAccountCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: AcceptDomainTransferFromAnotherAwsAccountCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AssociateDelegationSignerToDomainRequest, AssociateDelegationSignerToDomainResponse } from "../models/models_0";
5
5
  import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateDelegationSignerToDomainCommand}.
8
10
  */
9
11
  export interface AssociateDelegationSignerToDomainCommandInput extends AssociateDelegationSignerToDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateDelegationSignerToDomainCommand}.
13
17
  */
14
18
  export interface AssociateDelegationSignerToDomainCommandOutput extends AssociateDelegationSignerToDomainResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Creates a delegation signer (DS) record in the registry zone for this domain
18
23
  * name.</p>
19
24
  * <p>Note that creating DS record at the registry impacts DNSSEC validation of your DNS
@@ -32,6 +37,8 @@ export interface AssociateDelegationSignerToDomainCommandOutput extends Associat
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param AssociateDelegationSignerToDomainCommandInput - {@link AssociateDelegationSignerToDomainCommandInput}
41
+ * @returns {@link AssociateDelegationSignerToDomainCommandOutput}
35
42
  * @see {@link AssociateDelegationSignerToDomainCommandInput} for command's `input` shape.
36
43
  * @see {@link AssociateDelegationSignerToDomainCommandOutput} for command's `response` shape.
37
44
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
@@ -65,11 +72,20 @@ export interface AssociateDelegationSignerToDomainCommandOutput extends Associat
65
72
  export declare class AssociateDelegationSignerToDomainCommand extends $Command<AssociateDelegationSignerToDomainCommandInput, AssociateDelegationSignerToDomainCommandOutput, Route53DomainsClientResolvedConfig> {
66
73
  readonly input: AssociateDelegationSignerToDomainCommandInput;
67
74
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
+ /**
76
+ * @public
77
+ */
68
78
  constructor(input: AssociateDelegationSignerToDomainCommandInput);
69
79
  /**
70
80
  * @internal
71
81
  */
72
82
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateDelegationSignerToDomainCommandInput, AssociateDelegationSignerToDomainCommandOutput>;
83
+ /**
84
+ * @internal
85
+ */
73
86
  private serialize;
87
+ /**
88
+ * @internal
89
+ */
74
90
  private deserialize;
75
91
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CancelDomainTransferToAnotherAwsAccountRequest, CancelDomainTransferToAnotherAwsAccountResponse } from "../models/models_0";
5
5
  import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CancelDomainTransferToAnotherAwsAccountCommand}.
8
10
  */
9
11
  export interface CancelDomainTransferToAnotherAwsAccountCommandInput extends CancelDomainTransferToAnotherAwsAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CancelDomainTransferToAnotherAwsAccountCommand}.
13
17
  */
14
18
  export interface CancelDomainTransferToAnotherAwsAccountCommandOutput extends CancelDomainTransferToAnotherAwsAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Cancels the transfer of a domain from the current Amazon Web Services account to
18
23
  * another Amazon Web Services account. You initiate a transfer betweenAmazon Web Services accounts using <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html">TransferDomainToAnotherAwsAccount</a>. </p>
19
24
  * <important>
@@ -32,6 +37,8 @@ export interface CancelDomainTransferToAnotherAwsAccountCommandOutput extends Ca
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param CancelDomainTransferToAnotherAwsAccountCommandInput - {@link CancelDomainTransferToAnotherAwsAccountCommandInput}
41
+ * @returns {@link CancelDomainTransferToAnotherAwsAccountCommandOutput}
35
42
  * @see {@link CancelDomainTransferToAnotherAwsAccountCommandInput} for command's `input` shape.
36
43
  * @see {@link CancelDomainTransferToAnotherAwsAccountCommandOutput} for command's `response` shape.
37
44
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface CancelDomainTransferToAnotherAwsAccountCommandOutput extends Ca
54
61
  export declare class CancelDomainTransferToAnotherAwsAccountCommand extends $Command<CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
55
62
  readonly input: CancelDomainTransferToAnotherAwsAccountCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: CancelDomainTransferToAnotherAwsAccountCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CheckDomainAvailabilityRequest, CheckDomainAvailabilityResponse } from "../models/models_0";
5
5
  import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CheckDomainAvailabilityCommand}.
8
10
  */
9
11
  export interface CheckDomainAvailabilityCommandInput extends CheckDomainAvailabilityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CheckDomainAvailabilityCommand}.
13
17
  */
14
18
  export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailabilityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation checks the availability of one domain name. Note that if the
18
23
  * availability status of a domain is pending, you must submit another request to determine
19
24
  * the availability of the domain name.</p>
@@ -27,6 +32,8 @@ export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailab
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param CheckDomainAvailabilityCommandInput - {@link CheckDomainAvailabilityCommandInput}
36
+ * @returns {@link CheckDomainAvailabilityCommandOutput}
30
37
  * @see {@link CheckDomainAvailabilityCommandInput} for command's `input` shape.
31
38
  * @see {@link CheckDomainAvailabilityCommandOutput} for command's `response` shape.
32
39
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
@@ -45,11 +52,20 @@ export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailab
45
52
  export declare class CheckDomainAvailabilityCommand extends $Command<CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput, Route53DomainsClientResolvedConfig> {
46
53
  readonly input: CheckDomainAvailabilityCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: CheckDomainAvailabilityCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CheckDomainTransferabilityRequest, CheckDomainTransferabilityResponse } from "../models/models_0";
5
5
  import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CheckDomainTransferabilityCommand}.
8
10
  */
9
11
  export interface CheckDomainTransferabilityCommandInput extends CheckDomainTransferabilityRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CheckDomainTransferabilityCommand}.
13
17
  */
14
18
  export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTransferabilityResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Checks whether a domain name can be transferred to Amazon Route 53. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTran
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CheckDomainTransferabilityCommandInput - {@link CheckDomainTransferabilityCommandInput}
34
+ * @returns {@link CheckDomainTransferabilityCommandOutput}
28
35
  * @see {@link CheckDomainTransferabilityCommandInput} for command's `input` shape.
29
36
  * @see {@link CheckDomainTransferabilityCommandOutput} for command's `response` shape.
30
37
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
@@ -43,11 +50,20 @@ export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTran
43
50
  export declare class CheckDomainTransferabilityCommand extends $Command<CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput, Route53DomainsClientResolvedConfig> {
44
51
  readonly input: CheckDomainTransferabilityCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: CheckDomainTransferabilityCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53DomainsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }