@aws-sdk/client-route-53-domains 3.288.0 → 3.290.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 (35) hide show
  1. package/dist-types/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.d.ts +17 -0
  2. package/dist-types/commands/AssociateDelegationSignerToDomainCommand.d.ts +25 -0
  3. package/dist-types/commands/CancelDomainTransferToAnotherAwsAccountCommand.d.ts +14 -0
  4. package/dist-types/commands/CheckDomainAvailabilityCommand.d.ts +10 -0
  5. package/dist-types/commands/CheckDomainTransferabilityCommand.d.ts +10 -0
  6. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteTagsForDomainCommand.d.ts +14 -0
  8. package/dist-types/commands/DisableDomainAutoRenewCommand.d.ts +10 -0
  9. package/dist-types/commands/DisableDomainTransferLockCommand.d.ts +20 -0
  10. package/dist-types/commands/DisassociateDelegationSignerFromDomainCommand.d.ts +20 -0
  11. package/dist-types/commands/EnableDomainAutoRenewCommand.d.ts +13 -0
  12. package/dist-types/commands/EnableDomainTransferLockCommand.d.ts +20 -0
  13. package/dist-types/commands/GetContactReachabilityStatusCommand.d.ts +14 -0
  14. package/dist-types/commands/GetDomainDetailCommand.d.ts +10 -0
  15. package/dist-types/commands/GetDomainSuggestionsCommand.d.ts +10 -0
  16. package/dist-types/commands/GetOperationDetailCommand.d.ts +7 -0
  17. package/dist-types/commands/ListDomainsCommand.d.ts +7 -0
  18. package/dist-types/commands/ListOperationsCommand.d.ts +7 -0
  19. package/dist-types/commands/ListPricesCommand.d.ts +10 -0
  20. package/dist-types/commands/ListTagsForDomainCommand.d.ts +14 -0
  21. package/dist-types/commands/PushDomainCommand.d.ts +14 -0
  22. package/dist-types/commands/RegisterDomainCommand.d.ts +23 -0
  23. package/dist-types/commands/RejectDomainTransferFromAnotherAwsAccountCommand.d.ts +14 -0
  24. package/dist-types/commands/RenewDomainCommand.d.ts +20 -0
  25. package/dist-types/commands/ResendContactReachabilityEmailCommand.d.ts +14 -0
  26. package/dist-types/commands/ResendOperationAuthorizationCommand.d.ts +7 -0
  27. package/dist-types/commands/RetrieveDomainAuthCodeCommand.d.ts +10 -0
  28. package/dist-types/commands/TransferDomainCommand.d.ts +23 -0
  29. package/dist-types/commands/TransferDomainToAnotherAwsAccountCommand.d.ts +17 -0
  30. package/dist-types/commands/UpdateDomainContactCommand.d.ts +20 -0
  31. package/dist-types/commands/UpdateDomainContactPrivacyCommand.d.ts +20 -0
  32. package/dist-types/commands/UpdateDomainNameserversCommand.d.ts +20 -0
  33. package/dist-types/commands/UpdateTagsForDomainCommand.d.ts +14 -0
  34. package/dist-types/commands/ViewBillingCommand.d.ts +7 -0
  35. package/package.json +29 -29
@@ -35,6 +35,23 @@ export interface AcceptDomainTransferFromAnotherAwsAccountCommandOutput extends
35
35
  * @see {@link AcceptDomainTransferFromAnotherAwsAccountCommandOutput} for command's `response` shape.
36
36
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
37
37
  *
38
+ * @throws {@link DomainLimitExceeded} (client fault)
39
+ * <p>The number of domains has exceeded the allowed threshold for the account.</p>
40
+ *
41
+ * @throws {@link InvalidInput} (client fault)
42
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
43
+ * the request might specify a domain name that doesn't belong to the account that
44
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
45
+ * password might be invalid.</p>
46
+ *
47
+ * @throws {@link OperationLimitExceeded} (client fault)
48
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
49
+ * account.</p>
50
+ *
51
+ * @throws {@link UnsupportedTLD} (client fault)
52
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
53
+ *
54
+ *
38
55
  */
39
56
  export declare class AcceptDomainTransferFromAnotherAwsAccountCommand extends $Command<AcceptDomainTransferFromAnotherAwsAccountCommandInput, AcceptDomainTransferFromAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
40
57
  readonly input: AcceptDomainTransferFromAnotherAwsAccountCommandInput;
@@ -36,6 +36,31 @@ export interface AssociateDelegationSignerToDomainCommandOutput extends Associat
36
36
  * @see {@link AssociateDelegationSignerToDomainCommandOutput} for command's `response` shape.
37
37
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
38
38
  *
39
+ * @throws {@link DnssecLimitExceeded} (client fault)
40
+ * <p> This error is returned if you call <code>AssociateDelegationSignerToDomain</code>
41
+ * when the specified domain has reached the maximum number of DS records. You can't add
42
+ * any additional DS records unless you delete an existing one first. </p>
43
+ *
44
+ * @throws {@link DuplicateRequest} (client fault)
45
+ * <p>The request is already in progress for the domain.</p>
46
+ *
47
+ * @throws {@link InvalidInput} (client fault)
48
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
49
+ * the request might specify a domain name that doesn't belong to the account that
50
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
51
+ * password might be invalid.</p>
52
+ *
53
+ * @throws {@link OperationLimitExceeded} (client fault)
54
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
55
+ * account.</p>
56
+ *
57
+ * @throws {@link TLDRulesViolation} (client fault)
58
+ * <p>The top-level domain does not support this operation.</p>
59
+ *
60
+ * @throws {@link UnsupportedTLD} (client fault)
61
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
62
+ *
63
+ *
39
64
  */
40
65
  export declare class AssociateDelegationSignerToDomainCommand extends $Command<AssociateDelegationSignerToDomainCommandInput, AssociateDelegationSignerToDomainCommandOutput, Route53DomainsClientResolvedConfig> {
41
66
  readonly input: AssociateDelegationSignerToDomainCommandInput;
@@ -36,6 +36,20 @@ export interface CancelDomainTransferToAnotherAwsAccountCommandOutput extends Ca
36
36
  * @see {@link CancelDomainTransferToAnotherAwsAccountCommandOutput} for command's `response` shape.
37
37
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
38
38
  *
39
+ * @throws {@link InvalidInput} (client fault)
40
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
41
+ * the request might specify a domain name that doesn't belong to the account that
42
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
43
+ * password might be invalid.</p>
44
+ *
45
+ * @throws {@link OperationLimitExceeded} (client fault)
46
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
47
+ * account.</p>
48
+ *
49
+ * @throws {@link UnsupportedTLD} (client fault)
50
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
51
+ *
52
+ *
39
53
  */
40
54
  export declare class CancelDomainTransferToAnotherAwsAccountCommand extends $Command<CancelDomainTransferToAnotherAwsAccountCommandInput, CancelDomainTransferToAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
41
55
  readonly input: CancelDomainTransferToAnotherAwsAccountCommandInput;
@@ -31,6 +31,16 @@ export interface CheckDomainAvailabilityCommandOutput extends CheckDomainAvailab
31
31
  * @see {@link CheckDomainAvailabilityCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ * @throws {@link UnsupportedTLD} (client fault)
41
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class CheckDomainAvailabilityCommand extends $Command<CheckDomainAvailabilityCommandInput, CheckDomainAvailabilityCommandOutput, Route53DomainsClientResolvedConfig> {
36
46
  readonly input: CheckDomainAvailabilityCommandInput;
@@ -29,6 +29,16 @@ export interface CheckDomainTransferabilityCommandOutput extends CheckDomainTran
29
29
  * @see {@link CheckDomainTransferabilityCommandOutput} for command's `response` shape.
30
30
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidInput} (client fault)
33
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
34
+ * the request might specify a domain name that doesn't belong to the account that
35
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
36
+ * password might be invalid.</p>
37
+ *
38
+ * @throws {@link UnsupportedTLD} (client fault)
39
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class CheckDomainTransferabilityCommand extends $Command<CheckDomainTransferabilityCommandInput, CheckDomainTransferabilityCommandOutput, Route53DomainsClientResolvedConfig> {
34
44
  readonly input: CheckDomainTransferabilityCommandInput;
@@ -50,6 +50,22 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
50
50
  * @see {@link DeleteDomainCommandOutput} for command's `response` shape.
51
51
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
52
52
  *
53
+ * @throws {@link DuplicateRequest} (client fault)
54
+ * <p>The request is already in progress for the domain.</p>
55
+ *
56
+ * @throws {@link InvalidInput} (client fault)
57
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
58
+ * the request might specify a domain name that doesn't belong to the account that
59
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
60
+ * password might be invalid.</p>
61
+ *
62
+ * @throws {@link TLDRulesViolation} (client fault)
63
+ * <p>The top-level domain does not support this operation.</p>
64
+ *
65
+ * @throws {@link UnsupportedTLD} (client fault)
66
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
67
+ *
68
+ *
53
69
  */
54
70
  export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, Route53DomainsClientResolvedConfig> {
55
71
  readonly input: DeleteDomainCommandInput;
@@ -31,6 +31,20 @@ export interface DeleteTagsForDomainCommandOutput extends DeleteTagsForDomainRes
31
31
  * @see {@link DeleteTagsForDomainCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ * @throws {@link OperationLimitExceeded} (client fault)
41
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
42
+ * account.</p>
43
+ *
44
+ * @throws {@link UnsupportedTLD} (client fault)
45
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
46
+ *
47
+ *
34
48
  */
35
49
  export declare class DeleteTagsForDomainCommand extends $Command<DeleteTagsForDomainCommandInput, DeleteTagsForDomainCommandOutput, Route53DomainsClientResolvedConfig> {
36
50
  readonly input: DeleteTagsForDomainCommandInput;
@@ -30,6 +30,16 @@ export interface DisableDomainAutoRenewCommandOutput extends DisableDomainAutoRe
30
30
  * @see {@link DisableDomainAutoRenewCommandOutput} for command's `response` shape.
31
31
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidInput} (client fault)
34
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
35
+ * the request might specify a domain name that doesn't belong to the account that
36
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
37
+ * password might be invalid.</p>
38
+ *
39
+ * @throws {@link UnsupportedTLD} (client fault)
40
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class DisableDomainAutoRenewCommand extends $Command<DisableDomainAutoRenewCommandInput, DisableDomainAutoRenewCommandOutput, Route53DomainsClientResolvedConfig> {
35
45
  readonly input: DisableDomainAutoRenewCommandInput;
@@ -34,6 +34,26 @@ export interface DisableDomainTransferLockCommandOutput extends DisableDomainTra
34
34
  * @see {@link DisableDomainTransferLockCommandOutput} for command's `response` shape.
35
35
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
36
36
  *
37
+ * @throws {@link DuplicateRequest} (client fault)
38
+ * <p>The request is already in progress for the domain.</p>
39
+ *
40
+ * @throws {@link InvalidInput} (client fault)
41
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
42
+ * the request might specify a domain name that doesn't belong to the account that
43
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
44
+ * password might be invalid.</p>
45
+ *
46
+ * @throws {@link OperationLimitExceeded} (client fault)
47
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
48
+ * account.</p>
49
+ *
50
+ * @throws {@link TLDRulesViolation} (client fault)
51
+ * <p>The top-level domain does not support this operation.</p>
52
+ *
53
+ * @throws {@link UnsupportedTLD} (client fault)
54
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
55
+ *
56
+ *
37
57
  */
38
58
  export declare class DisableDomainTransferLockCommand extends $Command<DisableDomainTransferLockCommandInput, DisableDomainTransferLockCommandOutput, Route53DomainsClientResolvedConfig> {
39
59
  readonly input: DisableDomainTransferLockCommandInput;
@@ -30,6 +30,26 @@ export interface DisassociateDelegationSignerFromDomainCommandOutput extends Dis
30
30
  * @see {@link DisassociateDelegationSignerFromDomainCommandOutput} for command's `response` shape.
31
31
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
32
32
  *
33
+ * @throws {@link DuplicateRequest} (client fault)
34
+ * <p>The request is already in progress for the domain.</p>
35
+ *
36
+ * @throws {@link InvalidInput} (client fault)
37
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
38
+ * the request might specify a domain name that doesn't belong to the account that
39
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
40
+ * password might be invalid.</p>
41
+ *
42
+ * @throws {@link OperationLimitExceeded} (client fault)
43
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
44
+ * account.</p>
45
+ *
46
+ * @throws {@link TLDRulesViolation} (client fault)
47
+ * <p>The top-level domain does not support this operation.</p>
48
+ *
49
+ * @throws {@link UnsupportedTLD} (client fault)
50
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class DisassociateDelegationSignerFromDomainCommand extends $Command<DisassociateDelegationSignerFromDomainCommandInput, DisassociateDelegationSignerFromDomainCommandOutput, Route53DomainsClientResolvedConfig> {
35
55
  readonly input: DisassociateDelegationSignerFromDomainCommandInput;
@@ -36,6 +36,19 @@ export interface EnableDomainAutoRenewCommandOutput extends EnableDomainAutoRene
36
36
  * @see {@link EnableDomainAutoRenewCommandOutput} for command's `response` shape.
37
37
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
38
38
  *
39
+ * @throws {@link InvalidInput} (client fault)
40
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
41
+ * the request might specify a domain name that doesn't belong to the account that
42
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
43
+ * password might be invalid.</p>
44
+ *
45
+ * @throws {@link TLDRulesViolation} (client fault)
46
+ * <p>The top-level domain does not support this operation.</p>
47
+ *
48
+ * @throws {@link UnsupportedTLD} (client fault)
49
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
50
+ *
51
+ *
39
52
  */
40
53
  export declare class EnableDomainAutoRenewCommand extends $Command<EnableDomainAutoRenewCommandInput, EnableDomainAutoRenewCommandOutput, Route53DomainsClientResolvedConfig> {
41
54
  readonly input: EnableDomainAutoRenewCommandInput;
@@ -33,6 +33,26 @@ export interface EnableDomainTransferLockCommandOutput extends EnableDomainTrans
33
33
  * @see {@link EnableDomainTransferLockCommandOutput} for command's `response` shape.
34
34
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
35
35
  *
36
+ * @throws {@link DuplicateRequest} (client fault)
37
+ * <p>The request is already in progress for the domain.</p>
38
+ *
39
+ * @throws {@link InvalidInput} (client fault)
40
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
41
+ * the request might specify a domain name that doesn't belong to the account that
42
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
43
+ * password might be invalid.</p>
44
+ *
45
+ * @throws {@link OperationLimitExceeded} (client fault)
46
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
47
+ * account.</p>
48
+ *
49
+ * @throws {@link TLDRulesViolation} (client fault)
50
+ * <p>The top-level domain does not support this operation.</p>
51
+ *
52
+ * @throws {@link UnsupportedTLD} (client fault)
53
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
54
+ *
55
+ *
36
56
  */
37
57
  export declare class EnableDomainTransferLockCommand extends $Command<EnableDomainTransferLockCommandInput, EnableDomainTransferLockCommandOutput, Route53DomainsClientResolvedConfig> {
38
58
  readonly input: EnableDomainTransferLockCommandInput;
@@ -33,6 +33,20 @@ export interface GetContactReachabilityStatusCommandOutput extends GetContactRea
33
33
  * @see {@link GetContactReachabilityStatusCommandOutput} for command's `response` shape.
34
34
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
35
35
  *
36
+ * @throws {@link InvalidInput} (client fault)
37
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
38
+ * the request might specify a domain name that doesn't belong to the account that
39
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
40
+ * password might be invalid.</p>
41
+ *
42
+ * @throws {@link OperationLimitExceeded} (client fault)
43
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
44
+ * account.</p>
45
+ *
46
+ * @throws {@link UnsupportedTLD} (client fault)
47
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
48
+ *
49
+ *
36
50
  */
37
51
  export declare class GetContactReachabilityStatusCommand extends $Command<GetContactReachabilityStatusCommandInput, GetContactReachabilityStatusCommandOutput, Route53DomainsClientResolvedConfig> {
38
52
  readonly input: GetContactReachabilityStatusCommandInput;
@@ -31,6 +31,16 @@ export interface GetDomainDetailCommandOutput extends GetDomainDetailResponse, _
31
31
  * @see {@link GetDomainDetailCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ * @throws {@link UnsupportedTLD} (client fault)
41
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class GetDomainDetailCommand extends $Command<GetDomainDetailCommandInput, GetDomainDetailCommandOutput, Route53DomainsClientResolvedConfig> {
36
46
  readonly input: GetDomainDetailCommandInput;
@@ -29,6 +29,16 @@ export interface GetDomainSuggestionsCommandOutput extends GetDomainSuggestionsR
29
29
  * @see {@link GetDomainSuggestionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidInput} (client fault)
33
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
34
+ * the request might specify a domain name that doesn't belong to the account that
35
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
36
+ * password might be invalid.</p>
37
+ *
38
+ * @throws {@link UnsupportedTLD} (client fault)
39
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class GetDomainSuggestionsCommand extends $Command<GetDomainSuggestionsCommandInput, GetDomainSuggestionsCommandOutput, Route53DomainsClientResolvedConfig> {
34
44
  readonly input: GetDomainSuggestionsCommandInput;
@@ -30,6 +30,13 @@ export interface GetOperationDetailCommandOutput extends GetOperationDetailRespo
30
30
  * @see {@link GetOperationDetailCommandOutput} for command's `response` shape.
31
31
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidInput} (client fault)
34
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
35
+ * the request might specify a domain name that doesn't belong to the account that
36
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
37
+ * password might be invalid.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class GetOperationDetailCommand extends $Command<GetOperationDetailCommandInput, GetOperationDetailCommandOutput, Route53DomainsClientResolvedConfig> {
35
42
  readonly input: GetOperationDetailCommandInput;
@@ -30,6 +30,13 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
30
30
  * @see {@link ListDomainsCommandOutput} for command's `response` shape.
31
31
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidInput} (client fault)
34
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
35
+ * the request might specify a domain name that doesn't belong to the account that
36
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
37
+ * password might be invalid.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, Route53DomainsClientResolvedConfig> {
35
42
  readonly input: ListDomainsCommandInput;
@@ -31,6 +31,13 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
31
31
  * @see {@link ListOperationsCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ *
34
41
  */
35
42
  export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, Route53DomainsClientResolvedConfig> {
36
43
  readonly input: ListOperationsCommandInput;
@@ -47,6 +47,16 @@ export interface ListPricesCommandOutput extends ListPricesResponse, __MetadataB
47
47
  * @see {@link ListPricesCommandOutput} for command's `response` shape.
48
48
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
49
49
  *
50
+ * @throws {@link InvalidInput} (client fault)
51
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
52
+ * the request might specify a domain name that doesn't belong to the account that
53
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
54
+ * password might be invalid.</p>
55
+ *
56
+ * @throws {@link UnsupportedTLD} (client fault)
57
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
58
+ *
59
+ *
50
60
  */
51
61
  export declare class ListPricesCommand extends $Command<ListPricesCommandInput, ListPricesCommandOutput, Route53DomainsClientResolvedConfig> {
52
62
  readonly input: ListPricesCommandInput;
@@ -32,6 +32,20 @@ export interface ListTagsForDomainCommandOutput extends ListTagsForDomainRespons
32
32
  * @see {@link ListTagsForDomainCommandOutput} for command's `response` shape.
33
33
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidInput} (client fault)
36
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
37
+ * the request might specify a domain name that doesn't belong to the account that
38
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
39
+ * password might be invalid.</p>
40
+ *
41
+ * @throws {@link OperationLimitExceeded} (client fault)
42
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
43
+ * account.</p>
44
+ *
45
+ * @throws {@link UnsupportedTLD} (client fault)
46
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
47
+ *
48
+ *
35
49
  */
36
50
  export declare class ListTagsForDomainCommand extends $Command<ListTagsForDomainCommandInput, ListTagsForDomainCommandOutput, Route53DomainsClientResolvedConfig> {
37
51
  readonly input: ListTagsForDomainCommandInput;
@@ -36,6 +36,20 @@ export interface PushDomainCommandOutput extends __MetadataBearer {
36
36
  * @see {@link PushDomainCommandOutput} for command's `response` shape.
37
37
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
38
38
  *
39
+ * @throws {@link InvalidInput} (client fault)
40
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
41
+ * the request might specify a domain name that doesn't belong to the account that
42
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
43
+ * password might be invalid.</p>
44
+ *
45
+ * @throws {@link OperationLimitExceeded} (client fault)
46
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
47
+ * account.</p>
48
+ *
49
+ * @throws {@link UnsupportedTLD} (client fault)
50
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
51
+ *
52
+ *
39
53
  */
40
54
  export declare class PushDomainCommand extends $Command<PushDomainCommandInput, PushDomainCommandOutput, Route53DomainsClientResolvedConfig> {
41
55
  readonly input: PushDomainCommandInput;
@@ -65,6 +65,29 @@ export interface RegisterDomainCommandOutput extends RegisterDomainResponse, __M
65
65
  * @see {@link RegisterDomainCommandOutput} for command's `response` shape.
66
66
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
67
67
  *
68
+ * @throws {@link DomainLimitExceeded} (client fault)
69
+ * <p>The number of domains has exceeded the allowed threshold for the account.</p>
70
+ *
71
+ * @throws {@link DuplicateRequest} (client fault)
72
+ * <p>The request is already in progress for the domain.</p>
73
+ *
74
+ * @throws {@link InvalidInput} (client fault)
75
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
76
+ * the request might specify a domain name that doesn't belong to the account that
77
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
78
+ * password might be invalid.</p>
79
+ *
80
+ * @throws {@link OperationLimitExceeded} (client fault)
81
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
82
+ * account.</p>
83
+ *
84
+ * @throws {@link TLDRulesViolation} (client fault)
85
+ * <p>The top-level domain does not support this operation.</p>
86
+ *
87
+ * @throws {@link UnsupportedTLD} (client fault)
88
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
89
+ *
90
+ *
68
91
  */
69
92
  export declare class RegisterDomainCommand extends $Command<RegisterDomainCommandInput, RegisterDomainCommandOutput, Route53DomainsClientResolvedConfig> {
70
93
  readonly input: RegisterDomainCommandInput;
@@ -32,6 +32,20 @@ export interface RejectDomainTransferFromAnotherAwsAccountCommandOutput extends
32
32
  * @see {@link RejectDomainTransferFromAnotherAwsAccountCommandOutput} for command's `response` shape.
33
33
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidInput} (client fault)
36
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
37
+ * the request might specify a domain name that doesn't belong to the account that
38
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
39
+ * password might be invalid.</p>
40
+ *
41
+ * @throws {@link OperationLimitExceeded} (client fault)
42
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
43
+ * account.</p>
44
+ *
45
+ * @throws {@link UnsupportedTLD} (client fault)
46
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
47
+ *
48
+ *
35
49
  */
36
50
  export declare class RejectDomainTransferFromAnotherAwsAccountCommand extends $Command<RejectDomainTransferFromAnotherAwsAccountCommandInput, RejectDomainTransferFromAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
37
51
  readonly input: RejectDomainTransferFromAnotherAwsAccountCommandInput;
@@ -35,6 +35,26 @@ export interface RenewDomainCommandOutput extends RenewDomainResponse, __Metadat
35
35
  * @see {@link RenewDomainCommandOutput} for command's `response` shape.
36
36
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
37
37
  *
38
+ * @throws {@link DuplicateRequest} (client fault)
39
+ * <p>The request is already in progress for the domain.</p>
40
+ *
41
+ * @throws {@link InvalidInput} (client fault)
42
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
43
+ * the request might specify a domain name that doesn't belong to the account that
44
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
45
+ * password might be invalid.</p>
46
+ *
47
+ * @throws {@link OperationLimitExceeded} (client fault)
48
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
49
+ * account.</p>
50
+ *
51
+ * @throws {@link TLDRulesViolation} (client fault)
52
+ * <p>The top-level domain does not support this operation.</p>
53
+ *
54
+ * @throws {@link UnsupportedTLD} (client fault)
55
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
56
+ *
57
+ *
38
58
  */
39
59
  export declare class RenewDomainCommand extends $Command<RenewDomainCommandInput, RenewDomainCommandOutput, Route53DomainsClientResolvedConfig> {
40
60
  readonly input: RenewDomainCommandInput;
@@ -31,6 +31,20 @@ export interface ResendContactReachabilityEmailCommandOutput extends ResendConta
31
31
  * @see {@link ResendContactReachabilityEmailCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ * @throws {@link OperationLimitExceeded} (client fault)
41
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
42
+ * account.</p>
43
+ *
44
+ * @throws {@link UnsupportedTLD} (client fault)
45
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
46
+ *
47
+ *
34
48
  */
35
49
  export declare class ResendContactReachabilityEmailCommand extends $Command<ResendContactReachabilityEmailCommandInput, ResendContactReachabilityEmailCommandOutput, Route53DomainsClientResolvedConfig> {
36
50
  readonly input: ResendContactReachabilityEmailCommandInput;
@@ -29,6 +29,13 @@ export interface ResendOperationAuthorizationCommandOutput extends __MetadataBea
29
29
  * @see {@link ResendOperationAuthorizationCommandOutput} for command's `response` shape.
30
30
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidInput} (client fault)
33
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
34
+ * the request might specify a domain name that doesn't belong to the account that
35
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
36
+ * password might be invalid.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class ResendOperationAuthorizationCommand extends $Command<ResendOperationAuthorizationCommandInput, ResendOperationAuthorizationCommandOutput, Route53DomainsClientResolvedConfig> {
34
41
  readonly input: ResendOperationAuthorizationCommandInput;
@@ -30,6 +30,16 @@ export interface RetrieveDomainAuthCodeCommandOutput extends RetrieveDomainAuthC
30
30
  * @see {@link RetrieveDomainAuthCodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
32
32
  *
33
+ * @throws {@link InvalidInput} (client fault)
34
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
35
+ * the request might specify a domain name that doesn't belong to the account that
36
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
37
+ * password might be invalid.</p>
38
+ *
39
+ * @throws {@link UnsupportedTLD} (client fault)
40
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class RetrieveDomainAuthCodeCommand extends $Command<RetrieveDomainAuthCodeCommandInput, RetrieveDomainAuthCodeCommandOutput, Route53DomainsClientResolvedConfig> {
35
45
  readonly input: RetrieveDomainAuthCodeCommandInput;
@@ -61,6 +61,29 @@ export interface TransferDomainCommandOutput extends TransferDomainResponse, __M
61
61
  * @see {@link TransferDomainCommandOutput} for command's `response` shape.
62
62
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
63
63
  *
64
+ * @throws {@link DomainLimitExceeded} (client fault)
65
+ * <p>The number of domains has exceeded the allowed threshold for the account.</p>
66
+ *
67
+ * @throws {@link DuplicateRequest} (client fault)
68
+ * <p>The request is already in progress for the domain.</p>
69
+ *
70
+ * @throws {@link InvalidInput} (client fault)
71
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
72
+ * the request might specify a domain name that doesn't belong to the account that
73
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
74
+ * password might be invalid.</p>
75
+ *
76
+ * @throws {@link OperationLimitExceeded} (client fault)
77
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
78
+ * account.</p>
79
+ *
80
+ * @throws {@link TLDRulesViolation} (client fault)
81
+ * <p>The top-level domain does not support this operation.</p>
82
+ *
83
+ * @throws {@link UnsupportedTLD} (client fault)
84
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
85
+ *
86
+ *
64
87
  */
65
88
  export declare class TransferDomainCommand extends $Command<TransferDomainCommandInput, TransferDomainCommandOutput, Route53DomainsClientResolvedConfig> {
66
89
  readonly input: TransferDomainCommandInput;
@@ -53,6 +53,23 @@ export interface TransferDomainToAnotherAwsAccountCommandOutput extends Transfer
53
53
  * @see {@link TransferDomainToAnotherAwsAccountCommandOutput} for command's `response` shape.
54
54
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
55
55
  *
56
+ * @throws {@link DuplicateRequest} (client fault)
57
+ * <p>The request is already in progress for the domain.</p>
58
+ *
59
+ * @throws {@link InvalidInput} (client fault)
60
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
61
+ * the request might specify a domain name that doesn't belong to the account that
62
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
63
+ * password might be invalid.</p>
64
+ *
65
+ * @throws {@link OperationLimitExceeded} (client fault)
66
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
67
+ * account.</p>
68
+ *
69
+ * @throws {@link UnsupportedTLD} (client fault)
70
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
71
+ *
72
+ *
56
73
  */
57
74
  export declare class TransferDomainToAnotherAwsAccountCommand extends $Command<TransferDomainToAnotherAwsAccountCommandInput, TransferDomainToAnotherAwsAccountCommandOutput, Route53DomainsClientResolvedConfig> {
58
75
  readonly input: TransferDomainToAnotherAwsAccountCommandInput;
@@ -34,6 +34,26 @@ export interface UpdateDomainContactCommandOutput extends UpdateDomainContactRes
34
34
  * @see {@link UpdateDomainContactCommandOutput} for command's `response` shape.
35
35
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
36
36
  *
37
+ * @throws {@link DuplicateRequest} (client fault)
38
+ * <p>The request is already in progress for the domain.</p>
39
+ *
40
+ * @throws {@link InvalidInput} (client fault)
41
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
42
+ * the request might specify a domain name that doesn't belong to the account that
43
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
44
+ * password might be invalid.</p>
45
+ *
46
+ * @throws {@link OperationLimitExceeded} (client fault)
47
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
48
+ * account.</p>
49
+ *
50
+ * @throws {@link TLDRulesViolation} (client fault)
51
+ * <p>The top-level domain does not support this operation.</p>
52
+ *
53
+ * @throws {@link UnsupportedTLD} (client fault)
54
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
55
+ *
56
+ *
37
57
  */
38
58
  export declare class UpdateDomainContactCommand extends $Command<UpdateDomainContactCommandInput, UpdateDomainContactCommandOutput, Route53DomainsClientResolvedConfig> {
39
59
  readonly input: UpdateDomainContactCommandInput;
@@ -51,6 +51,26 @@ export interface UpdateDomainContactPrivacyCommandOutput extends UpdateDomainCon
51
51
  * @see {@link UpdateDomainContactPrivacyCommandOutput} for command's `response` shape.
52
52
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
53
53
  *
54
+ * @throws {@link DuplicateRequest} (client fault)
55
+ * <p>The request is already in progress for the domain.</p>
56
+ *
57
+ * @throws {@link InvalidInput} (client fault)
58
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
59
+ * the request might specify a domain name that doesn't belong to the account that
60
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
61
+ * password might be invalid.</p>
62
+ *
63
+ * @throws {@link OperationLimitExceeded} (client fault)
64
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
65
+ * account.</p>
66
+ *
67
+ * @throws {@link TLDRulesViolation} (client fault)
68
+ * <p>The top-level domain does not support this operation.</p>
69
+ *
70
+ * @throws {@link UnsupportedTLD} (client fault)
71
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
72
+ *
73
+ *
54
74
  */
55
75
  export declare class UpdateDomainContactPrivacyCommand extends $Command<UpdateDomainContactPrivacyCommandInput, UpdateDomainContactPrivacyCommandOutput, Route53DomainsClientResolvedConfig> {
56
76
  readonly input: UpdateDomainContactPrivacyCommandInput;
@@ -34,6 +34,26 @@ export interface UpdateDomainNameserversCommandOutput extends UpdateDomainNamese
34
34
  * @see {@link UpdateDomainNameserversCommandOutput} for command's `response` shape.
35
35
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
36
36
  *
37
+ * @throws {@link DuplicateRequest} (client fault)
38
+ * <p>The request is already in progress for the domain.</p>
39
+ *
40
+ * @throws {@link InvalidInput} (client fault)
41
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
42
+ * the request might specify a domain name that doesn't belong to the account that
43
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
44
+ * password might be invalid.</p>
45
+ *
46
+ * @throws {@link OperationLimitExceeded} (client fault)
47
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
48
+ * account.</p>
49
+ *
50
+ * @throws {@link TLDRulesViolation} (client fault)
51
+ * <p>The top-level domain does not support this operation.</p>
52
+ *
53
+ * @throws {@link UnsupportedTLD} (client fault)
54
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
55
+ *
56
+ *
37
57
  */
38
58
  export declare class UpdateDomainNameserversCommand extends $Command<UpdateDomainNameserversCommandInput, UpdateDomainNameserversCommandOutput, Route53DomainsClientResolvedConfig> {
39
59
  readonly input: UpdateDomainNameserversCommandInput;
@@ -31,6 +31,20 @@ export interface UpdateTagsForDomainCommandOutput extends UpdateTagsForDomainRes
31
31
  * @see {@link UpdateTagsForDomainCommandOutput} for command's `response` shape.
32
32
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidInput} (client fault)
35
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
36
+ * the request might specify a domain name that doesn't belong to the account that
37
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
38
+ * password might be invalid.</p>
39
+ *
40
+ * @throws {@link OperationLimitExceeded} (client fault)
41
+ * <p>The number of operations or jobs running exceeded the allowed threshold for the
42
+ * account.</p>
43
+ *
44
+ * @throws {@link UnsupportedTLD} (client fault)
45
+ * <p>Amazon Route 53 does not support this top-level domain (TLD).</p>
46
+ *
47
+ *
34
48
  */
35
49
  export declare class UpdateTagsForDomainCommand extends $Command<UpdateTagsForDomainCommandInput, UpdateTagsForDomainCommandOutput, Route53DomainsClientResolvedConfig> {
36
50
  readonly input: UpdateTagsForDomainCommandInput;
@@ -29,6 +29,13 @@ export interface ViewBillingCommandOutput extends ViewBillingResponse, __Metadat
29
29
  * @see {@link ViewBillingCommandOutput} for command's `response` shape.
30
30
  * @see {@link Route53DomainsClientResolvedConfig | config} for Route53DomainsClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidInput} (client fault)
33
+ * <p>The requested item is not acceptable. For example, for APIs that accept a domain name,
34
+ * the request might specify a domain name that doesn't belong to the account that
35
+ * submitted the request. For <code>AcceptDomainTransferFromAnotherAwsAccount</code>, the
36
+ * password might be invalid.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class ViewBillingCommand extends $Command<ViewBillingCommandInput, ViewBillingCommandOutput, Route53DomainsClientResolvedConfig> {
34
41
  readonly input: ViewBillingCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route-53-domains",
3
3
  "description": "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.287.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },