aws-sdk 2.658.0 → 2.662.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.
- package/CHANGELOG.md +30 -1
- package/README.md +1 -1
- package/apis/apigatewayv2-2018-11-29.min.json +51 -0
- package/apis/application-autoscaling-2016-02-06.examples.json +6 -169
- package/apis/ce-2017-10-25.min.json +123 -88
- package/apis/ce-2017-10-25.paginators.json +5 -0
- package/apis/codeguru-reviewer-2019-09-19.min.json +341 -3
- package/apis/codeguru-reviewer-2019-09-19.paginators.json +15 -0
- package/apis/elasticmapreduce-2009-03-31.min.json +98 -17
- package/apis/es-2015-01-01.min.json +3 -0
- package/apis/firehose-2015-08-04.min.json +74 -30
- package/apis/guardduty-2017-11-28.min.json +165 -16
- package/apis/guardduty-2017-11-28.paginators.json +6 -0
- package/apis/iotevents-2018-07-27.min.json +102 -20
- package/apis/mediapackage-vod-2018-11-07.min.json +173 -36
- package/apis/metadata.json +3 -0
- package/apis/pinpoint-2016-12-01.min.json +363 -335
- package/apis/ram-2018-01-04.min.json +30 -0
- package/apis/rds-2014-10-31.min.json +2 -0
- package/apis/redshift-2012-12-01.min.json +154 -46
- package/apis/redshift-2012-12-01.paginators.json +6 -0
- package/apis/route53domains-2014-05-15.min.json +97 -24
- package/apis/storagegateway-2013-06-30.min.json +99 -14
- package/apis/synthetics-2017-10-11.examples.json +5 -0
- package/apis/synthetics-2017-10-11.min.json +578 -0
- package/apis/synthetics-2017-10-11.paginators.json +24 -0
- package/apis/transfer-2018-11-05.min.json +41 -24
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/apigatewayv2.d.ts +40 -2
- package/clients/applicationautoscaling.d.ts +83 -83
- package/clients/codegurureviewer.d.ts +417 -10
- package/clients/costexplorer.d.ts +66 -28
- package/clients/emr.d.ts +91 -6
- package/clients/es.d.ts +4 -0
- package/clients/firehose.d.ts +50 -8
- package/clients/fms.d.ts +6 -6
- package/clients/glue.d.ts +4 -4
- package/clients/guardduty.d.ts +340 -224
- package/clients/iotevents.d.ts +106 -0
- package/clients/mediapackagevod.d.ts +55 -0
- package/clients/pinpoint.d.ts +115 -77
- package/clients/ram.d.ts +41 -2
- package/clients/rds.d.ts +13 -5
- package/clients/redshift.d.ts +162 -1
- package/clients/route53domains.d.ts +140 -47
- package/clients/storagegateway.d.ts +137 -60
- package/clients/synthetics.d.ts +656 -0
- package/clients/synthetics.js +18 -0
- package/clients/transfer.d.ts +154 -123
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +61 -24
- package/dist/aws-sdk.js +664 -222
- package/dist/aws-sdk.min.js +74 -74
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,22 @@ declare class Route53Domains extends Service {
|
|
|
11
11
|
*/
|
|
12
12
|
constructor(options?: Route53Domains.Types.ClientConfiguration)
|
|
13
13
|
config: Config & Route53Domains.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Accepts the transfer of a domain from another AWS account to the current AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
16
|
+
*/
|
|
17
|
+
acceptDomainTransferFromAnotherAwsAccount(params: Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountRequest, callback?: (err: AWSError, data: Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Accepts the transfer of a domain from another AWS account to the current AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
20
|
+
*/
|
|
21
|
+
acceptDomainTransferFromAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Cancels the transfer of a domain from the current AWS account to another AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. You must cancel the transfer before the other AWS account accepts the transfer using AcceptDomainTransferFromAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
24
|
+
*/
|
|
25
|
+
cancelDomainTransferToAnotherAwsAccount(params: Route53Domains.Types.CancelDomainTransferToAnotherAwsAccountRequest, callback?: (err: AWSError, data: Route53Domains.Types.CancelDomainTransferToAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.CancelDomainTransferToAnotherAwsAccountResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Cancels the transfer of a domain from the current AWS account to another AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. You must cancel the transfer before the other AWS account accepts the transfer using AcceptDomainTransferFromAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
28
|
+
*/
|
|
29
|
+
cancelDomainTransferToAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.CancelDomainTransferToAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.CancelDomainTransferToAnotherAwsAccountResponse, AWSError>;
|
|
14
30
|
/**
|
|
15
31
|
* This operation checks the availability of one domain name. Note that if the availability status of a domain is pending, you must submit another request to determine the availability of the domain name.
|
|
16
32
|
*/
|
|
@@ -52,11 +68,11 @@ declare class Route53Domains extends Service {
|
|
|
52
68
|
*/
|
|
53
69
|
disableDomainTransferLock(callback?: (err: AWSError, data: Route53Domains.Types.DisableDomainTransferLockResponse) => void): Request<Route53Domains.Types.DisableDomainTransferLockResponse, AWSError>;
|
|
54
70
|
/**
|
|
55
|
-
* This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your AWS account. The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see
|
|
71
|
+
* This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your AWS account. The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see Domains That You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. Route 53 requires that you renew before the end of the renewal period so we can complete processing before the deadline.
|
|
56
72
|
*/
|
|
57
73
|
enableDomainAutoRenew(params: Route53Domains.Types.EnableDomainAutoRenewRequest, callback?: (err: AWSError, data: Route53Domains.Types.EnableDomainAutoRenewResponse) => void): Request<Route53Domains.Types.EnableDomainAutoRenewResponse, AWSError>;
|
|
58
74
|
/**
|
|
59
|
-
* This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your AWS account. The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see
|
|
75
|
+
* This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your AWS account. The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see Domains That You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. Route 53 requires that you renew before the end of the renewal period so we can complete processing before the deadline.
|
|
60
76
|
*/
|
|
61
77
|
enableDomainAutoRenew(callback?: (err: AWSError, data: Route53Domains.Types.EnableDomainAutoRenewResponse) => void): Request<Route53Domains.Types.EnableDomainAutoRenewResponse, AWSError>;
|
|
62
78
|
/**
|
|
@@ -84,11 +100,11 @@ declare class Route53Domains extends Service {
|
|
|
84
100
|
*/
|
|
85
101
|
getDomainDetail(callback?: (err: AWSError, data: Route53Domains.Types.GetDomainDetailResponse) => void): Request<Route53Domains.Types.GetDomainDetailResponse, AWSError>;
|
|
86
102
|
/**
|
|
87
|
-
* The GetDomainSuggestions operation returns a list of suggested domain names
|
|
103
|
+
* The GetDomainSuggestions operation returns a list of suggested domain names.
|
|
88
104
|
*/
|
|
89
105
|
getDomainSuggestions(params: Route53Domains.Types.GetDomainSuggestionsRequest, callback?: (err: AWSError, data: Route53Domains.Types.GetDomainSuggestionsResponse) => void): Request<Route53Domains.Types.GetDomainSuggestionsResponse, AWSError>;
|
|
90
106
|
/**
|
|
91
|
-
* The GetDomainSuggestions operation returns a list of suggested domain names
|
|
107
|
+
* The GetDomainSuggestions operation returns a list of suggested domain names.
|
|
92
108
|
*/
|
|
93
109
|
getDomainSuggestions(callback?: (err: AWSError, data: Route53Domains.Types.GetDomainSuggestionsResponse) => void): Request<Route53Domains.Types.GetDomainSuggestionsResponse, AWSError>;
|
|
94
110
|
/**
|
|
@@ -108,11 +124,11 @@ declare class Route53Domains extends Service {
|
|
|
108
124
|
*/
|
|
109
125
|
listDomains(callback?: (err: AWSError, data: Route53Domains.Types.ListDomainsResponse) => void): Request<Route53Domains.Types.ListDomainsResponse, AWSError>;
|
|
110
126
|
/**
|
|
111
|
-
*
|
|
127
|
+
* Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account.
|
|
112
128
|
*/
|
|
113
129
|
listOperations(params: Route53Domains.Types.ListOperationsRequest, callback?: (err: AWSError, data: Route53Domains.Types.ListOperationsResponse) => void): Request<Route53Domains.Types.ListOperationsResponse, AWSError>;
|
|
114
130
|
/**
|
|
115
|
-
*
|
|
131
|
+
* Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account.
|
|
116
132
|
*/
|
|
117
133
|
listOperations(callback?: (err: AWSError, data: Route53Domains.Types.ListOperationsResponse) => void): Request<Route53Domains.Types.ListOperationsResponse, AWSError>;
|
|
118
134
|
/**
|
|
@@ -124,13 +140,21 @@ declare class Route53Domains extends Service {
|
|
|
124
140
|
*/
|
|
125
141
|
listTagsForDomain(callback?: (err: AWSError, data: Route53Domains.Types.ListTagsForDomainResponse) => void): Request<Route53Domains.Types.ListTagsForDomainResponse, AWSError>;
|
|
126
142
|
/**
|
|
127
|
-
* This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a
|
|
143
|
+
* This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the registrant, admin, and tech contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your AWS account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
|
|
128
144
|
*/
|
|
129
145
|
registerDomain(params: Route53Domains.Types.RegisterDomainRequest, callback?: (err: AWSError, data: Route53Domains.Types.RegisterDomainResponse) => void): Request<Route53Domains.Types.RegisterDomainResponse, AWSError>;
|
|
130
146
|
/**
|
|
131
|
-
* This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a
|
|
147
|
+
* This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the registrant, admin, and tech contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your AWS account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
|
|
132
148
|
*/
|
|
133
149
|
registerDomain(callback?: (err: AWSError, data: Route53Domains.Types.RegisterDomainResponse) => void): Request<Route53Domains.Types.RegisterDomainResponse, AWSError>;
|
|
150
|
+
/**
|
|
151
|
+
* Rejects the transfer of a domain from another AWS account to the current AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
152
|
+
*/
|
|
153
|
+
rejectDomainTransferFromAnotherAwsAccount(params: Route53Domains.Types.RejectDomainTransferFromAnotherAwsAccountRequest, callback?: (err: AWSError, data: Route53Domains.Types.RejectDomainTransferFromAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.RejectDomainTransferFromAnotherAwsAccountResponse, AWSError>;
|
|
154
|
+
/**
|
|
155
|
+
* Rejects the transfer of a domain from another AWS account to the current AWS account. You initiate a transfer between AWS accounts using TransferDomainToAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
156
|
+
*/
|
|
157
|
+
rejectDomainTransferFromAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.RejectDomainTransferFromAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.RejectDomainTransferFromAnotherAwsAccountResponse, AWSError>;
|
|
134
158
|
/**
|
|
135
159
|
* This operation renews a domain for the specified number of years. The cost of renewing your domain is billed to your AWS account. We recommend that you renew your domain several weeks before the expiration date. Some TLD registries delete domains before the expiration date if you haven't renewed far enough in advance. For more information about renewing domain registration, see Renewing Registration for a Domain in the Amazon Route 53 Developer Guide.
|
|
136
160
|
*/
|
|
@@ -156,13 +180,21 @@ declare class Route53Domains extends Service {
|
|
|
156
180
|
*/
|
|
157
181
|
retrieveDomainAuthCode(callback?: (err: AWSError, data: Route53Domains.Types.RetrieveDomainAuthCodeResponse) => void): Request<Route53Domains.Types.RetrieveDomainAuthCodeResponse, AWSError>;
|
|
158
182
|
/**
|
|
159
|
-
*
|
|
183
|
+
* Transfers a domain from another registrar to Amazon Route 53. When the transfer is complete, the domain is registered either with Amazon Registrar (for .com, .net, and .org domains) or with our registrar associate, Gandi (for all other TLDs). For more information about transferring domains, see the following topics: For transfer requirements, a detailed procedure, and information about viewing the status of a domain that you're transferring to Route 53, see Transferring Registration for a Domain to Amazon Route 53 in the Amazon Route 53 Developer Guide. For information about how to transfer a domain from one AWS account to another, see TransferDomainToAnotherAwsAccount. For information about how to transfer a domain to another domain registrar, see Transferring a Domain from Amazon Route 53 to Another Registrar in the Amazon Route 53 Developer Guide. If the registrar for your domain is also the DNS service provider for the domain, we highly recommend that you transfer your DNS service to Route 53 or to another DNS service provider before you transfer your registration. Some registrars provide free DNS service when you purchase a domain registration. When you transfer the registration, the previous registrar will not renew your domain registration and could end your DNS service at any time. If the registrar for your domain is also the DNS service provider for the domain and you don't transfer DNS service to another provider, your website, email, and the web applications associated with the domain might become unavailable. If the transfer is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the transfer doesn't complete successfully, the domain registrant will be notified by email.
|
|
160
184
|
*/
|
|
161
185
|
transferDomain(params: Route53Domains.Types.TransferDomainRequest, callback?: (err: AWSError, data: Route53Domains.Types.TransferDomainResponse) => void): Request<Route53Domains.Types.TransferDomainResponse, AWSError>;
|
|
162
186
|
/**
|
|
163
|
-
*
|
|
187
|
+
* Transfers a domain from another registrar to Amazon Route 53. When the transfer is complete, the domain is registered either with Amazon Registrar (for .com, .net, and .org domains) or with our registrar associate, Gandi (for all other TLDs). For more information about transferring domains, see the following topics: For transfer requirements, a detailed procedure, and information about viewing the status of a domain that you're transferring to Route 53, see Transferring Registration for a Domain to Amazon Route 53 in the Amazon Route 53 Developer Guide. For information about how to transfer a domain from one AWS account to another, see TransferDomainToAnotherAwsAccount. For information about how to transfer a domain to another domain registrar, see Transferring a Domain from Amazon Route 53 to Another Registrar in the Amazon Route 53 Developer Guide. If the registrar for your domain is also the DNS service provider for the domain, we highly recommend that you transfer your DNS service to Route 53 or to another DNS service provider before you transfer your registration. Some registrars provide free DNS service when you purchase a domain registration. When you transfer the registration, the previous registrar will not renew your domain registration and could end your DNS service at any time. If the registrar for your domain is also the DNS service provider for the domain and you don't transfer DNS service to another provider, your website, email, and the web applications associated with the domain might become unavailable. If the transfer is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the transfer doesn't complete successfully, the domain registrant will be notified by email.
|
|
164
188
|
*/
|
|
165
189
|
transferDomain(callback?: (err: AWSError, data: Route53Domains.Types.TransferDomainResponse) => void): Request<Route53Domains.Types.TransferDomainResponse, AWSError>;
|
|
190
|
+
/**
|
|
191
|
+
* Transfers a domain from the current AWS account to another AWS account. Note the following: The AWS account that you're transferring the domain to must accept the transfer. If the other account doesn't accept the transfer within 3 days, we cancel the transfer. See AcceptDomainTransferFromAnotherAwsAccount. You can cancel the transfer before the other account accepts it. See CancelDomainTransferToAnotherAwsAccount. The other account can reject the transfer. See RejectDomainTransferFromAnotherAwsAccount. When you transfer a domain from one AWS account to another, Route 53 doesn't transfer the hosted zone that is associated with the domain. DNS resolution isn't affected if the domain and the hosted zone are owned by separate accounts, so transferring the hosted zone is optional. For information about transferring the hosted zone to another AWS account, see Migrating a Hosted Zone to a Different AWS Account in the Amazon Route 53 Developer Guide. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
192
|
+
*/
|
|
193
|
+
transferDomainToAnotherAwsAccount(params: Route53Domains.Types.TransferDomainToAnotherAwsAccountRequest, callback?: (err: AWSError, data: Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse, AWSError>;
|
|
194
|
+
/**
|
|
195
|
+
* Transfers a domain from the current AWS account to another AWS account. Note the following: The AWS account that you're transferring the domain to must accept the transfer. If the other account doesn't accept the transfer within 3 days, we cancel the transfer. See AcceptDomainTransferFromAnotherAwsAccount. You can cancel the transfer before the other account accepts it. See CancelDomainTransferToAnotherAwsAccount. The other account can reject the transfer. See RejectDomainTransferFromAnotherAwsAccount. When you transfer a domain from one AWS account to another, Route 53 doesn't transfer the hosted zone that is associated with the domain. DNS resolution isn't affected if the domain and the hosted zone are owned by separate accounts, so transferring the hosted zone is optional. For information about transferring the hosted zone to another AWS account, see Migrating a Hosted Zone to a Different AWS Account in the Amazon Route 53 Developer Guide. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
|
|
196
|
+
*/
|
|
197
|
+
transferDomainToAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse, AWSError>;
|
|
166
198
|
/**
|
|
167
199
|
* This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
|
|
168
200
|
*/
|
|
@@ -172,11 +204,11 @@ declare class Route53Domains extends Service {
|
|
|
172
204
|
*/
|
|
173
205
|
updateDomainContact(callback?: (err: AWSError, data: Route53Domains.Types.UpdateDomainContactResponse) => void): Request<Route53Domains.Types.UpdateDomainContactResponse, AWSError>;
|
|
174
206
|
/**
|
|
175
|
-
* This operation updates the specified domain contact's privacy setting. When privacy protection is enabled, contact information such as email address is replaced either with contact information for Amazon Registrar (for .com, .net, and .org domains) or with contact information for our registrar associate, Gandi. This operation affects only the contact information for the specified contact type (registrant, administrator, or tech). If the request succeeds, Amazon Route 53 returns an operation ID that you can use with GetOperationDetail to track the progress and completion of the action. If the request doesn't complete successfully, the domain registrant will be notified by email.
|
|
207
|
+
* This operation updates the specified domain contact's privacy setting. When privacy protection is enabled, contact information such as email address is replaced either with contact information for Amazon Registrar (for .com, .net, and .org domains) or with contact information for our registrar associate, Gandi. This operation affects only the contact information for the specified contact type (registrant, administrator, or tech). If the request succeeds, Amazon Route 53 returns an operation ID that you can use with GetOperationDetail to track the progress and completion of the action. If the request doesn't complete successfully, the domain registrant will be notified by email. By disabling the privacy service via API, you consent to the publication of the contact information provided for this domain via the public WHOIS database. You certify that you are the registrant of this domain name and have the authority to make this decision. You may withdraw your consent at any time by enabling privacy protection using either UpdateDomainContactPrivacy or the Route 53 console. Enabling privacy protection removes the contact information provided for this domain from the WHOIS database. For more information on our privacy practices, see https://aws.amazon.com/privacy/.
|
|
176
208
|
*/
|
|
177
209
|
updateDomainContactPrivacy(params: Route53Domains.Types.UpdateDomainContactPrivacyRequest, callback?: (err: AWSError, data: Route53Domains.Types.UpdateDomainContactPrivacyResponse) => void): Request<Route53Domains.Types.UpdateDomainContactPrivacyResponse, AWSError>;
|
|
178
210
|
/**
|
|
179
|
-
* This operation updates the specified domain contact's privacy setting. When privacy protection is enabled, contact information such as email address is replaced either with contact information for Amazon Registrar (for .com, .net, and .org domains) or with contact information for our registrar associate, Gandi. This operation affects only the contact information for the specified contact type (registrant, administrator, or tech). If the request succeeds, Amazon Route 53 returns an operation ID that you can use with GetOperationDetail to track the progress and completion of the action. If the request doesn't complete successfully, the domain registrant will be notified by email.
|
|
211
|
+
* This operation updates the specified domain contact's privacy setting. When privacy protection is enabled, contact information such as email address is replaced either with contact information for Amazon Registrar (for .com, .net, and .org domains) or with contact information for our registrar associate, Gandi. This operation affects only the contact information for the specified contact type (registrant, administrator, or tech). If the request succeeds, Amazon Route 53 returns an operation ID that you can use with GetOperationDetail to track the progress and completion of the action. If the request doesn't complete successfully, the domain registrant will be notified by email. By disabling the privacy service via API, you consent to the publication of the contact information provided for this domain via the public WHOIS database. You certify that you are the registrant of this domain name and have the authority to make this decision. You may withdraw your consent at any time by enabling privacy protection using either UpdateDomainContactPrivacy or the Route 53 console. Enabling privacy protection removes the contact information provided for this domain from the WHOIS database. For more information on our privacy practices, see https://aws.amazon.com/privacy/.
|
|
180
212
|
*/
|
|
181
213
|
updateDomainContactPrivacy(callback?: (err: AWSError, data: Route53Domains.Types.UpdateDomainContactPrivacyResponse) => void): Request<Route53Domains.Types.UpdateDomainContactPrivacyResponse, AWSError>;
|
|
182
214
|
/**
|
|
@@ -205,10 +237,27 @@ declare class Route53Domains extends Service {
|
|
|
205
237
|
viewBilling(callback?: (err: AWSError, data: Route53Domains.Types.ViewBillingResponse) => void): Request<Route53Domains.Types.ViewBillingResponse, AWSError>;
|
|
206
238
|
}
|
|
207
239
|
declare namespace Route53Domains {
|
|
240
|
+
export interface AcceptDomainTransferFromAnotherAwsAccountRequest {
|
|
241
|
+
/**
|
|
242
|
+
* The name of the domain that was specified when another AWS account submitted a TransferDomainToAnotherAwsAccount request.
|
|
243
|
+
*/
|
|
244
|
+
DomainName: DomainName;
|
|
245
|
+
/**
|
|
246
|
+
* The password that was returned by the TransferDomainToAnotherAwsAccount request.
|
|
247
|
+
*/
|
|
248
|
+
Password: String;
|
|
249
|
+
}
|
|
250
|
+
export interface AcceptDomainTransferFromAnotherAwsAccountResponse {
|
|
251
|
+
/**
|
|
252
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
253
|
+
*/
|
|
254
|
+
OperationId?: OperationId;
|
|
255
|
+
}
|
|
256
|
+
export type AccountId = string;
|
|
208
257
|
export type AddressLine = string;
|
|
209
258
|
export interface BillingRecord {
|
|
210
259
|
/**
|
|
211
|
-
* The name of the domain that the billing record applies to. If the domain name contains characters other than a-z, 0-9, and - (hyphen), such as an internationalized domain name, then this value is in Punycode. For more information, see DNS Domain Name Format in the Amazon Route 53 Developer
|
|
260
|
+
* The name of the domain that the billing record applies to. If the domain name contains characters other than a-z, 0-9, and - (hyphen), such as an internationalized domain name, then this value is in Punycode. For more information, see DNS Domain Name Format in the Amazon Route 53 Developer Guide.
|
|
212
261
|
*/
|
|
213
262
|
DomainName?: DomainName;
|
|
214
263
|
/**
|
|
@@ -230,9 +279,21 @@ declare namespace Route53Domains {
|
|
|
230
279
|
}
|
|
231
280
|
export type BillingRecords = BillingRecord[];
|
|
232
281
|
export type Boolean = boolean;
|
|
282
|
+
export interface CancelDomainTransferToAnotherAwsAccountRequest {
|
|
283
|
+
/**
|
|
284
|
+
* The name of the domain for which you want to cancel the transfer to another AWS account.
|
|
285
|
+
*/
|
|
286
|
+
DomainName: DomainName;
|
|
287
|
+
}
|
|
288
|
+
export interface CancelDomainTransferToAnotherAwsAccountResponse {
|
|
289
|
+
/**
|
|
290
|
+
* The identifier that TransferDomainToAnotherAwsAccount returned to track the progress of the request. Because the transfer request was canceled, the value is no longer valid, and you can't use GetOperationDetail to query the operation status.
|
|
291
|
+
*/
|
|
292
|
+
OperationId?: OperationId;
|
|
293
|
+
}
|
|
233
294
|
export interface CheckDomainAvailabilityRequest {
|
|
234
295
|
/**
|
|
235
|
-
* The name of the domain that you want to get availability for.
|
|
296
|
+
* The name of the domain that you want to get availability for. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. The domain name can contain only the following characters: Letters a through z. Domain names are not case sensitive. Numbers 0 through 9. Hyphen (-). You can't specify a hyphen at the beginning or end of a label. Period (.) to separate the labels in the name, such as the . in example.com. Internationalized domain names are not supported for some top-level domains. To determine whether the TLD that you want to use supports internationalized domain names, see Domains that You Can Register with Amazon Route 53. For more information, see Formatting Internationalized Domain Names.
|
|
236
297
|
*/
|
|
237
298
|
DomainName: DomainName;
|
|
238
299
|
/**
|
|
@@ -242,13 +303,13 @@ declare namespace Route53Domains {
|
|
|
242
303
|
}
|
|
243
304
|
export interface CheckDomainAvailabilityResponse {
|
|
244
305
|
/**
|
|
245
|
-
* Whether the domain name is available for registering. You can register only domains designated as AVAILABLE. Valid values: AVAILABLE The domain name is available. AVAILABLE_RESERVED The domain name is reserved under specific conditions. AVAILABLE_PREORDER The domain name is available and can be preordered. DONT_KNOW The TLD registry didn't reply with a definitive answer about whether the domain name is available.
|
|
306
|
+
* Whether the domain name is available for registering. You can register only domains designated as AVAILABLE. Valid values: AVAILABLE The domain name is available. AVAILABLE_RESERVED The domain name is reserved under specific conditions. AVAILABLE_PREORDER The domain name is available and can be preordered. DONT_KNOW The TLD registry didn't reply with a definitive answer about whether the domain name is available. Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later. PENDING The TLD registry didn't return a response in the expected amount of time. When the response is delayed, it usually takes just a few extra seconds. You can resubmit the request immediately. RESERVED The domain name has been reserved for another person or organization. UNAVAILABLE The domain name is not available. UNAVAILABLE_PREMIUM The domain name is not available. UNAVAILABLE_RESTRICTED The domain name is forbidden.
|
|
246
307
|
*/
|
|
247
308
|
Availability: DomainAvailability;
|
|
248
309
|
}
|
|
249
310
|
export interface CheckDomainTransferabilityRequest {
|
|
250
311
|
/**
|
|
251
|
-
* The name of the domain that you want to transfer to Amazon Route 53.
|
|
312
|
+
* The name of the domain that you want to transfer to Route 53. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. The domain name can contain only the following characters: Letters a through z. Domain names are not case sensitive. Numbers 0 through 9. Hyphen (-). You can't specify a hyphen at the beginning or end of a label. Period (.) to separate the labels in the name, such as the . in example.com.
|
|
252
313
|
*/
|
|
253
314
|
DomainName: DomainName;
|
|
254
315
|
/**
|
|
@@ -258,7 +319,7 @@ declare namespace Route53Domains {
|
|
|
258
319
|
}
|
|
259
320
|
export interface CheckDomainTransferabilityResponse {
|
|
260
321
|
/**
|
|
261
|
-
* A complex type that contains information about whether the specified domain can be transferred to
|
|
322
|
+
* A complex type that contains information about whether the specified domain can be transferred to Route 53.
|
|
262
323
|
*/
|
|
263
324
|
Transferability: DomainTransferability;
|
|
264
325
|
}
|
|
@@ -273,7 +334,7 @@ declare namespace Route53Domains {
|
|
|
273
334
|
*/
|
|
274
335
|
LastName?: ContactName;
|
|
275
336
|
/**
|
|
276
|
-
* Indicates whether the contact is a person, company, association, or public organization. If you
|
|
337
|
+
* Indicates whether the contact is a person, company, association, or public organization. Note the following: If you specify a value other than PERSON, you must also specify a value for OrganizationName. For some TLDs, the privacy protection available depends on the value that you specify for Contact Type. For the privacy protection settings for your TLD, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide For .es domains, if you specify PERSON, you must specify INDIVIDUAL for the value of ES_LEGAL_FORM.
|
|
277
338
|
*/
|
|
278
339
|
ContactType?: ContactType;
|
|
279
340
|
/**
|
|
@@ -355,7 +416,7 @@ declare namespace Route53Domains {
|
|
|
355
416
|
}
|
|
356
417
|
export interface DisableDomainTransferLockResponse {
|
|
357
418
|
/**
|
|
358
|
-
* Identifier for tracking the progress of the request. To
|
|
419
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
359
420
|
*/
|
|
360
421
|
OperationId: OperationId;
|
|
361
422
|
}
|
|
@@ -370,7 +431,7 @@ declare namespace Route53Domains {
|
|
|
370
431
|
*/
|
|
371
432
|
DomainName?: DomainName;
|
|
372
433
|
/**
|
|
373
|
-
* Whether the domain name is available for registering. You can register only the domains that are designated as AVAILABLE. Valid values: AVAILABLE The domain name is available. AVAILABLE_RESERVED The domain name is reserved under specific conditions. AVAILABLE_PREORDER The domain name is available and can be preordered. DONT_KNOW The TLD registry didn't reply with a definitive answer about whether the domain name is available.
|
|
434
|
+
* Whether the domain name is available for registering. You can register only the domains that are designated as AVAILABLE. Valid values: AVAILABLE The domain name is available. AVAILABLE_RESERVED The domain name is reserved under specific conditions. AVAILABLE_PREORDER The domain name is available and can be preordered. DONT_KNOW The TLD registry didn't reply with a definitive answer about whether the domain name is available. Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later. PENDING The TLD registry didn't return a response in the expected amount of time. When the response is delayed, it usually takes just a few extra seconds. You can resubmit the request immediately. RESERVED The domain name has been reserved for another person or organization. UNAVAILABLE The domain name is not available. UNAVAILABLE_PREMIUM The domain name is not available. UNAVAILABLE_RESTRICTED The domain name is forbidden.
|
|
374
435
|
*/
|
|
375
436
|
Availability?: String;
|
|
376
437
|
}
|
|
@@ -389,7 +450,7 @@ declare namespace Route53Domains {
|
|
|
389
450
|
*/
|
|
390
451
|
TransferLock?: Boolean;
|
|
391
452
|
/**
|
|
392
|
-
* Expiration date of the domain in Coordinated Universal Time (UTC).
|
|
453
|
+
* Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).
|
|
393
454
|
*/
|
|
394
455
|
Expiry?: Timestamp;
|
|
395
456
|
}
|
|
@@ -422,16 +483,16 @@ declare namespace Route53Domains {
|
|
|
422
483
|
export type ErrorMessage = string;
|
|
423
484
|
export interface ExtraParam {
|
|
424
485
|
/**
|
|
425
|
-
*
|
|
486
|
+
* The name of an additional parameter that is required by a top-level domain. Here are the top-level domains that require additional parameters and the names of the parameters that they require: .com.au and .net.au AU_ID_NUMBER AU_ID_TYPE Valid values include the following: ABN (Australian business number) ACN (Australian company number) TM (Trademark number) .ca BRAND_NUMBER CA_BUSINESS_ENTITY_TYPE Valid values include the following: BANK (Bank) COMMERCIAL_COMPANY (Commercial company) COMPANY (Company) COOPERATION (Cooperation) COOPERATIVE (Cooperative) COOPRIX (Cooprix) CORP (Corporation) CREDIT_UNION (Credit union) FOMIA (Federation of mutual insurance associations) INC (Incorporated) LTD (Limited) LTEE (Limitée) LLC (Limited liability corporation) LLP (Limited liability partnership) LTE (Lte.) MBA (Mutual benefit association) MIC (Mutual insurance company) NFP (Not-for-profit corporation) SA (S.A.) SAVINGS_COMPANY (Savings company) SAVINGS_UNION (Savings union) SARL (Société à responsabilité limitée) TRUST (Trust) ULC (Unlimited liability corporation) CA_LEGAL_TYPE When ContactType is PERSON, valid values include the following: ABO (Aboriginal Peoples indigenous to Canada) CCT (Canadian citizen) LGR (Legal Representative of a Canadian Citizen or Permanent Resident) RES (Permanent resident of Canada) When ContactType is a value other than PERSON, valid values include the following: ASS (Canadian unincorporated association) CCO (Canadian corporation) EDU (Canadian educational institution) GOV (Government or government entity in Canada) HOP (Canadian Hospital) INB (Indian Band recognized by the Indian Act of Canada) LAM (Canadian Library, Archive, or Museum) MAJ (Her/His Majesty the Queen/King) OMK (Official mark registered in Canada) PLT (Canadian Political Party) PRT (Partnership Registered in Canada) TDM (Trademark registered in Canada) TRD (Canadian Trade Union) TRS (Trust established in Canada) .es ES_IDENTIFICATION Specify the applicable value: For contacts inside Spain: Enter your passport ID. For contacts outside of Spain: Enter the VAT identification number for the company. For .es domains, the value of ContactType must be PERSON. ES_IDENTIFICATION_TYPE Valid values include the following: DNI_AND_NIF (For Spanish contacts) NIE (For foreigners with legal residence) OTHER (For contacts outside of Spain) ES_LEGAL_FORM Valid values include the following: ASSOCIATION CENTRAL_GOVERNMENT_BODY CIVIL_SOCIETY COMMUNITY_OF_OWNERS COMMUNITY_PROPERTY CONSULATE COOPERATIVE DESIGNATION_OF_ORIGIN_SUPERVISORY_COUNCIL ECONOMIC_INTEREST_GROUP EMBASSY ENTITY_MANAGING_NATURAL_AREAS FARM_PARTNERSHIP FOUNDATION GENERAL_AND_LIMITED_PARTNERSHIP GENERAL_PARTNERSHIP INDIVIDUAL LIMITED_COMPANY LOCAL_AUTHORITY LOCAL_PUBLIC_ENTITY MUTUAL_INSURANCE_COMPANY NATIONAL_PUBLIC_ENTITY ORDER_OR_RELIGIOUS_INSTITUTION OTHERS (Only for contacts outside of Spain) POLITICAL_PARTY PROFESSIONAL_ASSOCIATION PUBLIC_LAW_ASSOCIATION PUBLIC_LIMITED_COMPANY REGIONAL_GOVERNMENT_BODY REGIONAL_PUBLIC_ENTITY SAVINGS_BANK SPANISH_OFFICE SPORTS_ASSOCIATION SPORTS_FEDERATION SPORTS_LIMITED_COMPANY TEMPORARY_ALLIANCE_OF_ENTERPRISES TRADE_UNION WORKER_OWNED_COMPANY WORKER_OWNED_LIMITED_COMPANY .fi BIRTH_DATE_IN_YYYY_MM_DD FI_BUSINESS_NUMBER FI_ID_NUMBER FI_NATIONALITY Valid values include the following: FINNISH NOT_FINNISH FI_ORGANIZATION_TYPE Valid values include the following: COMPANY CORPORATION GOVERNMENT INSTITUTION POLITICAL_PARTY PUBLIC_COMMUNITY TOWNSHIP .fr BIRTH_CITY BIRTH_COUNTRY BIRTH_DATE_IN_YYYY_MM_DD BIRTH_DEPARTMENT: Specify the INSEE code that corresponds with the department where the contact was born. If the contact was born somewhere other than France or its overseas departments, specify 99. For more information, including a list of departments and the corresponding INSEE numbers, see the Wikipedia entry Departments of France. BRAND_NUMBER .it IT_NATIONALITY IT_PIN IT_REGISTRANT_ENTITY_TYPE Valid values include the following: FOREIGNERS FREELANCE_WORKERS (Freelance workers and professionals) ITALIAN_COMPANIES (Italian companies and one-person companies) NON_PROFIT_ORGANIZATIONS OTHER_SUBJECTS PUBLIC_ORGANIZATIONS .ru BIRTH_DATE_IN_YYYY_MM_DD RU_PASSPORT_DATA .se BIRTH_COUNTRY SE_ID_NUMBER .sg SG_ID_NUMBER .co.uk, .me.uk, and .org.uk UK_CONTACT_TYPE Valid values include the following: CRC (UK Corporation by Royal Charter) FCORP (Non-UK Corporation) FIND (Non-UK Individual, representing self) FOTHER (Non-UK Entity that does not fit into any other category) GOV (UK Government Body) IND (UK Individual (representing self)) IP (UK Industrial/Provident Registered Company) LLP (UK Limited Liability Partnership) LTD (UK Limited Company) OTHER (UK Entity that does not fit into any other category) PLC (UK Public Limited Company) PTNR (UK Partnership) RCHAR (UK Registered Charity) SCH (UK School) STAT (UK Statutory Body) STRA (UK Sole Trader) UK_COMPANY_NUMBER In addition, many TLDs require a VAT_NUMBER.
|
|
426
487
|
*/
|
|
427
488
|
Name: ExtraParamName;
|
|
428
489
|
/**
|
|
429
|
-
*
|
|
490
|
+
* The value that corresponds with the name of an extra parameter.
|
|
430
491
|
*/
|
|
431
492
|
Value: ExtraParamValue;
|
|
432
493
|
}
|
|
433
494
|
export type ExtraParamList = ExtraParam[];
|
|
434
|
-
export type ExtraParamName = "DUNS_NUMBER"|"BRAND_NUMBER"|"BIRTH_DEPARTMENT"|"BIRTH_DATE_IN_YYYY_MM_DD"|"BIRTH_COUNTRY"|"BIRTH_CITY"|"DOCUMENT_NUMBER"|"AU_ID_NUMBER"|"AU_ID_TYPE"|"CA_LEGAL_TYPE"|"CA_BUSINESS_ENTITY_TYPE"|"ES_IDENTIFICATION"|"ES_IDENTIFICATION_TYPE"|"ES_LEGAL_FORM"|"FI_BUSINESS_NUMBER"|"FI_ID_NUMBER"|"FI_NATIONALITY"|"FI_ORGANIZATION_TYPE"|"IT_PIN"|"IT_REGISTRANT_ENTITY_TYPE"|"RU_PASSPORT_DATA"|"SE_ID_NUMBER"|"SG_ID_NUMBER"|"VAT_NUMBER"|"UK_CONTACT_TYPE"|"UK_COMPANY_NUMBER"|string;
|
|
495
|
+
export type ExtraParamName = "DUNS_NUMBER"|"BRAND_NUMBER"|"BIRTH_DEPARTMENT"|"BIRTH_DATE_IN_YYYY_MM_DD"|"BIRTH_COUNTRY"|"BIRTH_CITY"|"DOCUMENT_NUMBER"|"AU_ID_NUMBER"|"AU_ID_TYPE"|"CA_LEGAL_TYPE"|"CA_BUSINESS_ENTITY_TYPE"|"CA_LEGAL_REPRESENTATIVE"|"CA_LEGAL_REPRESENTATIVE_CAPACITY"|"ES_IDENTIFICATION"|"ES_IDENTIFICATION_TYPE"|"ES_LEGAL_FORM"|"FI_BUSINESS_NUMBER"|"FI_ID_NUMBER"|"FI_NATIONALITY"|"FI_ORGANIZATION_TYPE"|"IT_NATIONALITY"|"IT_PIN"|"IT_REGISTRANT_ENTITY_TYPE"|"RU_PASSPORT_DATA"|"SE_ID_NUMBER"|"SG_ID_NUMBER"|"VAT_NUMBER"|"UK_CONTACT_TYPE"|"UK_COMPANY_NUMBER"|string;
|
|
435
496
|
export type ExtraParamValue = string;
|
|
436
497
|
export type FIAuthKey = string;
|
|
437
498
|
export interface GetContactReachabilityStatusRequest {
|
|
@@ -518,19 +579,19 @@ declare namespace Route53Domains {
|
|
|
518
579
|
*/
|
|
519
580
|
RegistryDomainId?: RegistryDomainId;
|
|
520
581
|
/**
|
|
521
|
-
* The date when the domain was created as found in the response to a WHOIS query. The date and time is in Coordinated Universal time (UTC).
|
|
582
|
+
* The date when the domain was created as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).
|
|
522
583
|
*/
|
|
523
584
|
CreationDate?: Timestamp;
|
|
524
585
|
/**
|
|
525
|
-
* The last updated date of the domain as found in the response to a WHOIS query. The date and time is in Coordinated Universal time (UTC).
|
|
586
|
+
* The last updated date of the domain as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).
|
|
526
587
|
*/
|
|
527
588
|
UpdatedDate?: Timestamp;
|
|
528
589
|
/**
|
|
529
|
-
* The date when the registration for the domain is set to expire. The date and time is in Coordinated Universal time (UTC).
|
|
590
|
+
* The date when the registration for the domain is set to expire. The date and time is in Unix time format and Coordinated Universal time (UTC).
|
|
530
591
|
*/
|
|
531
592
|
ExpirationDate?: Timestamp;
|
|
532
593
|
/**
|
|
533
|
-
* Reseller of the domain. Domains registered or transferred using
|
|
594
|
+
* Reseller of the domain. Domains registered or transferred using Route 53 domains will have "Amazon" as the reseller.
|
|
534
595
|
*/
|
|
535
596
|
Reseller?: Reseller;
|
|
536
597
|
/**
|
|
@@ -544,15 +605,15 @@ declare namespace Route53Domains {
|
|
|
544
605
|
}
|
|
545
606
|
export interface GetDomainSuggestionsRequest {
|
|
546
607
|
/**
|
|
547
|
-
* A domain name that you want to use as the basis for a list of possible domain names. The
|
|
608
|
+
* A domain name that you want to use as the basis for a list of possible domain names. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. The domain name can contain only the following characters: Letters a through z. Domain names are not case sensitive. Numbers 0 through 9. Hyphen (-). You can't specify a hyphen at the beginning or end of a label. Period (.) to separate the labels in the name, such as the . in example.com. Internationalized domain names are not supported for some top-level domains. To determine whether the TLD that you want to use supports internationalized domain names, see Domains that You Can Register with Amazon Route 53.
|
|
548
609
|
*/
|
|
549
610
|
DomainName: DomainName;
|
|
550
611
|
/**
|
|
551
|
-
* The number of suggested domain names that you want
|
|
612
|
+
* The number of suggested domain names that you want Route 53 to return. Specify a value between 1 and 50.
|
|
552
613
|
*/
|
|
553
614
|
SuggestionCount: Integer;
|
|
554
615
|
/**
|
|
555
|
-
* If OnlyAvailable is true,
|
|
616
|
+
* If OnlyAvailable is true, Route 53 returns only domain names that are available. If OnlyAvailable is false, Route 53 returns domain names without checking whether they're available to be registered. To determine whether the domain is available, you can call checkDomainAvailability for each suggestion.
|
|
556
617
|
*/
|
|
557
618
|
OnlyAvailable: Boolean;
|
|
558
619
|
}
|
|
@@ -564,7 +625,7 @@ declare namespace Route53Domains {
|
|
|
564
625
|
}
|
|
565
626
|
export interface GetOperationDetailRequest {
|
|
566
627
|
/**
|
|
567
|
-
* The identifier for the operation for which you want to get the status.
|
|
628
|
+
* The identifier for the operation for which you want to get the status. Route 53 returned the identifier in the response to the original request.
|
|
568
629
|
*/
|
|
569
630
|
OperationId: OperationId;
|
|
570
631
|
}
|
|
@@ -622,7 +683,7 @@ declare namespace Route53Domains {
|
|
|
622
683
|
}
|
|
623
684
|
export interface ListOperationsRequest {
|
|
624
685
|
/**
|
|
625
|
-
* An optional parameter that lets you get information about all the operations that you submitted after a specified date and time. Specify the date and time in Coordinated Universal time (UTC).
|
|
686
|
+
* An optional parameter that lets you get information about all the operations that you submitted after a specified date and time. Specify the date and time in Unix time format and Coordinated Universal time (UTC).
|
|
626
687
|
*/
|
|
627
688
|
SubmittedSince?: Timestamp;
|
|
628
689
|
/**
|
|
@@ -688,14 +749,14 @@ declare namespace Route53Domains {
|
|
|
688
749
|
SubmittedDate: Timestamp;
|
|
689
750
|
}
|
|
690
751
|
export type OperationSummaryList = OperationSummary[];
|
|
691
|
-
export type OperationType = "REGISTER_DOMAIN"|"DELETE_DOMAIN"|"TRANSFER_IN_DOMAIN"|"UPDATE_DOMAIN_CONTACT"|"UPDATE_NAMESERVER"|"CHANGE_PRIVACY_PROTECTION"|"DOMAIN_LOCK"|"ENABLE_AUTORENEW"|"DISABLE_AUTORENEW"|"ADD_DNSSEC"|"REMOVE_DNSSEC"|"EXPIRE_DOMAIN"|"TRANSFER_OUT_DOMAIN"|"CHANGE_DOMAIN_OWNER"|"RENEW_DOMAIN"|"PUSH_DOMAIN"|string;
|
|
752
|
+
export type OperationType = "REGISTER_DOMAIN"|"DELETE_DOMAIN"|"TRANSFER_IN_DOMAIN"|"UPDATE_DOMAIN_CONTACT"|"UPDATE_NAMESERVER"|"CHANGE_PRIVACY_PROTECTION"|"DOMAIN_LOCK"|"ENABLE_AUTORENEW"|"DISABLE_AUTORENEW"|"ADD_DNSSEC"|"REMOVE_DNSSEC"|"EXPIRE_DOMAIN"|"TRANSFER_OUT_DOMAIN"|"CHANGE_DOMAIN_OWNER"|"RENEW_DOMAIN"|"PUSH_DOMAIN"|"INTERNAL_TRANSFER_OUT_DOMAIN"|"INTERNAL_TRANSFER_IN_DOMAIN"|string;
|
|
692
753
|
export type PageMarker = string;
|
|
693
754
|
export type PageMaxItems = number;
|
|
694
755
|
export type Price = number;
|
|
695
756
|
export type ReachabilityStatus = "PENDING"|"DONE"|"EXPIRED"|string;
|
|
696
757
|
export interface RegisterDomainRequest {
|
|
697
758
|
/**
|
|
698
|
-
* The domain name that you want to register.
|
|
759
|
+
* The domain name that you want to register. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. The domain name can contain only the following characters: Letters a through z. Domain names are not case sensitive. Numbers 0 through 9. Hyphen (-). You can't specify a hyphen at the beginning or end of a label. Period (.) to separate the labels in the name, such as the . in example.com. Internationalized domain names are not supported for some top-level domains. To determine whether the TLD that you want to use supports internationalized domain names, see Domains that You Can Register with Amazon Route 53. For more information, see Formatting Internationalized Domain Names.
|
|
699
760
|
*/
|
|
700
761
|
DomainName: DomainName;
|
|
701
762
|
/**
|
|
@@ -711,15 +772,15 @@ declare namespace Route53Domains {
|
|
|
711
772
|
*/
|
|
712
773
|
AutoRenew?: Boolean;
|
|
713
774
|
/**
|
|
714
|
-
* Provides detailed contact information.
|
|
775
|
+
* Provides detailed contact information. For information about the values that you specify for each element, see ContactDetail.
|
|
715
776
|
*/
|
|
716
777
|
AdminContact: ContactDetail;
|
|
717
778
|
/**
|
|
718
|
-
* Provides detailed contact information.
|
|
779
|
+
* Provides detailed contact information. For information about the values that you specify for each element, see ContactDetail.
|
|
719
780
|
*/
|
|
720
781
|
RegistrantContact: ContactDetail;
|
|
721
782
|
/**
|
|
722
|
-
* Provides detailed contact information.
|
|
783
|
+
* Provides detailed contact information. For information about the values that you specify for each element, see ContactDetail.
|
|
723
784
|
*/
|
|
724
785
|
TechContact: ContactDetail;
|
|
725
786
|
/**
|
|
@@ -737,7 +798,7 @@ declare namespace Route53Domains {
|
|
|
737
798
|
}
|
|
738
799
|
export interface RegisterDomainResponse {
|
|
739
800
|
/**
|
|
740
|
-
* Identifier for tracking the progress of the request. To
|
|
801
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
741
802
|
*/
|
|
742
803
|
OperationId: OperationId;
|
|
743
804
|
}
|
|
@@ -745,6 +806,18 @@ declare namespace Route53Domains {
|
|
|
745
806
|
export type RegistrarUrl = string;
|
|
746
807
|
export type RegistrarWhoIsServer = string;
|
|
747
808
|
export type RegistryDomainId = string;
|
|
809
|
+
export interface RejectDomainTransferFromAnotherAwsAccountRequest {
|
|
810
|
+
/**
|
|
811
|
+
* The name of the domain that was specified when another AWS account submitted a TransferDomainToAnotherAwsAccount request.
|
|
812
|
+
*/
|
|
813
|
+
DomainName: DomainName;
|
|
814
|
+
}
|
|
815
|
+
export interface RejectDomainTransferFromAnotherAwsAccountResponse {
|
|
816
|
+
/**
|
|
817
|
+
* The identifier that TransferDomainToAnotherAwsAccount returned to track the progress of the request. Because the transfer request was rejected, the value is no longer valid, and you can't use GetOperationDetail to query the operation status.
|
|
818
|
+
*/
|
|
819
|
+
OperationId?: OperationId;
|
|
820
|
+
}
|
|
748
821
|
export interface RenewDomainRequest {
|
|
749
822
|
/**
|
|
750
823
|
* The name of the domain that you want to renew.
|
|
@@ -761,14 +834,14 @@ declare namespace Route53Domains {
|
|
|
761
834
|
}
|
|
762
835
|
export interface RenewDomainResponse {
|
|
763
836
|
/**
|
|
764
|
-
*
|
|
837
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
765
838
|
*/
|
|
766
839
|
OperationId: OperationId;
|
|
767
840
|
}
|
|
768
841
|
export type Reseller = string;
|
|
769
842
|
export interface ResendContactReachabilityEmailRequest {
|
|
770
843
|
/**
|
|
771
|
-
* The name of the domain for which you want
|
|
844
|
+
* The name of the domain for which you want Route 53 to resend a confirmation email to the registrant contact.
|
|
772
845
|
*/
|
|
773
846
|
domainName?: DomainName;
|
|
774
847
|
}
|
|
@@ -817,7 +890,7 @@ declare namespace Route53Domains {
|
|
|
817
890
|
export type Timestamp = Date;
|
|
818
891
|
export interface TransferDomainRequest {
|
|
819
892
|
/**
|
|
820
|
-
* The name of the domain that you want to transfer to Amazon Route 53.
|
|
893
|
+
* The name of the domain that you want to transfer to Route 53. The top-level domain (TLD), such as .com, must be a TLD that Route 53 supports. For a list of supported TLDs, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. The domain name can contain only the following characters: Letters a through z. Domain names are not case sensitive. Numbers 0 through 9. Hyphen (-). You can't specify a hyphen at the beginning or end of a label. Period (.) to separate the labels in the name, such as the . in example.com.
|
|
821
894
|
*/
|
|
822
895
|
DomainName: DomainName;
|
|
823
896
|
/**
|
|
@@ -867,10 +940,30 @@ declare namespace Route53Domains {
|
|
|
867
940
|
}
|
|
868
941
|
export interface TransferDomainResponse {
|
|
869
942
|
/**
|
|
870
|
-
* Identifier for tracking the progress of the request. To
|
|
943
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
871
944
|
*/
|
|
872
945
|
OperationId: OperationId;
|
|
873
946
|
}
|
|
947
|
+
export interface TransferDomainToAnotherAwsAccountRequest {
|
|
948
|
+
/**
|
|
949
|
+
* The name of the domain that you want to transfer from the current AWS account to another account.
|
|
950
|
+
*/
|
|
951
|
+
DomainName: DomainName;
|
|
952
|
+
/**
|
|
953
|
+
* The account ID of the AWS account that you want to transfer the domain to, for example, 111122223333.
|
|
954
|
+
*/
|
|
955
|
+
AccountId: AccountId;
|
|
956
|
+
}
|
|
957
|
+
export interface TransferDomainToAnotherAwsAccountResponse {
|
|
958
|
+
/**
|
|
959
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
960
|
+
*/
|
|
961
|
+
OperationId?: OperationId;
|
|
962
|
+
/**
|
|
963
|
+
* To finish transferring a domain to another AWS account, the account that the domain is being transferred to must submit an AcceptDomainTransferFromAnotherAwsAccount request. The request must include the value of the Password element that was returned in the TransferDomainToAnotherAwsAccount response.
|
|
964
|
+
*/
|
|
965
|
+
Password?: String;
|
|
966
|
+
}
|
|
874
967
|
export type Transferable = "TRANSFERABLE"|"UNTRANSFERABLE"|"DONT_KNOW"|string;
|
|
875
968
|
export interface UpdateDomainContactPrivacyRequest {
|
|
876
969
|
/**
|
|
@@ -916,7 +1009,7 @@ declare namespace Route53Domains {
|
|
|
916
1009
|
}
|
|
917
1010
|
export interface UpdateDomainContactResponse {
|
|
918
1011
|
/**
|
|
919
|
-
* Identifier for tracking the progress of the request. To
|
|
1012
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
920
1013
|
*/
|
|
921
1014
|
OperationId: OperationId;
|
|
922
1015
|
}
|
|
@@ -936,7 +1029,7 @@ declare namespace Route53Domains {
|
|
|
936
1029
|
}
|
|
937
1030
|
export interface UpdateDomainNameserversResponse {
|
|
938
1031
|
/**
|
|
939
|
-
* Identifier for tracking the progress of the request. To
|
|
1032
|
+
* Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
|
|
940
1033
|
*/
|
|
941
1034
|
OperationId: OperationId;
|
|
942
1035
|
}
|
|
@@ -954,11 +1047,11 @@ declare namespace Route53Domains {
|
|
|
954
1047
|
}
|
|
955
1048
|
export interface ViewBillingRequest {
|
|
956
1049
|
/**
|
|
957
|
-
* The beginning date and time for the time period for which you want a list of billing records. Specify the date and time in Coordinated Universal time (UTC).
|
|
1050
|
+
* The beginning date and time for the time period for which you want a list of billing records. Specify the date and time in Unix time format and Coordinated Universal time (UTC).
|
|
958
1051
|
*/
|
|
959
1052
|
Start?: Timestamp;
|
|
960
1053
|
/**
|
|
961
|
-
* The end date and time for the time period for which you want a list of billing records. Specify the date and time in Coordinated Universal time (UTC).
|
|
1054
|
+
* The end date and time for the time period for which you want a list of billing records. Specify the date and time in Unix time format and Coordinated Universal time (UTC).
|
|
962
1055
|
*/
|
|
963
1056
|
End?: Timestamp;
|
|
964
1057
|
/**
|