@aws-sdk/client-route-53 3.315.0 → 3.319.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/dist-cjs/Route53.js +74 -980
- package/dist-es/Route53.js +74 -980
- package/dist-types/Route53.d.ts +93 -1153
- package/dist-types/ts3.4/Route53.d.ts +2 -1
- package/package.json +8 -8
package/dist-types/Route53.d.ts
CHANGED
|
@@ -70,1507 +70,447 @@ import { UpdateHostedZoneCommentCommandInput, UpdateHostedZoneCommentCommandOutp
|
|
|
70
70
|
import { UpdateTrafficPolicyCommentCommandInput, UpdateTrafficPolicyCommentCommandOutput } from "./commands/UpdateTrafficPolicyCommentCommand";
|
|
71
71
|
import { UpdateTrafficPolicyInstanceCommandInput, UpdateTrafficPolicyInstanceCommandOutput } from "./commands/UpdateTrafficPolicyInstanceCommand";
|
|
72
72
|
import { Route53Client } from "./Route53Client";
|
|
73
|
-
|
|
74
|
-
* @public
|
|
75
|
-
* <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web
|
|
76
|
-
* service.</p>
|
|
77
|
-
* <p>You can use Route 53 to:</p>
|
|
78
|
-
* <ul>
|
|
79
|
-
* <li>
|
|
80
|
-
* <p>Register domain names.</p>
|
|
81
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-domain-registration.html">How domain registration works</a>.</p>
|
|
82
|
-
* </li>
|
|
83
|
-
* <li>
|
|
84
|
-
* <p>Route internet traffic to the resources for your domain</p>
|
|
85
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html">How internet traffic is routed to your website or web application</a>.</p>
|
|
86
|
-
* </li>
|
|
87
|
-
* <li>
|
|
88
|
-
* <p>Check the health of your resources.</p>
|
|
89
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-health-checks.html">How Route 53 checks the health of your resources</a>.</p>
|
|
90
|
-
* </li>
|
|
91
|
-
* </ul>
|
|
92
|
-
*/
|
|
93
|
-
export declare class Route53 extends Route53Client {
|
|
73
|
+
export interface Route53 {
|
|
94
74
|
/**
|
|
95
|
-
* @
|
|
96
|
-
* <p>Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC. This
|
|
97
|
-
* operation changes the KSK status to <code>ACTIVE</code>.</p>
|
|
75
|
+
* @see {@link ActivateKeySigningKeyCommand}
|
|
98
76
|
*/
|
|
99
77
|
activateKeySigningKey(args: ActivateKeySigningKeyCommandInput, options?: __HttpHandlerOptions): Promise<ActivateKeySigningKeyCommandOutput>;
|
|
100
78
|
activateKeySigningKey(args: ActivateKeySigningKeyCommandInput, cb: (err: any, data?: ActivateKeySigningKeyCommandOutput) => void): void;
|
|
101
79
|
activateKeySigningKey(args: ActivateKeySigningKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivateKeySigningKeyCommandOutput) => void): void;
|
|
102
80
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* <p>Associates an Amazon VPC with a private hosted zone. </p>
|
|
105
|
-
* <important>
|
|
106
|
-
* <p>To perform the association, the VPC and the private hosted zone must already
|
|
107
|
-
* exist. You can't convert a public hosted zone into a private hosted zone.</p>
|
|
108
|
-
* </important>
|
|
109
|
-
* <note>
|
|
110
|
-
* <p>If you want to associate a VPC that was created by using one Amazon Web Services account with a private hosted zone that was created by using a
|
|
111
|
-
* different account, the Amazon Web Services account that created the private hosted
|
|
112
|
-
* zone must first submit a <code>CreateVPCAssociationAuthorization</code> request.
|
|
113
|
-
* Then the account that created the VPC must submit an
|
|
114
|
-
* <code>AssociateVPCWithHostedZone</code> request.</p>
|
|
115
|
-
* </note>
|
|
116
|
-
* <note>
|
|
117
|
-
* <p>When granting access, the hosted zone and the Amazon VPC must belong to
|
|
118
|
-
* the same partition. A partition is a group of Amazon Web Services Regions. Each
|
|
119
|
-
* Amazon Web Services account is scoped to one partition.</p>
|
|
120
|
-
* <p>The following are the supported partitions:</p>
|
|
121
|
-
* <ul>
|
|
122
|
-
* <li>
|
|
123
|
-
* <p>
|
|
124
|
-
* <code>aws</code> - Amazon Web Services Regions</p>
|
|
125
|
-
* </li>
|
|
126
|
-
* <li>
|
|
127
|
-
* <p>
|
|
128
|
-
* <code>aws-cn</code> - China Regions</p>
|
|
129
|
-
* </li>
|
|
130
|
-
* <li>
|
|
131
|
-
* <p>
|
|
132
|
-
* <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
|
|
133
|
-
* </li>
|
|
134
|
-
* </ul>
|
|
135
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
|
|
136
|
-
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
137
|
-
* </note>
|
|
81
|
+
* @see {@link AssociateVPCWithHostedZoneCommand}
|
|
138
82
|
*/
|
|
139
83
|
associateVPCWithHostedZone(args: AssociateVPCWithHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<AssociateVPCWithHostedZoneCommandOutput>;
|
|
140
84
|
associateVPCWithHostedZone(args: AssociateVPCWithHostedZoneCommandInput, cb: (err: any, data?: AssociateVPCWithHostedZoneCommandOutput) => void): void;
|
|
141
85
|
associateVPCWithHostedZone(args: AssociateVPCWithHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateVPCWithHostedZoneCommandOutput) => void): void;
|
|
142
86
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Creates, changes, or deletes CIDR blocks within a collection. Contains authoritative
|
|
145
|
-
* IP information mapping blocks to one or multiple locations.</p>
|
|
146
|
-
* <p>A change request can update multiple locations in a collection at a time, which is
|
|
147
|
-
* helpful if you want to move one or more CIDR blocks from one location to another in one
|
|
148
|
-
* transaction, without downtime. </p>
|
|
149
|
-
* <p>
|
|
150
|
-
* <b>Limits</b>
|
|
151
|
-
* </p>
|
|
152
|
-
* <p>The max number of CIDR blocks included in the request is 1000. As a result, big updates
|
|
153
|
-
* require multiple API calls.</p>
|
|
154
|
-
* <p>
|
|
155
|
-
* <b> PUT and DELETE_IF_EXISTS</b>
|
|
156
|
-
* </p>
|
|
157
|
-
* <p>Use <code>ChangeCidrCollection</code> to perform the following actions:</p>
|
|
158
|
-
* <ul>
|
|
159
|
-
* <li>
|
|
160
|
-
* <p>
|
|
161
|
-
* <code>PUT</code>: Create a CIDR block within the specified collection.</p>
|
|
162
|
-
* </li>
|
|
163
|
-
* <li>
|
|
164
|
-
* <p>
|
|
165
|
-
* <code> DELETE_IF_EXISTS</code>: Delete an existing CIDR block from the
|
|
166
|
-
* collection.</p>
|
|
167
|
-
* </li>
|
|
168
|
-
* </ul>
|
|
87
|
+
* @see {@link ChangeCidrCollectionCommand}
|
|
169
88
|
*/
|
|
170
89
|
changeCidrCollection(args: ChangeCidrCollectionCommandInput, options?: __HttpHandlerOptions): Promise<ChangeCidrCollectionCommandOutput>;
|
|
171
90
|
changeCidrCollection(args: ChangeCidrCollectionCommandInput, cb: (err: any, data?: ChangeCidrCollectionCommandOutput) => void): void;
|
|
172
91
|
changeCidrCollection(args: ChangeCidrCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeCidrCollectionCommandOutput) => void): void;
|
|
173
92
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Creates, changes, or deletes a resource record set, which contains authoritative DNS
|
|
176
|
-
* information for a specified domain name or subdomain name. For example, you can use
|
|
177
|
-
* <code>ChangeResourceRecordSets</code> to create a resource record set that routes
|
|
178
|
-
* traffic for test.example.com to a web server that has an IP address of
|
|
179
|
-
* 192.0.2.44.</p>
|
|
180
|
-
* <p>
|
|
181
|
-
* <b>Deleting Resource Record Sets</b>
|
|
182
|
-
* </p>
|
|
183
|
-
* <p>To delete a resource record set, you must specify all the same values that you
|
|
184
|
-
* specified when you created it.</p>
|
|
185
|
-
* <p>
|
|
186
|
-
* <b>Change Batches and Transactional Changes</b>
|
|
187
|
-
* </p>
|
|
188
|
-
* <p>The request body must include a document with a
|
|
189
|
-
* <code>ChangeResourceRecordSetsRequest</code> element. The request body contains a
|
|
190
|
-
* list of change items, known as a change batch. Change batches are considered
|
|
191
|
-
* transactional changes. Route 53 validates the changes in the request and then either
|
|
192
|
-
* makes all or none of the changes in the change batch request. This ensures that DNS
|
|
193
|
-
* routing isn't adversely affected by partial changes to the resource record sets in a
|
|
194
|
-
* hosted zone. </p>
|
|
195
|
-
* <p>For example, suppose a change batch request contains two changes: it deletes the
|
|
196
|
-
* <code>CNAME</code> resource record set for www.example.com and creates an alias
|
|
197
|
-
* resource record set for www.example.com. If validation for both records succeeds, Route
|
|
198
|
-
* 53 deletes the first resource record set and creates the second resource record set in a
|
|
199
|
-
* single operation. If validation for either the <code>DELETE</code> or the
|
|
200
|
-
* <code>CREATE</code> action fails, then the request is canceled, and the original
|
|
201
|
-
* <code>CNAME</code> record continues to exist.</p>
|
|
202
|
-
* <note>
|
|
203
|
-
* <p>If you try to delete the same resource record set more than once in a single
|
|
204
|
-
* change batch, Route 53 returns an <code>InvalidChangeBatch</code> error.</p>
|
|
205
|
-
* </note>
|
|
206
|
-
* <p>
|
|
207
|
-
* <b>Traffic Flow</b>
|
|
208
|
-
* </p>
|
|
209
|
-
* <p>To create resource record sets for complex routing configurations, use either the
|
|
210
|
-
* traffic flow visual editor in the Route 53 console or the API actions for traffic
|
|
211
|
-
* policies and traffic policy instances. Save the configuration as a traffic policy, then
|
|
212
|
-
* associate the traffic policy with one or more domain names (such as example.com) or
|
|
213
|
-
* subdomain names (such as www.example.com), in the same hosted zone or in multiple hosted
|
|
214
|
-
* zones. You can roll back the updates if the new configuration isn't performing as
|
|
215
|
-
* expected. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html">Using Traffic Flow to Route
|
|
216
|
-
* DNS Traffic</a> in the <i>Amazon Route 53 Developer
|
|
217
|
-
* Guide</i>.</p>
|
|
218
|
-
* <p>
|
|
219
|
-
* <b>Create, Delete, and Upsert</b>
|
|
220
|
-
* </p>
|
|
221
|
-
* <p>Use <code>ChangeResourceRecordsSetsRequest</code> to perform the following
|
|
222
|
-
* actions:</p>
|
|
223
|
-
* <ul>
|
|
224
|
-
* <li>
|
|
225
|
-
* <p>
|
|
226
|
-
* <code>CREATE</code>: Creates a resource record set that has the specified
|
|
227
|
-
* values.</p>
|
|
228
|
-
* </li>
|
|
229
|
-
* <li>
|
|
230
|
-
* <p>
|
|
231
|
-
* <code>DELETE</code>: Deletes an existing resource record set that has the
|
|
232
|
-
* specified values.</p>
|
|
233
|
-
* </li>
|
|
234
|
-
* <li>
|
|
235
|
-
* <p>
|
|
236
|
-
* <code>UPSERT</code>: If a resource set exists Route 53 updates it with the
|
|
237
|
-
* values in the request. </p>
|
|
238
|
-
* </li>
|
|
239
|
-
* </ul>
|
|
240
|
-
* <p>
|
|
241
|
-
* <b>Syntaxes for Creating, Updating, and Deleting Resource Record
|
|
242
|
-
* Sets</b>
|
|
243
|
-
* </p>
|
|
244
|
-
* <p>The syntax for a request depends on the type of resource record set that you want to
|
|
245
|
-
* create, delete, or update, such as weighted, alias, or failover. The XML elements in
|
|
246
|
-
* your request must appear in the order listed in the syntax. </p>
|
|
247
|
-
* <p>For an example for each type of resource record set, see "Examples."</p>
|
|
248
|
-
* <p>Don't refer to the syntax in the "Parameter Syntax" section, which includes
|
|
249
|
-
* all of the elements for every kind of resource record set that you can create, delete,
|
|
250
|
-
* or update by using <code>ChangeResourceRecordSets</code>. </p>
|
|
251
|
-
* <p>
|
|
252
|
-
* <b>Change Propagation to Route 53 DNS Servers</b>
|
|
253
|
-
* </p>
|
|
254
|
-
* <p>When you submit a <code>ChangeResourceRecordSets</code> request, Route 53 propagates
|
|
255
|
-
* your changes to all of the Route 53 authoritative DNS servers. While your changes are
|
|
256
|
-
* propagating, <code>GetChange</code> returns a status of <code>PENDING</code>. When
|
|
257
|
-
* propagation is complete, <code>GetChange</code> returns a status of <code>INSYNC</code>.
|
|
258
|
-
* Changes generally propagate to all Route 53 name servers within 60 seconds. For more
|
|
259
|
-
* information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html">GetChange</a>.</p>
|
|
260
|
-
* <p>
|
|
261
|
-
* <b>Limits on ChangeResourceRecordSets Requests</b>
|
|
262
|
-
* </p>
|
|
263
|
-
* <p>For information about the limits on a <code>ChangeResourceRecordSets</code> request,
|
|
264
|
-
* see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
93
|
+
* @see {@link ChangeResourceRecordSetsCommand}
|
|
265
94
|
*/
|
|
266
95
|
changeResourceRecordSets(args: ChangeResourceRecordSetsCommandInput, options?: __HttpHandlerOptions): Promise<ChangeResourceRecordSetsCommandOutput>;
|
|
267
96
|
changeResourceRecordSets(args: ChangeResourceRecordSetsCommandInput, cb: (err: any, data?: ChangeResourceRecordSetsCommandOutput) => void): void;
|
|
268
97
|
changeResourceRecordSets(args: ChangeResourceRecordSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeResourceRecordSetsCommandOutput) => void): void;
|
|
269
98
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Adds, edits, or deletes tags for a health check or a hosted zone.</p>
|
|
272
|
-
* <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
|
|
273
|
-
* Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
|
|
99
|
+
* @see {@link ChangeTagsForResourceCommand}
|
|
274
100
|
*/
|
|
275
101
|
changeTagsForResource(args: ChangeTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ChangeTagsForResourceCommandOutput>;
|
|
276
102
|
changeTagsForResource(args: ChangeTagsForResourceCommandInput, cb: (err: any, data?: ChangeTagsForResourceCommandOutput) => void): void;
|
|
277
103
|
changeTagsForResource(args: ChangeTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ChangeTagsForResourceCommandOutput) => void): void;
|
|
278
104
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Creates a CIDR collection in the current Amazon Web Services account.</p>
|
|
105
|
+
* @see {@link CreateCidrCollectionCommand}
|
|
281
106
|
*/
|
|
282
107
|
createCidrCollection(args: CreateCidrCollectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateCidrCollectionCommandOutput>;
|
|
283
108
|
createCidrCollection(args: CreateCidrCollectionCommandInput, cb: (err: any, data?: CreateCidrCollectionCommandOutput) => void): void;
|
|
284
109
|
createCidrCollection(args: CreateCidrCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCidrCollectionCommandOutput) => void): void;
|
|
285
110
|
/**
|
|
286
|
-
* @
|
|
287
|
-
* <p>Creates a new health check.</p>
|
|
288
|
-
* <p>For information about adding health checks to resource record sets, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId">HealthCheckId</a> in <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>. </p>
|
|
289
|
-
* <p>
|
|
290
|
-
* <b>ELB Load Balancers</b>
|
|
291
|
-
* </p>
|
|
292
|
-
* <p>If you're registering EC2 instances with an Elastic Load Balancing (ELB) load
|
|
293
|
-
* balancer, do not create Amazon Route 53 health checks for the EC2 instances. When you
|
|
294
|
-
* register an EC2 instance with a load balancer, you configure settings for an ELB health
|
|
295
|
-
* check, which performs a similar function to a Route 53 health check.</p>
|
|
296
|
-
* <p>
|
|
297
|
-
* <b>Private Hosted Zones</b>
|
|
298
|
-
* </p>
|
|
299
|
-
* <p>You can associate health checks with failover resource record sets in a private hosted
|
|
300
|
-
* zone. Note the following:</p>
|
|
301
|
-
* <ul>
|
|
302
|
-
* <li>
|
|
303
|
-
* <p>Route 53 health checkers are outside the VPC. To check the health of an
|
|
304
|
-
* endpoint within a VPC by IP address, you must assign a public IP address to the
|
|
305
|
-
* instance in the VPC.</p>
|
|
306
|
-
* </li>
|
|
307
|
-
* <li>
|
|
308
|
-
* <p>You can configure a health checker to check the health of an external resource
|
|
309
|
-
* that the instance relies on, such as a database server.</p>
|
|
310
|
-
* </li>
|
|
311
|
-
* <li>
|
|
312
|
-
* <p>You can create a CloudWatch metric, associate an alarm with the metric, and
|
|
313
|
-
* then create a health check that is based on the state of the alarm. For example,
|
|
314
|
-
* you might create a CloudWatch metric that checks the status of the Amazon EC2
|
|
315
|
-
* <code>StatusCheckFailed</code> metric, add an alarm to the metric, and then
|
|
316
|
-
* create a health check that is based on the state of the alarm. For information
|
|
317
|
-
* about creating CloudWatch metrics and alarms by using the CloudWatch console,
|
|
318
|
-
* see the <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html">Amazon
|
|
319
|
-
* CloudWatch User Guide</a>.</p>
|
|
320
|
-
* </li>
|
|
321
|
-
* </ul>
|
|
111
|
+
* @see {@link CreateHealthCheckCommand}
|
|
322
112
|
*/
|
|
323
113
|
createHealthCheck(args: CreateHealthCheckCommandInput, options?: __HttpHandlerOptions): Promise<CreateHealthCheckCommandOutput>;
|
|
324
114
|
createHealthCheck(args: CreateHealthCheckCommandInput, cb: (err: any, data?: CreateHealthCheckCommandOutput) => void): void;
|
|
325
115
|
createHealthCheck(args: CreateHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHealthCheckCommandOutput) => void): void;
|
|
326
116
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Creates a new public or private hosted zone. You create records in a public hosted
|
|
329
|
-
* zone to define how you want to route traffic on the internet for a domain, such as
|
|
330
|
-
* example.com, and its subdomains (apex.example.com, acme.example.com). You create records
|
|
331
|
-
* in a private hosted zone to define how you want to route traffic for a domain and its
|
|
332
|
-
* subdomains within one or more Amazon Virtual Private Clouds (Amazon VPCs). </p>
|
|
333
|
-
* <important>
|
|
334
|
-
* <p>You can't convert a public hosted zone to a private hosted zone or vice versa.
|
|
335
|
-
* Instead, you must create a new hosted zone with the same name and create new
|
|
336
|
-
* resource record sets.</p>
|
|
337
|
-
* </important>
|
|
338
|
-
* <p>For more information about charges for hosted zones, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
|
|
339
|
-
* <p>Note the following:</p>
|
|
340
|
-
* <ul>
|
|
341
|
-
* <li>
|
|
342
|
-
* <p>You can't create a hosted zone for a top-level domain (TLD) such as
|
|
343
|
-
* .com.</p>
|
|
344
|
-
* </li>
|
|
345
|
-
* <li>
|
|
346
|
-
* <p>For public hosted zones, Route 53 automatically creates a default SOA record
|
|
347
|
-
* and four NS records for the zone. For more information about SOA and NS records,
|
|
348
|
-
* see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">NS and SOA Records
|
|
349
|
-
* that Route 53 Creates for a Hosted Zone</a> in the
|
|
350
|
-
* <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
351
|
-
* <p>If you want to use the same name servers for multiple public hosted zones, you
|
|
352
|
-
* can optionally associate a reusable delegation set with the hosted zone. See the
|
|
353
|
-
* <code>DelegationSetId</code> element.</p>
|
|
354
|
-
* </li>
|
|
355
|
-
* <li>
|
|
356
|
-
* <p>If your domain is registered with a registrar other than Route 53,
|
|
357
|
-
* you must update the name servers with your registrar to make Route 53 the DNS
|
|
358
|
-
* service for the domain. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html">Migrating DNS Service
|
|
359
|
-
* for an Existing Domain to Amazon Route 53</a> in the
|
|
360
|
-
* <i>Amazon Route 53 Developer Guide</i>. </p>
|
|
361
|
-
* </li>
|
|
362
|
-
* </ul>
|
|
363
|
-
* <p>When you submit a <code>CreateHostedZone</code> request, the initial status of the
|
|
364
|
-
* hosted zone is <code>PENDING</code>. For public hosted zones, this means that the NS and
|
|
365
|
-
* SOA records are not yet available on all Route 53 DNS servers. When the NS and
|
|
366
|
-
* SOA records are available, the status of the zone changes to <code>INSYNC</code>.</p>
|
|
367
|
-
* <p>The <code>CreateHostedZone</code> request requires the caller to have an
|
|
368
|
-
* <code>ec2:DescribeVpcs</code> permission.</p>
|
|
369
|
-
* <note>
|
|
370
|
-
* <p>When creating private hosted zones, the Amazon VPC must belong to the same
|
|
371
|
-
* partition where the hosted zone is created. A partition is a group of Amazon Web Services Regions. Each Amazon Web Services account is scoped to one
|
|
372
|
-
* partition.</p>
|
|
373
|
-
* <p>The following are the supported partitions:</p>
|
|
374
|
-
* <ul>
|
|
375
|
-
* <li>
|
|
376
|
-
* <p>
|
|
377
|
-
* <code>aws</code> - Amazon Web Services Regions</p>
|
|
378
|
-
* </li>
|
|
379
|
-
* <li>
|
|
380
|
-
* <p>
|
|
381
|
-
* <code>aws-cn</code> - China Regions</p>
|
|
382
|
-
* </li>
|
|
383
|
-
* <li>
|
|
384
|
-
* <p>
|
|
385
|
-
* <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
|
|
386
|
-
* </li>
|
|
387
|
-
* </ul>
|
|
388
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
|
|
389
|
-
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
390
|
-
* </note>
|
|
117
|
+
* @see {@link CreateHostedZoneCommand}
|
|
391
118
|
*/
|
|
392
119
|
createHostedZone(args: CreateHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<CreateHostedZoneCommandOutput>;
|
|
393
120
|
createHostedZone(args: CreateHostedZoneCommandInput, cb: (err: any, data?: CreateHostedZoneCommandOutput) => void): void;
|
|
394
121
|
createHostedZone(args: CreateHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHostedZoneCommandOutput) => void): void;
|
|
395
122
|
/**
|
|
396
|
-
* @
|
|
397
|
-
* <p>Creates a new key-signing key (KSK) associated with a hosted zone. You can only have
|
|
398
|
-
* two KSKs per hosted zone.</p>
|
|
123
|
+
* @see {@link CreateKeySigningKeyCommand}
|
|
399
124
|
*/
|
|
400
125
|
createKeySigningKey(args: CreateKeySigningKeyCommandInput, options?: __HttpHandlerOptions): Promise<CreateKeySigningKeyCommandOutput>;
|
|
401
126
|
createKeySigningKey(args: CreateKeySigningKeyCommandInput, cb: (err: any, data?: CreateKeySigningKeyCommandOutput) => void): void;
|
|
402
127
|
createKeySigningKey(args: CreateKeySigningKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeySigningKeyCommandOutput) => void): void;
|
|
403
128
|
/**
|
|
404
|
-
* @
|
|
405
|
-
* <p>Creates a configuration for DNS query logging. After you create a query logging
|
|
406
|
-
* configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs
|
|
407
|
-
* log group.</p>
|
|
408
|
-
* <p>DNS query logs contain information about the queries that Route 53 receives for a
|
|
409
|
-
* specified public hosted zone, such as the following:</p>
|
|
410
|
-
* <ul>
|
|
411
|
-
* <li>
|
|
412
|
-
* <p>Route 53 edge location that responded to the DNS query</p>
|
|
413
|
-
* </li>
|
|
414
|
-
* <li>
|
|
415
|
-
* <p>Domain or subdomain that was requested</p>
|
|
416
|
-
* </li>
|
|
417
|
-
* <li>
|
|
418
|
-
* <p>DNS record type, such as A or AAAA</p>
|
|
419
|
-
* </li>
|
|
420
|
-
* <li>
|
|
421
|
-
* <p>DNS response code, such as <code>NoError</code> or
|
|
422
|
-
* <code>ServFail</code>
|
|
423
|
-
* </p>
|
|
424
|
-
* </li>
|
|
425
|
-
* </ul>
|
|
426
|
-
* <dl>
|
|
427
|
-
* <dt>Log Group and Resource Policy</dt>
|
|
428
|
-
* <dd>
|
|
429
|
-
* <p>Before you create a query logging configuration, perform the following
|
|
430
|
-
* operations.</p>
|
|
431
|
-
* <note>
|
|
432
|
-
* <p>If you create a query logging configuration using the Route 53
|
|
433
|
-
* console, Route 53 performs these operations automatically.</p>
|
|
434
|
-
* </note>
|
|
435
|
-
* <ol>
|
|
436
|
-
* <li>
|
|
437
|
-
* <p>Create a CloudWatch Logs log group, and make note of the ARN,
|
|
438
|
-
* which you specify when you create a query logging configuration.
|
|
439
|
-
* Note the following:</p>
|
|
440
|
-
* <ul>
|
|
441
|
-
* <li>
|
|
442
|
-
* <p>You must create the log group in the us-east-1
|
|
443
|
-
* region.</p>
|
|
444
|
-
* </li>
|
|
445
|
-
* <li>
|
|
446
|
-
* <p>You must use the same Amazon Web Services account to create
|
|
447
|
-
* the log group and the hosted zone that you want to configure
|
|
448
|
-
* query logging for.</p>
|
|
449
|
-
* </li>
|
|
450
|
-
* <li>
|
|
451
|
-
* <p>When you create log groups for query logging, we recommend
|
|
452
|
-
* that you use a consistent prefix, for example:</p>
|
|
453
|
-
* <p>
|
|
454
|
-
* <code>/aws/route53/<i>hosted zone
|
|
455
|
-
* name</i>
|
|
456
|
-
* </code>
|
|
457
|
-
* </p>
|
|
458
|
-
* <p>In the next step, you'll create a resource policy, which
|
|
459
|
-
* controls access to one or more log groups and the associated
|
|
460
|
-
* Amazon Web Services resources, such as Route 53 hosted
|
|
461
|
-
* zones. There's a limit on the number of resource policies
|
|
462
|
-
* that you can create, so we recommend that you use a
|
|
463
|
-
* consistent prefix so you can use the same resource policy
|
|
464
|
-
* for all the log groups that you create for query
|
|
465
|
-
* logging.</p>
|
|
466
|
-
* </li>
|
|
467
|
-
* </ul>
|
|
468
|
-
* </li>
|
|
469
|
-
* <li>
|
|
470
|
-
* <p>Create a CloudWatch Logs resource policy, and give it the
|
|
471
|
-
* permissions that Route 53 needs to create log streams and to send
|
|
472
|
-
* query logs to log streams. For the value of <code>Resource</code>,
|
|
473
|
-
* specify the ARN for the log group that you created in the previous
|
|
474
|
-
* step. To use the same resource policy for all the CloudWatch Logs
|
|
475
|
-
* log groups that you created for query logging configurations,
|
|
476
|
-
* replace the hosted zone name with <code>*</code>, for
|
|
477
|
-
* example:</p>
|
|
478
|
-
* <p>
|
|
479
|
-
* <code>arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*</code>
|
|
480
|
-
* </p>
|
|
481
|
-
* <p>To avoid the confused deputy problem, a security issue where an
|
|
482
|
-
* entity without a permission for an action can coerce a
|
|
483
|
-
* more-privileged entity to perform it, you can optionally limit the
|
|
484
|
-
* permissions that a service has to a resource in a resource-based
|
|
485
|
-
* policy by supplying the following values:</p>
|
|
486
|
-
* <ul>
|
|
487
|
-
* <li>
|
|
488
|
-
* <p>For <code>aws:SourceArn</code>, supply the hosted zone ARN
|
|
489
|
-
* used in creating the query logging configuration. For
|
|
490
|
-
* example, <code>aws:SourceArn:
|
|
491
|
-
* arn:aws:route53:::hostedzone/hosted zone
|
|
492
|
-
* ID</code>.</p>
|
|
493
|
-
* </li>
|
|
494
|
-
* <li>
|
|
495
|
-
* <p>For <code>aws:SourceAccount</code>, supply the account ID
|
|
496
|
-
* for the account that creates the query logging
|
|
497
|
-
* configuration. For example,
|
|
498
|
-
* <code>aws:SourceAccount:111111111111</code>.</p>
|
|
499
|
-
* </li>
|
|
500
|
-
* </ul>
|
|
501
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html">The confused
|
|
502
|
-
* deputy problem</a> in the <i>Amazon Web Services
|
|
503
|
-
* IAM User Guide</i>.</p>
|
|
504
|
-
* <note>
|
|
505
|
-
* <p>You can't use the CloudWatch console to create or edit a
|
|
506
|
-
* resource policy. You must use the CloudWatch API, one of the
|
|
507
|
-
* Amazon Web Services SDKs, or the CLI.</p>
|
|
508
|
-
* </note>
|
|
509
|
-
* </li>
|
|
510
|
-
* </ol>
|
|
511
|
-
* </dd>
|
|
512
|
-
* <dt>Log Streams and Edge Locations</dt>
|
|
513
|
-
* <dd>
|
|
514
|
-
* <p>When Route 53 finishes creating the configuration for DNS query logging,
|
|
515
|
-
* it does the following:</p>
|
|
516
|
-
* <ul>
|
|
517
|
-
* <li>
|
|
518
|
-
* <p>Creates a log stream for an edge location the first time that the
|
|
519
|
-
* edge location responds to DNS queries for the specified hosted zone.
|
|
520
|
-
* That log stream is used to log all queries that Route 53 responds to
|
|
521
|
-
* for that edge location.</p>
|
|
522
|
-
* </li>
|
|
523
|
-
* <li>
|
|
524
|
-
* <p>Begins to send query logs to the applicable log stream.</p>
|
|
525
|
-
* </li>
|
|
526
|
-
* </ul>
|
|
527
|
-
* <p>The name of each log stream is in the following format:</p>
|
|
528
|
-
* <p>
|
|
529
|
-
* <code>
|
|
530
|
-
* <i>hosted zone ID</i>/<i>edge location
|
|
531
|
-
* code</i>
|
|
532
|
-
* </code>
|
|
533
|
-
* </p>
|
|
534
|
-
* <p>The edge location code is a three-letter code and an arbitrarily assigned
|
|
535
|
-
* number, for example, DFW3. The three-letter code typically corresponds with
|
|
536
|
-
* the International Air Transport Association airport code for an airport near
|
|
537
|
-
* the edge location. (These abbreviations might change in the future.) For a
|
|
538
|
-
* list of edge locations, see "The Route 53 Global Network" on the <a href="http://aws.amazon.com/route53/details/">Route 53 Product Details</a>
|
|
539
|
-
* page.</p>
|
|
540
|
-
* </dd>
|
|
541
|
-
* <dt>Queries That Are Logged</dt>
|
|
542
|
-
* <dd>
|
|
543
|
-
* <p>Query logs contain only the queries that DNS resolvers forward to Route
|
|
544
|
-
* 53. If a DNS resolver has already cached the response to a query (such as
|
|
545
|
-
* the IP address for a load balancer for example.com), the resolver will
|
|
546
|
-
* continue to return the cached response. It doesn't forward another query to
|
|
547
|
-
* Route 53 until the TTL for the corresponding resource record set expires.
|
|
548
|
-
* Depending on how many DNS queries are submitted for a resource record set,
|
|
549
|
-
* and depending on the TTL for that resource record set, query logs might
|
|
550
|
-
* contain information about only one query out of every several thousand
|
|
551
|
-
* queries that are submitted to DNS. For more information about how DNS works,
|
|
552
|
-
* see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html">Routing
|
|
553
|
-
* Internet Traffic to Your Website or Web Application</a> in the
|
|
554
|
-
* <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
555
|
-
* </dd>
|
|
556
|
-
* <dt>Log File Format</dt>
|
|
557
|
-
* <dd>
|
|
558
|
-
* <p>For a list of the values in each query log and the format of each value,
|
|
559
|
-
* see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS
|
|
560
|
-
* Queries</a> in the <i>Amazon Route 53 Developer
|
|
561
|
-
* Guide</i>.</p>
|
|
562
|
-
* </dd>
|
|
563
|
-
* <dt>Pricing</dt>
|
|
564
|
-
* <dd>
|
|
565
|
-
* <p>For information about charges for query logs, see <a href="http://aws.amazon.com/cloudwatch/pricing/">Amazon CloudWatch Pricing</a>.</p>
|
|
566
|
-
* </dd>
|
|
567
|
-
* <dt>How to Stop Logging</dt>
|
|
568
|
-
* <dd>
|
|
569
|
-
* <p>If you want Route 53 to stop sending query logs to CloudWatch Logs, delete
|
|
570
|
-
* the query logging configuration. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html">DeleteQueryLoggingConfig</a>.</p>
|
|
571
|
-
* </dd>
|
|
572
|
-
* </dl>
|
|
129
|
+
* @see {@link CreateQueryLoggingConfigCommand}
|
|
573
130
|
*/
|
|
574
131
|
createQueryLoggingConfig(args: CreateQueryLoggingConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateQueryLoggingConfigCommandOutput>;
|
|
575
132
|
createQueryLoggingConfig(args: CreateQueryLoggingConfigCommandInput, cb: (err: any, data?: CreateQueryLoggingConfigCommandOutput) => void): void;
|
|
576
133
|
createQueryLoggingConfig(args: CreateQueryLoggingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQueryLoggingConfigCommandOutput) => void): void;
|
|
577
134
|
/**
|
|
578
|
-
* @
|
|
579
|
-
* <p>Creates a delegation set (a group of four name servers) that can be reused by multiple
|
|
580
|
-
* hosted zones that were created by the same Amazon Web Services account. </p>
|
|
581
|
-
* <p>You can also create a reusable delegation set that uses the four name servers that are
|
|
582
|
-
* associated with an existing hosted zone. Specify the hosted zone ID in the
|
|
583
|
-
* <code>CreateReusableDelegationSet</code> request.</p>
|
|
584
|
-
* <note>
|
|
585
|
-
* <p>You can't associate a reusable delegation set with a private hosted zone.</p>
|
|
586
|
-
* </note>
|
|
587
|
-
* <p>For information about using a reusable delegation set to configure white label name
|
|
588
|
-
* servers, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html">Configuring White
|
|
589
|
-
* Label Name Servers</a>.</p>
|
|
590
|
-
* <p>The process for migrating existing hosted zones to use a reusable delegation set is
|
|
591
|
-
* comparable to the process for configuring white label name servers. You need to perform
|
|
592
|
-
* the following steps:</p>
|
|
593
|
-
* <ol>
|
|
594
|
-
* <li>
|
|
595
|
-
* <p>Create a reusable delegation set.</p>
|
|
596
|
-
* </li>
|
|
597
|
-
* <li>
|
|
598
|
-
* <p>Recreate hosted zones, and reduce the TTL to 60 seconds or less.</p>
|
|
599
|
-
* </li>
|
|
600
|
-
* <li>
|
|
601
|
-
* <p>Recreate resource record sets in the new hosted zones.</p>
|
|
602
|
-
* </li>
|
|
603
|
-
* <li>
|
|
604
|
-
* <p>Change the registrar's name servers to use the name servers for the new hosted
|
|
605
|
-
* zones.</p>
|
|
606
|
-
* </li>
|
|
607
|
-
* <li>
|
|
608
|
-
* <p>Monitor traffic for the website or application.</p>
|
|
609
|
-
* </li>
|
|
610
|
-
* <li>
|
|
611
|
-
* <p>Change TTLs back to their original values.</p>
|
|
612
|
-
* </li>
|
|
613
|
-
* </ol>
|
|
614
|
-
* <p>If you want to migrate existing hosted zones to use a reusable delegation set, the
|
|
615
|
-
* existing hosted zones can't use any of the name servers that are assigned to the
|
|
616
|
-
* reusable delegation set. If one or more hosted zones do use one or more name servers
|
|
617
|
-
* that are assigned to the reusable delegation set, you can do one of the
|
|
618
|
-
* following:</p>
|
|
619
|
-
* <ul>
|
|
620
|
-
* <li>
|
|
621
|
-
* <p>For small numbers of hosted zones—up to a few hundred—it's
|
|
622
|
-
* relatively easy to create reusable delegation sets until you get one that has
|
|
623
|
-
* four name servers that don't overlap with any of the name servers in your hosted
|
|
624
|
-
* zones.</p>
|
|
625
|
-
* </li>
|
|
626
|
-
* <li>
|
|
627
|
-
* <p>For larger numbers of hosted zones, the easiest solution is to use more than
|
|
628
|
-
* one reusable delegation set.</p>
|
|
629
|
-
* </li>
|
|
630
|
-
* <li>
|
|
631
|
-
* <p>For larger numbers of hosted zones, you can also migrate hosted zones that
|
|
632
|
-
* have overlapping name servers to hosted zones that don't have overlapping name
|
|
633
|
-
* servers, then migrate the hosted zones again to use the reusable delegation
|
|
634
|
-
* set.</p>
|
|
635
|
-
* </li>
|
|
636
|
-
* </ul>
|
|
135
|
+
* @see {@link CreateReusableDelegationSetCommand}
|
|
637
136
|
*/
|
|
638
137
|
createReusableDelegationSet(args: CreateReusableDelegationSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateReusableDelegationSetCommandOutput>;
|
|
639
138
|
createReusableDelegationSet(args: CreateReusableDelegationSetCommandInput, cb: (err: any, data?: CreateReusableDelegationSetCommandOutput) => void): void;
|
|
640
139
|
createReusableDelegationSet(args: CreateReusableDelegationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReusableDelegationSetCommandOutput) => void): void;
|
|
641
140
|
/**
|
|
642
|
-
* @
|
|
643
|
-
* <p>Creates a traffic policy, which you use to create multiple DNS resource record sets
|
|
644
|
-
* for one domain name (such as example.com) or one subdomain name (such as
|
|
645
|
-
* www.example.com).</p>
|
|
141
|
+
* @see {@link CreateTrafficPolicyCommand}
|
|
646
142
|
*/
|
|
647
143
|
createTrafficPolicy(args: CreateTrafficPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficPolicyCommandOutput>;
|
|
648
144
|
createTrafficPolicy(args: CreateTrafficPolicyCommandInput, cb: (err: any, data?: CreateTrafficPolicyCommandOutput) => void): void;
|
|
649
145
|
createTrafficPolicy(args: CreateTrafficPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficPolicyCommandOutput) => void): void;
|
|
650
146
|
/**
|
|
651
|
-
* @
|
|
652
|
-
* <p>Creates resource record sets in a specified hosted zone based on the settings in a
|
|
653
|
-
* specified traffic policy version. In addition, <code>CreateTrafficPolicyInstance</code>
|
|
654
|
-
* associates the resource record sets with a specified domain name (such as example.com)
|
|
655
|
-
* or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for
|
|
656
|
-
* the domain or subdomain name by using the resource record sets that
|
|
657
|
-
* <code>CreateTrafficPolicyInstance</code> created.</p>
|
|
147
|
+
* @see {@link CreateTrafficPolicyInstanceCommand}
|
|
658
148
|
*/
|
|
659
149
|
createTrafficPolicyInstance(args: CreateTrafficPolicyInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficPolicyInstanceCommandOutput>;
|
|
660
150
|
createTrafficPolicyInstance(args: CreateTrafficPolicyInstanceCommandInput, cb: (err: any, data?: CreateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
661
151
|
createTrafficPolicyInstance(args: CreateTrafficPolicyInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
662
152
|
/**
|
|
663
|
-
* @
|
|
664
|
-
* <p>Creates a new version of an existing traffic policy. When you create a new version of
|
|
665
|
-
* a traffic policy, you specify the ID of the traffic policy that you want to update and a
|
|
666
|
-
* JSON-formatted document that describes the new version. You use traffic policies to
|
|
667
|
-
* create multiple DNS resource record sets for one domain name (such as example.com) or
|
|
668
|
-
* one subdomain name (such as www.example.com). You can create a maximum of 1000 versions
|
|
669
|
-
* of a traffic policy. If you reach the limit and need to create another version, you'll
|
|
670
|
-
* need to start a new traffic policy.</p>
|
|
153
|
+
* @see {@link CreateTrafficPolicyVersionCommand}
|
|
671
154
|
*/
|
|
672
155
|
createTrafficPolicyVersion(args: CreateTrafficPolicyVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrafficPolicyVersionCommandOutput>;
|
|
673
156
|
createTrafficPolicyVersion(args: CreateTrafficPolicyVersionCommandInput, cb: (err: any, data?: CreateTrafficPolicyVersionCommandOutput) => void): void;
|
|
674
157
|
createTrafficPolicyVersion(args: CreateTrafficPolicyVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrafficPolicyVersionCommandOutput) => void): void;
|
|
675
158
|
/**
|
|
676
|
-
* @
|
|
677
|
-
* <p>Authorizes the Amazon Web Services account that created a specified VPC to submit an
|
|
678
|
-
* <code>AssociateVPCWithHostedZone</code> request to associate the VPC with a
|
|
679
|
-
* specified hosted zone that was created by a different account. To submit a
|
|
680
|
-
* <code>CreateVPCAssociationAuthorization</code> request, you must use the account
|
|
681
|
-
* that created the hosted zone. After you authorize the association, use the account that
|
|
682
|
-
* created the VPC to submit an <code>AssociateVPCWithHostedZone</code> request.</p>
|
|
683
|
-
* <note>
|
|
684
|
-
* <p>If you want to associate multiple VPCs that you created by using one account with
|
|
685
|
-
* a hosted zone that you created by using a different account, you must submit one
|
|
686
|
-
* authorization request for each VPC.</p>
|
|
687
|
-
* </note>
|
|
159
|
+
* @see {@link CreateVPCAssociationAuthorizationCommand}
|
|
688
160
|
*/
|
|
689
161
|
createVPCAssociationAuthorization(args: CreateVPCAssociationAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<CreateVPCAssociationAuthorizationCommandOutput>;
|
|
690
162
|
createVPCAssociationAuthorization(args: CreateVPCAssociationAuthorizationCommandInput, cb: (err: any, data?: CreateVPCAssociationAuthorizationCommandOutput) => void): void;
|
|
691
163
|
createVPCAssociationAuthorization(args: CreateVPCAssociationAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVPCAssociationAuthorizationCommandOutput) => void): void;
|
|
692
164
|
/**
|
|
693
|
-
* @
|
|
694
|
-
* <p>Deactivates a key-signing key (KSK) so that it will not be used for signing by DNSSEC.
|
|
695
|
-
* This operation changes the KSK status to <code>INACTIVE</code>.</p>
|
|
165
|
+
* @see {@link DeactivateKeySigningKeyCommand}
|
|
696
166
|
*/
|
|
697
167
|
deactivateKeySigningKey(args: DeactivateKeySigningKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeactivateKeySigningKeyCommandOutput>;
|
|
698
168
|
deactivateKeySigningKey(args: DeactivateKeySigningKeyCommandInput, cb: (err: any, data?: DeactivateKeySigningKeyCommandOutput) => void): void;
|
|
699
169
|
deactivateKeySigningKey(args: DeactivateKeySigningKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivateKeySigningKeyCommandOutput) => void): void;
|
|
700
170
|
/**
|
|
701
|
-
* @
|
|
702
|
-
* <p>Deletes a CIDR collection in the current Amazon Web Services account. The collection
|
|
703
|
-
* must be empty before it can be deleted.</p>
|
|
171
|
+
* @see {@link DeleteCidrCollectionCommand}
|
|
704
172
|
*/
|
|
705
173
|
deleteCidrCollection(args: DeleteCidrCollectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCidrCollectionCommandOutput>;
|
|
706
174
|
deleteCidrCollection(args: DeleteCidrCollectionCommandInput, cb: (err: any, data?: DeleteCidrCollectionCommandOutput) => void): void;
|
|
707
175
|
deleteCidrCollection(args: DeleteCidrCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCidrCollectionCommandOutput) => void): void;
|
|
708
176
|
/**
|
|
709
|
-
* @
|
|
710
|
-
* <p>Deletes a health check.</p>
|
|
711
|
-
* <important>
|
|
712
|
-
* <p>Amazon Route 53 does not prevent you from deleting a health check even if the
|
|
713
|
-
* health check is associated with one or more resource record sets. If you delete a
|
|
714
|
-
* health check and you don't update the associated resource record sets, the future
|
|
715
|
-
* status of the health check can't be predicted and may change. This will affect the
|
|
716
|
-
* routing of DNS queries for your DNS failover configuration. For more information,
|
|
717
|
-
* see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html">Replacing and Deleting Health Checks</a> in the <i>Amazon Route 53
|
|
718
|
-
* Developer Guide</i>.</p>
|
|
719
|
-
* </important>
|
|
720
|
-
* <p>If you're using Cloud Map and you configured Cloud Map to create a Route 53
|
|
721
|
-
* health check when you register an instance, you can't use the Route 53
|
|
722
|
-
* <code>DeleteHealthCheck</code> command to delete the health check. The health check
|
|
723
|
-
* is deleted automatically when you deregister the instance; there can be a delay of
|
|
724
|
-
* several hours before the health check is deleted from Route 53. </p>
|
|
177
|
+
* @see {@link DeleteHealthCheckCommand}
|
|
725
178
|
*/
|
|
726
179
|
deleteHealthCheck(args: DeleteHealthCheckCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHealthCheckCommandOutput>;
|
|
727
180
|
deleteHealthCheck(args: DeleteHealthCheckCommandInput, cb: (err: any, data?: DeleteHealthCheckCommandOutput) => void): void;
|
|
728
181
|
deleteHealthCheck(args: DeleteHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHealthCheckCommandOutput) => void): void;
|
|
729
182
|
/**
|
|
730
|
-
* @
|
|
731
|
-
* <p>Deletes a hosted zone.</p>
|
|
732
|
-
* <p>If the hosted zone was created by another service, such as Cloud Map, see
|
|
733
|
-
* <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html#delete-public-hosted-zone-created-by-another-service">Deleting Public Hosted Zones That Were Created by Another Service</a> in the
|
|
734
|
-
* <i>Amazon Route 53 Developer Guide</i> for information
|
|
735
|
-
* about how to delete it. (The process is the same for public and private hosted zones
|
|
736
|
-
* that were created by another service.)</p>
|
|
737
|
-
* <p>If you want to keep your domain registration but you want to stop routing internet
|
|
738
|
-
* traffic to your website or web application, we recommend that you delete resource record
|
|
739
|
-
* sets in the hosted zone instead of deleting the hosted zone.</p>
|
|
740
|
-
* <important>
|
|
741
|
-
* <p>If you delete a hosted zone, you can't undelete it. You must create a new hosted
|
|
742
|
-
* zone and update the name servers for your domain registration, which can require up
|
|
743
|
-
* to 48 hours to take effect. (If you delegated responsibility for a subdomain to a
|
|
744
|
-
* hosted zone and you delete the child hosted zone, you must update the name servers
|
|
745
|
-
* in the parent hosted zone.) In addition, if you delete a hosted zone, someone could
|
|
746
|
-
* hijack the domain and route traffic to their own resources using your domain
|
|
747
|
-
* name.</p>
|
|
748
|
-
* </important>
|
|
749
|
-
* <p>If you want to avoid the monthly charge for the hosted zone, you can transfer DNS
|
|
750
|
-
* service for the domain to a free DNS service. When you transfer DNS service, you have to
|
|
751
|
-
* update the name servers for the domain registration. If the domain is registered with
|
|
752
|
-
* Route 53, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_UpdateDomainNameservers.html">UpdateDomainNameservers</a> for information about how to replace Route 53 name servers with name servers for the new DNS service. If the domain is
|
|
753
|
-
* registered with another registrar, use the method provided by the registrar to update
|
|
754
|
-
* name servers for the domain registration. For more information, perform an internet
|
|
755
|
-
* search on "free DNS service."</p>
|
|
756
|
-
* <p>You can delete a hosted zone only if it contains only the default SOA record and NS
|
|
757
|
-
* resource record sets. If the hosted zone contains other resource record sets, you must
|
|
758
|
-
* delete them before you can delete the hosted zone. If you try to delete a hosted zone
|
|
759
|
-
* that contains other resource record sets, the request fails, and Route 53
|
|
760
|
-
* returns a <code>HostedZoneNotEmpty</code> error. For information about deleting records
|
|
761
|
-
* from your hosted zone, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>.</p>
|
|
762
|
-
* <p>To verify that the hosted zone has been deleted, do one of the following:</p>
|
|
763
|
-
* <ul>
|
|
764
|
-
* <li>
|
|
765
|
-
* <p>Use the <code>GetHostedZone</code> action to request information about the
|
|
766
|
-
* hosted zone.</p>
|
|
767
|
-
* </li>
|
|
768
|
-
* <li>
|
|
769
|
-
* <p>Use the <code>ListHostedZones</code> action to get a list of the hosted zones
|
|
770
|
-
* associated with the current Amazon Web Services account.</p>
|
|
771
|
-
* </li>
|
|
772
|
-
* </ul>
|
|
183
|
+
* @see {@link DeleteHostedZoneCommand}
|
|
773
184
|
*/
|
|
774
185
|
deleteHostedZone(args: DeleteHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHostedZoneCommandOutput>;
|
|
775
186
|
deleteHostedZone(args: DeleteHostedZoneCommandInput, cb: (err: any, data?: DeleteHostedZoneCommandOutput) => void): void;
|
|
776
187
|
deleteHostedZone(args: DeleteHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHostedZoneCommandOutput) => void): void;
|
|
777
188
|
/**
|
|
778
|
-
* @
|
|
779
|
-
* <p>Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it.
|
|
780
|
-
* The KSK must be deactivated before you can delete it regardless of whether the hosted
|
|
781
|
-
* zone is enabled for DNSSEC signing.</p>
|
|
782
|
-
* <p>You can use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeactivateKeySigningKey.html">DeactivateKeySigningKey</a> to deactivate the key before you delete it.</p>
|
|
783
|
-
* <p>Use <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetDNSSEC.html">GetDNSSEC</a> to verify that the KSK is in an <code>INACTIVE</code>
|
|
784
|
-
* status.</p>
|
|
189
|
+
* @see {@link DeleteKeySigningKeyCommand}
|
|
785
190
|
*/
|
|
786
191
|
deleteKeySigningKey(args: DeleteKeySigningKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKeySigningKeyCommandOutput>;
|
|
787
192
|
deleteKeySigningKey(args: DeleteKeySigningKeyCommandInput, cb: (err: any, data?: DeleteKeySigningKeyCommandOutput) => void): void;
|
|
788
193
|
deleteKeySigningKey(args: DeleteKeySigningKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKeySigningKeyCommandOutput) => void): void;
|
|
789
194
|
/**
|
|
790
|
-
* @
|
|
791
|
-
* <p>Deletes a configuration for DNS query logging. If you delete a configuration, Amazon
|
|
792
|
-
* Route 53 stops sending query logs to CloudWatch Logs. Route 53 doesn't delete any logs
|
|
793
|
-
* that are already in CloudWatch Logs.</p>
|
|
794
|
-
* <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a>.</p>
|
|
195
|
+
* @see {@link DeleteQueryLoggingConfigCommand}
|
|
795
196
|
*/
|
|
796
197
|
deleteQueryLoggingConfig(args: DeleteQueryLoggingConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueryLoggingConfigCommandOutput>;
|
|
797
198
|
deleteQueryLoggingConfig(args: DeleteQueryLoggingConfigCommandInput, cb: (err: any, data?: DeleteQueryLoggingConfigCommandOutput) => void): void;
|
|
798
199
|
deleteQueryLoggingConfig(args: DeleteQueryLoggingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueryLoggingConfigCommandOutput) => void): void;
|
|
799
200
|
/**
|
|
800
|
-
* @
|
|
801
|
-
* <p>Deletes a reusable delegation set.</p>
|
|
802
|
-
* <important>
|
|
803
|
-
* <p>You can delete a reusable delegation set only if it isn't associated with any
|
|
804
|
-
* hosted zones.</p>
|
|
805
|
-
* </important>
|
|
806
|
-
* <p>To verify that the reusable delegation set is not associated with any hosted zones,
|
|
807
|
-
* submit a <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSet.html">GetReusableDelegationSet</a> request and specify the ID of the reusable
|
|
808
|
-
* delegation set that you want to delete.</p>
|
|
201
|
+
* @see {@link DeleteReusableDelegationSetCommand}
|
|
809
202
|
*/
|
|
810
203
|
deleteReusableDelegationSet(args: DeleteReusableDelegationSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReusableDelegationSetCommandOutput>;
|
|
811
204
|
deleteReusableDelegationSet(args: DeleteReusableDelegationSetCommandInput, cb: (err: any, data?: DeleteReusableDelegationSetCommandOutput) => void): void;
|
|
812
205
|
deleteReusableDelegationSet(args: DeleteReusableDelegationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReusableDelegationSetCommandOutput) => void): void;
|
|
813
206
|
/**
|
|
814
|
-
* @
|
|
815
|
-
* <p>Deletes a traffic policy.</p>
|
|
816
|
-
* <p>When you delete a traffic policy, Route 53 sets a flag on the policy to indicate that
|
|
817
|
-
* it has been deleted. However, Route 53 never fully deletes the traffic policy. Note the
|
|
818
|
-
* following:</p>
|
|
819
|
-
* <ul>
|
|
820
|
-
* <li>
|
|
821
|
-
* <p>Deleted traffic policies aren't listed if you run <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListTrafficPolicies.html">ListTrafficPolicies</a>.</p>
|
|
822
|
-
* </li>
|
|
823
|
-
* <li>
|
|
824
|
-
* <p> There's no way to get a list of deleted policies.</p>
|
|
825
|
-
* </li>
|
|
826
|
-
* <li>
|
|
827
|
-
* <p>If you retain the ID of the policy, you can get information about the policy,
|
|
828
|
-
* including the traffic policy document, by running <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html">GetTrafficPolicy</a>.</p>
|
|
829
|
-
* </li>
|
|
830
|
-
* </ul>
|
|
207
|
+
* @see {@link DeleteTrafficPolicyCommand}
|
|
831
208
|
*/
|
|
832
209
|
deleteTrafficPolicy(args: DeleteTrafficPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficPolicyCommandOutput>;
|
|
833
210
|
deleteTrafficPolicy(args: DeleteTrafficPolicyCommandInput, cb: (err: any, data?: DeleteTrafficPolicyCommandOutput) => void): void;
|
|
834
211
|
deleteTrafficPolicy(args: DeleteTrafficPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficPolicyCommandOutput) => void): void;
|
|
835
212
|
/**
|
|
836
|
-
* @
|
|
837
|
-
* <p>Deletes a traffic policy instance and all of the resource record sets that Amazon
|
|
838
|
-
* Route 53 created when you created the instance.</p>
|
|
839
|
-
* <note>
|
|
840
|
-
* <p>In the Route 53 console, traffic policy instances are known as policy
|
|
841
|
-
* records.</p>
|
|
842
|
-
* </note>
|
|
213
|
+
* @see {@link DeleteTrafficPolicyInstanceCommand}
|
|
843
214
|
*/
|
|
844
215
|
deleteTrafficPolicyInstance(args: DeleteTrafficPolicyInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrafficPolicyInstanceCommandOutput>;
|
|
845
216
|
deleteTrafficPolicyInstance(args: DeleteTrafficPolicyInstanceCommandInput, cb: (err: any, data?: DeleteTrafficPolicyInstanceCommandOutput) => void): void;
|
|
846
217
|
deleteTrafficPolicyInstance(args: DeleteTrafficPolicyInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrafficPolicyInstanceCommandOutput) => void): void;
|
|
847
218
|
/**
|
|
848
|
-
* @
|
|
849
|
-
* <p>Removes authorization to submit an <code>AssociateVPCWithHostedZone</code> request to
|
|
850
|
-
* associate a specified VPC with a hosted zone that was created by a different account.
|
|
851
|
-
* You must use the account that created the hosted zone to submit a
|
|
852
|
-
* <code>DeleteVPCAssociationAuthorization</code> request.</p>
|
|
853
|
-
* <important>
|
|
854
|
-
* <p>Sending this request only prevents the Amazon Web Services account that created the
|
|
855
|
-
* VPC from associating the VPC with the Amazon Route 53 hosted zone in the future. If
|
|
856
|
-
* the VPC is already associated with the hosted zone,
|
|
857
|
-
* <code>DeleteVPCAssociationAuthorization</code> won't disassociate the VPC from
|
|
858
|
-
* the hosted zone. If you want to delete an existing association, use
|
|
859
|
-
* <code>DisassociateVPCFromHostedZone</code>.</p>
|
|
860
|
-
* </important>
|
|
219
|
+
* @see {@link DeleteVPCAssociationAuthorizationCommand}
|
|
861
220
|
*/
|
|
862
221
|
deleteVPCAssociationAuthorization(args: DeleteVPCAssociationAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVPCAssociationAuthorizationCommandOutput>;
|
|
863
222
|
deleteVPCAssociationAuthorization(args: DeleteVPCAssociationAuthorizationCommandInput, cb: (err: any, data?: DeleteVPCAssociationAuthorizationCommandOutput) => void): void;
|
|
864
223
|
deleteVPCAssociationAuthorization(args: DeleteVPCAssociationAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVPCAssociationAuthorizationCommandOutput) => void): void;
|
|
865
224
|
/**
|
|
866
|
-
* @
|
|
867
|
-
* <p>Disables DNSSEC signing in a specific hosted zone. This action does not deactivate any
|
|
868
|
-
* key-signing keys (KSKs) that are active in the hosted zone.</p>
|
|
225
|
+
* @see {@link DisableHostedZoneDNSSECCommand}
|
|
869
226
|
*/
|
|
870
227
|
disableHostedZoneDNSSEC(args: DisableHostedZoneDNSSECCommandInput, options?: __HttpHandlerOptions): Promise<DisableHostedZoneDNSSECCommandOutput>;
|
|
871
228
|
disableHostedZoneDNSSEC(args: DisableHostedZoneDNSSECCommandInput, cb: (err: any, data?: DisableHostedZoneDNSSECCommandOutput) => void): void;
|
|
872
229
|
disableHostedZoneDNSSEC(args: DisableHostedZoneDNSSECCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableHostedZoneDNSSECCommandOutput) => void): void;
|
|
873
230
|
/**
|
|
874
|
-
* @
|
|
875
|
-
* <p>Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an Amazon Route 53
|
|
876
|
-
* private hosted zone. Note the following:</p>
|
|
877
|
-
* <ul>
|
|
878
|
-
* <li>
|
|
879
|
-
* <p>You can't disassociate the last Amazon VPC from a private hosted zone.</p>
|
|
880
|
-
* </li>
|
|
881
|
-
* <li>
|
|
882
|
-
* <p>You can't convert a private hosted zone into a public hosted zone.</p>
|
|
883
|
-
* </li>
|
|
884
|
-
* <li>
|
|
885
|
-
* <p>You can submit a <code>DisassociateVPCFromHostedZone</code> request using
|
|
886
|
-
* either the account that created the hosted zone or the account that created the
|
|
887
|
-
* Amazon VPC.</p>
|
|
888
|
-
* </li>
|
|
889
|
-
* <li>
|
|
890
|
-
* <p>Some services, such as Cloud Map and Amazon Elastic File System
|
|
891
|
-
* (Amazon EFS) automatically create hosted zones and associate VPCs with the
|
|
892
|
-
* hosted zones. A service can create a hosted zone using your account or using its
|
|
893
|
-
* own account. You can disassociate a VPC from a hosted zone only if the service
|
|
894
|
-
* created the hosted zone using your account.</p>
|
|
895
|
-
* <p>When you run <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html">DisassociateVPCFromHostedZone</a>, if the hosted zone has a value for
|
|
896
|
-
* <code>OwningAccount</code>, you can use
|
|
897
|
-
* <code>DisassociateVPCFromHostedZone</code>. If the hosted zone has a value
|
|
898
|
-
* for <code>OwningService</code>, you can't use
|
|
899
|
-
* <code>DisassociateVPCFromHostedZone</code>.</p>
|
|
900
|
-
* </li>
|
|
901
|
-
* </ul>
|
|
902
|
-
* <note>
|
|
903
|
-
* <p>When revoking access, the hosted zone and the Amazon VPC must belong to
|
|
904
|
-
* the same partition. A partition is a group of Amazon Web Services Regions. Each
|
|
905
|
-
* Amazon Web Services account is scoped to one partition.</p>
|
|
906
|
-
* <p>The following are the supported partitions:</p>
|
|
907
|
-
* <ul>
|
|
908
|
-
* <li>
|
|
909
|
-
* <p>
|
|
910
|
-
* <code>aws</code> - Amazon Web Services Regions</p>
|
|
911
|
-
* </li>
|
|
912
|
-
* <li>
|
|
913
|
-
* <p>
|
|
914
|
-
* <code>aws-cn</code> - China Regions</p>
|
|
915
|
-
* </li>
|
|
916
|
-
* <li>
|
|
917
|
-
* <p>
|
|
918
|
-
* <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
|
|
919
|
-
* </li>
|
|
920
|
-
* </ul>
|
|
921
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
|
|
922
|
-
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
923
|
-
* </note>
|
|
231
|
+
* @see {@link DisassociateVPCFromHostedZoneCommand}
|
|
924
232
|
*/
|
|
925
233
|
disassociateVPCFromHostedZone(args: DisassociateVPCFromHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateVPCFromHostedZoneCommandOutput>;
|
|
926
234
|
disassociateVPCFromHostedZone(args: DisassociateVPCFromHostedZoneCommandInput, cb: (err: any, data?: DisassociateVPCFromHostedZoneCommandOutput) => void): void;
|
|
927
235
|
disassociateVPCFromHostedZone(args: DisassociateVPCFromHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateVPCFromHostedZoneCommandOutput) => void): void;
|
|
928
236
|
/**
|
|
929
|
-
* @
|
|
930
|
-
* <p>Enables DNSSEC signing in a specific hosted zone.</p>
|
|
237
|
+
* @see {@link EnableHostedZoneDNSSECCommand}
|
|
931
238
|
*/
|
|
932
239
|
enableHostedZoneDNSSEC(args: EnableHostedZoneDNSSECCommandInput, options?: __HttpHandlerOptions): Promise<EnableHostedZoneDNSSECCommandOutput>;
|
|
933
240
|
enableHostedZoneDNSSEC(args: EnableHostedZoneDNSSECCommandInput, cb: (err: any, data?: EnableHostedZoneDNSSECCommandOutput) => void): void;
|
|
934
241
|
enableHostedZoneDNSSEC(args: EnableHostedZoneDNSSECCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableHostedZoneDNSSECCommandOutput) => void): void;
|
|
935
242
|
/**
|
|
936
|
-
* @
|
|
937
|
-
* <p>Gets the specified limit for the current account, for example, the maximum number of
|
|
938
|
-
* health checks that you can create using the account.</p>
|
|
939
|
-
* <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
|
|
940
|
-
* <i>Amazon Route 53 Developer Guide</i>. To request a higher limit,
|
|
941
|
-
* <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&limitType=service-code-route53">open a case</a>.</p>
|
|
942
|
-
* <note>
|
|
943
|
-
* <p>You can also view account limits in Amazon Web Services Trusted Advisor. Sign in to
|
|
944
|
-
* the Amazon Web Services Management Console and open the Trusted Advisor console at <a href="https://console.aws.amazon.com/trustedadvisor">https://console.aws.amazon.com/trustedadvisor/</a>. Then choose <b>Service limits</b> in the navigation pane.</p>
|
|
945
|
-
* </note>
|
|
243
|
+
* @see {@link GetAccountLimitCommand}
|
|
946
244
|
*/
|
|
947
245
|
getAccountLimit(args: GetAccountLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountLimitCommandOutput>;
|
|
948
246
|
getAccountLimit(args: GetAccountLimitCommandInput, cb: (err: any, data?: GetAccountLimitCommandOutput) => void): void;
|
|
949
247
|
getAccountLimit(args: GetAccountLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountLimitCommandOutput) => void): void;
|
|
950
248
|
/**
|
|
951
|
-
* @
|
|
952
|
-
* <p>Returns the current status of a change batch request. The status is one of the
|
|
953
|
-
* following values:</p>
|
|
954
|
-
* <ul>
|
|
955
|
-
* <li>
|
|
956
|
-
* <p>
|
|
957
|
-
* <code>PENDING</code> indicates that the changes in this request have not
|
|
958
|
-
* propagated to all Amazon Route 53 DNS servers. This is the initial status of all
|
|
959
|
-
* change batch requests.</p>
|
|
960
|
-
* </li>
|
|
961
|
-
* <li>
|
|
962
|
-
* <p>
|
|
963
|
-
* <code>INSYNC</code> indicates that the changes have propagated to all Route 53
|
|
964
|
-
* DNS servers. </p>
|
|
965
|
-
* </li>
|
|
966
|
-
* </ul>
|
|
249
|
+
* @see {@link GetChangeCommand}
|
|
967
250
|
*/
|
|
968
251
|
getChange(args: GetChangeCommandInput, options?: __HttpHandlerOptions): Promise<GetChangeCommandOutput>;
|
|
969
252
|
getChange(args: GetChangeCommandInput, cb: (err: any, data?: GetChangeCommandOutput) => void): void;
|
|
970
253
|
getChange(args: GetChangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChangeCommandOutput) => void): void;
|
|
971
254
|
/**
|
|
972
|
-
* @
|
|
973
|
-
* <p>Route 53 does not perform authorization for this API because it retrieves information
|
|
974
|
-
* that is already available to the public.</p>
|
|
975
|
-
* <important>
|
|
976
|
-
* <p>
|
|
977
|
-
* <code>GetCheckerIpRanges</code> still works, but we recommend that you download
|
|
978
|
-
* ip-ranges.json, which includes IP address ranges for all Amazon Web Services
|
|
979
|
-
* services. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html">IP Address Ranges
|
|
980
|
-
* of Amazon Route 53 Servers</a> in the <i>Amazon Route 53 Developer
|
|
981
|
-
* Guide</i>.</p>
|
|
982
|
-
* </important>
|
|
255
|
+
* @see {@link GetCheckerIpRangesCommand}
|
|
983
256
|
*/
|
|
984
257
|
getCheckerIpRanges(args: GetCheckerIpRangesCommandInput, options?: __HttpHandlerOptions): Promise<GetCheckerIpRangesCommandOutput>;
|
|
985
258
|
getCheckerIpRanges(args: GetCheckerIpRangesCommandInput, cb: (err: any, data?: GetCheckerIpRangesCommandOutput) => void): void;
|
|
986
259
|
getCheckerIpRanges(args: GetCheckerIpRangesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCheckerIpRangesCommandOutput) => void): void;
|
|
987
260
|
/**
|
|
988
|
-
* @
|
|
989
|
-
* <p>Returns information about DNSSEC for a specific hosted zone, including the key-signing
|
|
990
|
-
* keys (KSKs) in the hosted zone.</p>
|
|
261
|
+
* @see {@link GetDNSSECCommand}
|
|
991
262
|
*/
|
|
992
263
|
getDNSSEC(args: GetDNSSECCommandInput, options?: __HttpHandlerOptions): Promise<GetDNSSECCommandOutput>;
|
|
993
264
|
getDNSSEC(args: GetDNSSECCommandInput, cb: (err: any, data?: GetDNSSECCommandOutput) => void): void;
|
|
994
265
|
getDNSSEC(args: GetDNSSECCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDNSSECCommandOutput) => void): void;
|
|
995
266
|
/**
|
|
996
|
-
* @
|
|
997
|
-
* <p>Gets information about whether a specified geographic location is supported for Amazon
|
|
998
|
-
* Route 53 geolocation resource record sets.</p>
|
|
999
|
-
* <p>Route 53 does not perform authorization for this API because it retrieves information
|
|
1000
|
-
* that is already available to the public.</p>
|
|
1001
|
-
* <p>Use the following syntax to determine whether a continent is supported for
|
|
1002
|
-
* geolocation:</p>
|
|
1003
|
-
* <p>
|
|
1004
|
-
* <code>GET /2013-04-01/geolocation?continentcode=<i>two-letter abbreviation for
|
|
1005
|
-
* a continent</i>
|
|
1006
|
-
* </code>
|
|
1007
|
-
* </p>
|
|
1008
|
-
* <p>Use the following syntax to determine whether a country is supported for
|
|
1009
|
-
* geolocation:</p>
|
|
1010
|
-
* <p>
|
|
1011
|
-
* <code>GET /2013-04-01/geolocation?countrycode=<i>two-character country
|
|
1012
|
-
* code</i>
|
|
1013
|
-
* </code>
|
|
1014
|
-
* </p>
|
|
1015
|
-
* <p>Use the following syntax to determine whether a subdivision of a country is supported
|
|
1016
|
-
* for geolocation:</p>
|
|
1017
|
-
* <p>
|
|
1018
|
-
* <code>GET /2013-04-01/geolocation?countrycode=<i>two-character country
|
|
1019
|
-
* code</i>&subdivisioncode=<i>subdivision
|
|
1020
|
-
* code</i>
|
|
1021
|
-
* </code>
|
|
1022
|
-
* </p>
|
|
267
|
+
* @see {@link GetGeoLocationCommand}
|
|
1023
268
|
*/
|
|
1024
269
|
getGeoLocation(args: GetGeoLocationCommandInput, options?: __HttpHandlerOptions): Promise<GetGeoLocationCommandOutput>;
|
|
1025
270
|
getGeoLocation(args: GetGeoLocationCommandInput, cb: (err: any, data?: GetGeoLocationCommandOutput) => void): void;
|
|
1026
271
|
getGeoLocation(args: GetGeoLocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGeoLocationCommandOutput) => void): void;
|
|
1027
272
|
/**
|
|
1028
|
-
* @
|
|
1029
|
-
* <p>Gets information about a specified health check.</p>
|
|
273
|
+
* @see {@link GetHealthCheckCommand}
|
|
1030
274
|
*/
|
|
1031
275
|
getHealthCheck(args: GetHealthCheckCommandInput, options?: __HttpHandlerOptions): Promise<GetHealthCheckCommandOutput>;
|
|
1032
276
|
getHealthCheck(args: GetHealthCheckCommandInput, cb: (err: any, data?: GetHealthCheckCommandOutput) => void): void;
|
|
1033
277
|
getHealthCheck(args: GetHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHealthCheckCommandOutput) => void): void;
|
|
1034
278
|
/**
|
|
1035
|
-
* @
|
|
1036
|
-
* <p>Retrieves the number of health checks that are associated with the current Amazon Web Services account.</p>
|
|
279
|
+
* @see {@link GetHealthCheckCountCommand}
|
|
1037
280
|
*/
|
|
1038
281
|
getHealthCheckCount(args: GetHealthCheckCountCommandInput, options?: __HttpHandlerOptions): Promise<GetHealthCheckCountCommandOutput>;
|
|
1039
282
|
getHealthCheckCount(args: GetHealthCheckCountCommandInput, cb: (err: any, data?: GetHealthCheckCountCommandOutput) => void): void;
|
|
1040
283
|
getHealthCheckCount(args: GetHealthCheckCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHealthCheckCountCommandOutput) => void): void;
|
|
1041
284
|
/**
|
|
1042
|
-
* @
|
|
1043
|
-
* <p>Gets the reason that a specified health check failed most recently.</p>
|
|
285
|
+
* @see {@link GetHealthCheckLastFailureReasonCommand}
|
|
1044
286
|
*/
|
|
1045
287
|
getHealthCheckLastFailureReason(args: GetHealthCheckLastFailureReasonCommandInput, options?: __HttpHandlerOptions): Promise<GetHealthCheckLastFailureReasonCommandOutput>;
|
|
1046
288
|
getHealthCheckLastFailureReason(args: GetHealthCheckLastFailureReasonCommandInput, cb: (err: any, data?: GetHealthCheckLastFailureReasonCommandOutput) => void): void;
|
|
1047
289
|
getHealthCheckLastFailureReason(args: GetHealthCheckLastFailureReasonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHealthCheckLastFailureReasonCommandOutput) => void): void;
|
|
1048
290
|
/**
|
|
1049
|
-
* @
|
|
1050
|
-
* <p>Gets status of a specified health check. </p>
|
|
1051
|
-
* <important>
|
|
1052
|
-
* <p>This API is intended for use during development to diagnose behavior. It doesn’t
|
|
1053
|
-
* support production use-cases with high query rates that require immediate and
|
|
1054
|
-
* actionable responses.</p>
|
|
1055
|
-
* </important>
|
|
291
|
+
* @see {@link GetHealthCheckStatusCommand}
|
|
1056
292
|
*/
|
|
1057
293
|
getHealthCheckStatus(args: GetHealthCheckStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetHealthCheckStatusCommandOutput>;
|
|
1058
294
|
getHealthCheckStatus(args: GetHealthCheckStatusCommandInput, cb: (err: any, data?: GetHealthCheckStatusCommandOutput) => void): void;
|
|
1059
295
|
getHealthCheckStatus(args: GetHealthCheckStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHealthCheckStatusCommandOutput) => void): void;
|
|
1060
296
|
/**
|
|
1061
|
-
* @
|
|
1062
|
-
* <p>Gets information about a specified hosted zone including the four name servers
|
|
1063
|
-
* assigned to the hosted zone.</p>
|
|
297
|
+
* @see {@link GetHostedZoneCommand}
|
|
1064
298
|
*/
|
|
1065
299
|
getHostedZone(args: GetHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<GetHostedZoneCommandOutput>;
|
|
1066
300
|
getHostedZone(args: GetHostedZoneCommandInput, cb: (err: any, data?: GetHostedZoneCommandOutput) => void): void;
|
|
1067
301
|
getHostedZone(args: GetHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostedZoneCommandOutput) => void): void;
|
|
1068
302
|
/**
|
|
1069
|
-
* @
|
|
1070
|
-
* <p>Retrieves the number of hosted zones that are associated with the current Amazon Web Services account.</p>
|
|
303
|
+
* @see {@link GetHostedZoneCountCommand}
|
|
1071
304
|
*/
|
|
1072
305
|
getHostedZoneCount(args: GetHostedZoneCountCommandInput, options?: __HttpHandlerOptions): Promise<GetHostedZoneCountCommandOutput>;
|
|
1073
306
|
getHostedZoneCount(args: GetHostedZoneCountCommandInput, cb: (err: any, data?: GetHostedZoneCountCommandOutput) => void): void;
|
|
1074
307
|
getHostedZoneCount(args: GetHostedZoneCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostedZoneCountCommandOutput) => void): void;
|
|
1075
308
|
/**
|
|
1076
|
-
* @
|
|
1077
|
-
* <p>Gets the specified limit for a specified hosted zone, for example, the maximum number
|
|
1078
|
-
* of records that you can create in the hosted zone. </p>
|
|
1079
|
-
* <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
|
|
1080
|
-
* <i>Amazon Route 53 Developer Guide</i>. To request a higher limit,
|
|
1081
|
-
* <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&limitType=service-code-route53">open a case</a>.</p>
|
|
309
|
+
* @see {@link GetHostedZoneLimitCommand}
|
|
1082
310
|
*/
|
|
1083
311
|
getHostedZoneLimit(args: GetHostedZoneLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetHostedZoneLimitCommandOutput>;
|
|
1084
312
|
getHostedZoneLimit(args: GetHostedZoneLimitCommandInput, cb: (err: any, data?: GetHostedZoneLimitCommandOutput) => void): void;
|
|
1085
313
|
getHostedZoneLimit(args: GetHostedZoneLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostedZoneLimitCommandOutput) => void): void;
|
|
1086
314
|
/**
|
|
1087
|
-
* @
|
|
1088
|
-
* <p>Gets information about a specified configuration for DNS query logging.</p>
|
|
1089
|
-
* <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a> and <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS
|
|
1090
|
-
* Queries</a>.</p>
|
|
315
|
+
* @see {@link GetQueryLoggingConfigCommand}
|
|
1091
316
|
*/
|
|
1092
317
|
getQueryLoggingConfig(args: GetQueryLoggingConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetQueryLoggingConfigCommandOutput>;
|
|
1093
318
|
getQueryLoggingConfig(args: GetQueryLoggingConfigCommandInput, cb: (err: any, data?: GetQueryLoggingConfigCommandOutput) => void): void;
|
|
1094
319
|
getQueryLoggingConfig(args: GetQueryLoggingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQueryLoggingConfigCommandOutput) => void): void;
|
|
1095
320
|
/**
|
|
1096
|
-
* @
|
|
1097
|
-
* <p>Retrieves information about a specified reusable delegation set, including the four
|
|
1098
|
-
* name servers that are assigned to the delegation set.</p>
|
|
321
|
+
* @see {@link GetReusableDelegationSetCommand}
|
|
1099
322
|
*/
|
|
1100
323
|
getReusableDelegationSet(args: GetReusableDelegationSetCommandInput, options?: __HttpHandlerOptions): Promise<GetReusableDelegationSetCommandOutput>;
|
|
1101
324
|
getReusableDelegationSet(args: GetReusableDelegationSetCommandInput, cb: (err: any, data?: GetReusableDelegationSetCommandOutput) => void): void;
|
|
1102
325
|
getReusableDelegationSet(args: GetReusableDelegationSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReusableDelegationSetCommandOutput) => void): void;
|
|
1103
326
|
/**
|
|
1104
|
-
* @
|
|
1105
|
-
* <p>Gets the maximum number of hosted zones that you can associate with the specified
|
|
1106
|
-
* reusable delegation set.</p>
|
|
1107
|
-
* <p>For the default limit, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
|
|
1108
|
-
* <i>Amazon Route 53 Developer Guide</i>. To request a higher limit,
|
|
1109
|
-
* <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&limitType=service-code-route53">open a case</a>.</p>
|
|
327
|
+
* @see {@link GetReusableDelegationSetLimitCommand}
|
|
1110
328
|
*/
|
|
1111
329
|
getReusableDelegationSetLimit(args: GetReusableDelegationSetLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetReusableDelegationSetLimitCommandOutput>;
|
|
1112
330
|
getReusableDelegationSetLimit(args: GetReusableDelegationSetLimitCommandInput, cb: (err: any, data?: GetReusableDelegationSetLimitCommandOutput) => void): void;
|
|
1113
331
|
getReusableDelegationSetLimit(args: GetReusableDelegationSetLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReusableDelegationSetLimitCommandOutput) => void): void;
|
|
1114
332
|
/**
|
|
1115
|
-
* @
|
|
1116
|
-
* <p>Gets information about a specific traffic policy version.</p>
|
|
1117
|
-
* <p>For information about how of deleting a traffic policy affects the response from
|
|
1118
|
-
* <code>GetTrafficPolicy</code>, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html">DeleteTrafficPolicy</a>. </p>
|
|
333
|
+
* @see {@link GetTrafficPolicyCommand}
|
|
1119
334
|
*/
|
|
1120
335
|
getTrafficPolicy(args: GetTrafficPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetTrafficPolicyCommandOutput>;
|
|
1121
336
|
getTrafficPolicy(args: GetTrafficPolicyCommandInput, cb: (err: any, data?: GetTrafficPolicyCommandOutput) => void): void;
|
|
1122
337
|
getTrafficPolicy(args: GetTrafficPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrafficPolicyCommandOutput) => void): void;
|
|
1123
338
|
/**
|
|
1124
|
-
* @
|
|
1125
|
-
* <p>Gets information about a specified traffic policy instance.</p>
|
|
1126
|
-
* <note>
|
|
1127
|
-
* <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an
|
|
1128
|
-
* <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while
|
|
1129
|
-
* Amazon Route 53 creates the resource record sets that are specified in the traffic
|
|
1130
|
-
* policy definition. For more information, see the <code>State</code> response
|
|
1131
|
-
* element.</p>
|
|
1132
|
-
* </note>
|
|
1133
|
-
* <note>
|
|
1134
|
-
* <p>In the Route 53 console, traffic policy instances are known as policy
|
|
1135
|
-
* records.</p>
|
|
1136
|
-
* </note>
|
|
339
|
+
* @see {@link GetTrafficPolicyInstanceCommand}
|
|
1137
340
|
*/
|
|
1138
341
|
getTrafficPolicyInstance(args: GetTrafficPolicyInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetTrafficPolicyInstanceCommandOutput>;
|
|
1139
342
|
getTrafficPolicyInstance(args: GetTrafficPolicyInstanceCommandInput, cb: (err: any, data?: GetTrafficPolicyInstanceCommandOutput) => void): void;
|
|
1140
343
|
getTrafficPolicyInstance(args: GetTrafficPolicyInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrafficPolicyInstanceCommandOutput) => void): void;
|
|
1141
344
|
/**
|
|
1142
|
-
* @
|
|
1143
|
-
* <p>Gets the number of traffic policy instances that are associated with the current
|
|
1144
|
-
* Amazon Web Services account.</p>
|
|
345
|
+
* @see {@link GetTrafficPolicyInstanceCountCommand}
|
|
1145
346
|
*/
|
|
1146
347
|
getTrafficPolicyInstanceCount(args: GetTrafficPolicyInstanceCountCommandInput, options?: __HttpHandlerOptions): Promise<GetTrafficPolicyInstanceCountCommandOutput>;
|
|
1147
348
|
getTrafficPolicyInstanceCount(args: GetTrafficPolicyInstanceCountCommandInput, cb: (err: any, data?: GetTrafficPolicyInstanceCountCommandOutput) => void): void;
|
|
1148
349
|
getTrafficPolicyInstanceCount(args: GetTrafficPolicyInstanceCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrafficPolicyInstanceCountCommandOutput) => void): void;
|
|
1149
350
|
/**
|
|
1150
|
-
* @
|
|
1151
|
-
* <p>Returns a paginated list of location objects and their CIDR blocks.</p>
|
|
351
|
+
* @see {@link ListCidrBlocksCommand}
|
|
1152
352
|
*/
|
|
1153
353
|
listCidrBlocks(args: ListCidrBlocksCommandInput, options?: __HttpHandlerOptions): Promise<ListCidrBlocksCommandOutput>;
|
|
1154
354
|
listCidrBlocks(args: ListCidrBlocksCommandInput, cb: (err: any, data?: ListCidrBlocksCommandOutput) => void): void;
|
|
1155
355
|
listCidrBlocks(args: ListCidrBlocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCidrBlocksCommandOutput) => void): void;
|
|
1156
356
|
/**
|
|
1157
|
-
* @
|
|
1158
|
-
* <p>Returns a paginated list of CIDR collections in the Amazon Web Services account
|
|
1159
|
-
* (metadata only).</p>
|
|
357
|
+
* @see {@link ListCidrCollectionsCommand}
|
|
1160
358
|
*/
|
|
1161
359
|
listCidrCollections(args: ListCidrCollectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCidrCollectionsCommandOutput>;
|
|
1162
360
|
listCidrCollections(args: ListCidrCollectionsCommandInput, cb: (err: any, data?: ListCidrCollectionsCommandOutput) => void): void;
|
|
1163
361
|
listCidrCollections(args: ListCidrCollectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCidrCollectionsCommandOutput) => void): void;
|
|
1164
362
|
/**
|
|
1165
|
-
* @
|
|
1166
|
-
* <p>Returns a paginated list of CIDR locations for the given collection (metadata only,
|
|
1167
|
-
* does not include CIDR blocks).</p>
|
|
363
|
+
* @see {@link ListCidrLocationsCommand}
|
|
1168
364
|
*/
|
|
1169
365
|
listCidrLocations(args: ListCidrLocationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCidrLocationsCommandOutput>;
|
|
1170
366
|
listCidrLocations(args: ListCidrLocationsCommandInput, cb: (err: any, data?: ListCidrLocationsCommandOutput) => void): void;
|
|
1171
367
|
listCidrLocations(args: ListCidrLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCidrLocationsCommandOutput) => void): void;
|
|
1172
368
|
/**
|
|
1173
|
-
* @
|
|
1174
|
-
* <p>Retrieves a list of supported geographic locations.</p>
|
|
1175
|
-
* <p>Countries are listed first, and continents are listed last. If Amazon Route 53
|
|
1176
|
-
* supports subdivisions for a country (for example, states or provinces), the subdivisions
|
|
1177
|
-
* for that country are listed in alphabetical order immediately after the corresponding
|
|
1178
|
-
* country.</p>
|
|
1179
|
-
* <p>Route 53 does not perform authorization for this API because it retrieves information
|
|
1180
|
-
* that is already available to the public.</p>
|
|
1181
|
-
* <p>For a list of supported geolocation codes, see the <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html">GeoLocation</a> data
|
|
1182
|
-
* type.</p>
|
|
369
|
+
* @see {@link ListGeoLocationsCommand}
|
|
1183
370
|
*/
|
|
1184
371
|
listGeoLocations(args: ListGeoLocationsCommandInput, options?: __HttpHandlerOptions): Promise<ListGeoLocationsCommandOutput>;
|
|
1185
372
|
listGeoLocations(args: ListGeoLocationsCommandInput, cb: (err: any, data?: ListGeoLocationsCommandOutput) => void): void;
|
|
1186
373
|
listGeoLocations(args: ListGeoLocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGeoLocationsCommandOutput) => void): void;
|
|
1187
374
|
/**
|
|
1188
|
-
* @
|
|
1189
|
-
* <p>Retrieve a list of the health checks that are associated with the current Amazon Web Services account. </p>
|
|
375
|
+
* @see {@link ListHealthChecksCommand}
|
|
1190
376
|
*/
|
|
1191
377
|
listHealthChecks(args: ListHealthChecksCommandInput, options?: __HttpHandlerOptions): Promise<ListHealthChecksCommandOutput>;
|
|
1192
378
|
listHealthChecks(args: ListHealthChecksCommandInput, cb: (err: any, data?: ListHealthChecksCommandOutput) => void): void;
|
|
1193
379
|
listHealthChecks(args: ListHealthChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHealthChecksCommandOutput) => void): void;
|
|
1194
380
|
/**
|
|
1195
|
-
* @
|
|
1196
|
-
* <p>Retrieves a list of the public and private hosted zones that are associated with the
|
|
1197
|
-
* current Amazon Web Services account. The response includes a <code>HostedZones</code>
|
|
1198
|
-
* child element for each hosted zone.</p>
|
|
1199
|
-
* <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of
|
|
1200
|
-
* hosted zones, you can use the <code>maxitems</code> parameter to list them in groups of
|
|
1201
|
-
* up to 100.</p>
|
|
381
|
+
* @see {@link ListHostedZonesCommand}
|
|
1202
382
|
*/
|
|
1203
383
|
listHostedZones(args: ListHostedZonesCommandInput, options?: __HttpHandlerOptions): Promise<ListHostedZonesCommandOutput>;
|
|
1204
384
|
listHostedZones(args: ListHostedZonesCommandInput, cb: (err: any, data?: ListHostedZonesCommandOutput) => void): void;
|
|
1205
385
|
listHostedZones(args: ListHostedZonesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostedZonesCommandOutput) => void): void;
|
|
1206
386
|
/**
|
|
1207
|
-
* @
|
|
1208
|
-
* <p>Retrieves a list of your hosted zones in lexicographic order. The response includes a
|
|
1209
|
-
* <code>HostedZones</code> child element for each hosted zone created by the current
|
|
1210
|
-
* Amazon Web Services account. </p>
|
|
1211
|
-
* <p>
|
|
1212
|
-
* <code>ListHostedZonesByName</code> sorts hosted zones by name with the labels
|
|
1213
|
-
* reversed. For example:</p>
|
|
1214
|
-
* <p>
|
|
1215
|
-
* <code>com.example.www.</code>
|
|
1216
|
-
* </p>
|
|
1217
|
-
* <p>Note the trailing dot, which can change the sort order in some circumstances.</p>
|
|
1218
|
-
* <p>If the domain name includes escape characters or Punycode,
|
|
1219
|
-
* <code>ListHostedZonesByName</code> alphabetizes the domain name using the escaped or
|
|
1220
|
-
* Punycoded value, which is the format that Amazon Route 53 saves in its database. For
|
|
1221
|
-
* example, to create a hosted zone for exämple.com, you specify ex\344mple.com for
|
|
1222
|
-
* the domain name. <code>ListHostedZonesByName</code> alphabetizes it as:</p>
|
|
1223
|
-
* <p>
|
|
1224
|
-
* <code>com.ex\344mple.</code>
|
|
1225
|
-
* </p>
|
|
1226
|
-
* <p>The labels are reversed and alphabetized using the escaped value. For more information
|
|
1227
|
-
* about valid domain name formats, including internationalized domain names, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html">DNS
|
|
1228
|
-
* Domain Name Format</a> in the <i>Amazon Route 53 Developer
|
|
1229
|
-
* Guide</i>.</p>
|
|
1230
|
-
* <p>Route 53 returns up to 100 items in each response. If you have a lot of hosted zones,
|
|
1231
|
-
* use the <code>MaxItems</code> parameter to list them in groups of up to 100. The
|
|
1232
|
-
* response includes values that help navigate from one group of <code>MaxItems</code>
|
|
1233
|
-
* hosted zones to the next:</p>
|
|
1234
|
-
* <ul>
|
|
1235
|
-
* <li>
|
|
1236
|
-
* <p>The <code>DNSName</code> and <code>HostedZoneId</code> elements in the
|
|
1237
|
-
* response contain the values, if any, specified for the <code>dnsname</code> and
|
|
1238
|
-
* <code>hostedzoneid</code> parameters in the request that produced the
|
|
1239
|
-
* current response.</p>
|
|
1240
|
-
* </li>
|
|
1241
|
-
* <li>
|
|
1242
|
-
* <p>The <code>MaxItems</code> element in the response contains the value, if any,
|
|
1243
|
-
* that you specified for the <code>maxitems</code> parameter in the request that
|
|
1244
|
-
* produced the current response.</p>
|
|
1245
|
-
* </li>
|
|
1246
|
-
* <li>
|
|
1247
|
-
* <p>If the value of <code>IsTruncated</code> in the response is true, there are
|
|
1248
|
-
* more hosted zones associated with the current Amazon Web Services account. </p>
|
|
1249
|
-
* <p>If <code>IsTruncated</code> is false, this response includes the last hosted
|
|
1250
|
-
* zone that is associated with the current account. The <code>NextDNSName</code>
|
|
1251
|
-
* element and <code>NextHostedZoneId</code> elements are omitted from the
|
|
1252
|
-
* response.</p>
|
|
1253
|
-
* </li>
|
|
1254
|
-
* <li>
|
|
1255
|
-
* <p>The <code>NextDNSName</code> and <code>NextHostedZoneId</code> elements in the
|
|
1256
|
-
* response contain the domain name and the hosted zone ID of the next hosted zone
|
|
1257
|
-
* that is associated with the current Amazon Web Services account. If you want to
|
|
1258
|
-
* list more hosted zones, make another call to <code>ListHostedZonesByName</code>,
|
|
1259
|
-
* and specify the value of <code>NextDNSName</code> and
|
|
1260
|
-
* <code>NextHostedZoneId</code> in the <code>dnsname</code> and
|
|
1261
|
-
* <code>hostedzoneid</code> parameters, respectively.</p>
|
|
1262
|
-
* </li>
|
|
1263
|
-
* </ul>
|
|
387
|
+
* @see {@link ListHostedZonesByNameCommand}
|
|
1264
388
|
*/
|
|
1265
389
|
listHostedZonesByName(args: ListHostedZonesByNameCommandInput, options?: __HttpHandlerOptions): Promise<ListHostedZonesByNameCommandOutput>;
|
|
1266
390
|
listHostedZonesByName(args: ListHostedZonesByNameCommandInput, cb: (err: any, data?: ListHostedZonesByNameCommandOutput) => void): void;
|
|
1267
391
|
listHostedZonesByName(args: ListHostedZonesByNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostedZonesByNameCommandOutput) => void): void;
|
|
1268
392
|
/**
|
|
1269
|
-
* @
|
|
1270
|
-
* <p>Lists all the private hosted zones that a specified VPC is associated with, regardless
|
|
1271
|
-
* of which Amazon Web Services account or Amazon Web Services service owns the hosted zones.
|
|
1272
|
-
* The <code>HostedZoneOwner</code> structure in the response contains one of the following
|
|
1273
|
-
* values:</p>
|
|
1274
|
-
* <ul>
|
|
1275
|
-
* <li>
|
|
1276
|
-
* <p>An <code>OwningAccount</code> element, which contains the account number of
|
|
1277
|
-
* either the current Amazon Web Services account or another Amazon Web Services account. Some services, such as Cloud Map, create
|
|
1278
|
-
* hosted zones using the current account. </p>
|
|
1279
|
-
* </li>
|
|
1280
|
-
* <li>
|
|
1281
|
-
* <p>An <code>OwningService</code> element, which identifies the Amazon Web Services
|
|
1282
|
-
* service that created and owns the hosted zone. For example, if a hosted zone was
|
|
1283
|
-
* created by Amazon Elastic File System (Amazon EFS), the value of
|
|
1284
|
-
* <code>Owner</code> is <code>efs.amazonaws.com</code>. </p>
|
|
1285
|
-
* </li>
|
|
1286
|
-
* </ul>
|
|
1287
|
-
* <note>
|
|
1288
|
-
* <p>When listing private hosted zones, the hosted zone and the Amazon VPC must
|
|
1289
|
-
* belong to the same partition where the hosted zones were created. A partition is a
|
|
1290
|
-
* group of Amazon Web Services Regions. Each Amazon Web Services account is scoped to
|
|
1291
|
-
* one partition.</p>
|
|
1292
|
-
* <p>The following are the supported partitions:</p>
|
|
1293
|
-
* <ul>
|
|
1294
|
-
* <li>
|
|
1295
|
-
* <p>
|
|
1296
|
-
* <code>aws</code> - Amazon Web Services Regions</p>
|
|
1297
|
-
* </li>
|
|
1298
|
-
* <li>
|
|
1299
|
-
* <p>
|
|
1300
|
-
* <code>aws-cn</code> - China Regions</p>
|
|
1301
|
-
* </li>
|
|
1302
|
-
* <li>
|
|
1303
|
-
* <p>
|
|
1304
|
-
* <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
|
|
1305
|
-
* </li>
|
|
1306
|
-
* </ul>
|
|
1307
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
|
|
1308
|
-
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
1309
|
-
* </note>
|
|
393
|
+
* @see {@link ListHostedZonesByVPCCommand}
|
|
1310
394
|
*/
|
|
1311
395
|
listHostedZonesByVPC(args: ListHostedZonesByVPCCommandInput, options?: __HttpHandlerOptions): Promise<ListHostedZonesByVPCCommandOutput>;
|
|
1312
396
|
listHostedZonesByVPC(args: ListHostedZonesByVPCCommandInput, cb: (err: any, data?: ListHostedZonesByVPCCommandOutput) => void): void;
|
|
1313
397
|
listHostedZonesByVPC(args: ListHostedZonesByVPCCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostedZonesByVPCCommandOutput) => void): void;
|
|
1314
398
|
/**
|
|
1315
|
-
* @
|
|
1316
|
-
* <p>Lists the configurations for DNS query logging that are associated with the current
|
|
1317
|
-
* Amazon Web Services account or the configuration that is associated with a specified
|
|
1318
|
-
* hosted zone.</p>
|
|
1319
|
-
* <p>For more information about DNS query logs, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html">CreateQueryLoggingConfig</a>. Additional information, including the format of
|
|
1320
|
-
* DNS query logs, appears in <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html">Logging DNS Queries</a> in
|
|
1321
|
-
* the <i>Amazon Route 53 Developer Guide</i>.</p>
|
|
399
|
+
* @see {@link ListQueryLoggingConfigsCommand}
|
|
1322
400
|
*/
|
|
1323
401
|
listQueryLoggingConfigs(args: ListQueryLoggingConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListQueryLoggingConfigsCommandOutput>;
|
|
1324
402
|
listQueryLoggingConfigs(args: ListQueryLoggingConfigsCommandInput, cb: (err: any, data?: ListQueryLoggingConfigsCommandOutput) => void): void;
|
|
1325
403
|
listQueryLoggingConfigs(args: ListQueryLoggingConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueryLoggingConfigsCommandOutput) => void): void;
|
|
1326
404
|
/**
|
|
1327
|
-
* @
|
|
1328
|
-
* <p>Lists the resource record sets in a specified hosted zone.</p>
|
|
1329
|
-
* <p>
|
|
1330
|
-
* <code>ListResourceRecordSets</code> returns up to 300 resource record sets at a time
|
|
1331
|
-
* in ASCII order, beginning at a position specified by the <code>name</code> and
|
|
1332
|
-
* <code>type</code> elements.</p>
|
|
1333
|
-
* <p>
|
|
1334
|
-
* <b>Sort order</b>
|
|
1335
|
-
* </p>
|
|
1336
|
-
* <p>
|
|
1337
|
-
* <code>ListResourceRecordSets</code> sorts results first by DNS name with the labels
|
|
1338
|
-
* reversed, for example:</p>
|
|
1339
|
-
* <p>
|
|
1340
|
-
* <code>com.example.www.</code>
|
|
1341
|
-
* </p>
|
|
1342
|
-
* <p>Note the trailing dot, which can change the sort order when the record name contains
|
|
1343
|
-
* characters that appear before <code>.</code> (decimal 46) in the ASCII table. These
|
|
1344
|
-
* characters include the following: <code>! " # $ % & ' ( ) * + , -</code>
|
|
1345
|
-
* </p>
|
|
1346
|
-
* <p>When multiple records have the same DNS name, <code>ListResourceRecordSets</code>
|
|
1347
|
-
* sorts results by the record type.</p>
|
|
1348
|
-
* <p>
|
|
1349
|
-
* <b>Specifying where to start listing records</b>
|
|
1350
|
-
* </p>
|
|
1351
|
-
* <p>You can use the name and type elements to specify the resource record set that the
|
|
1352
|
-
* list begins with:</p>
|
|
1353
|
-
* <dl>
|
|
1354
|
-
* <dt>If you do not specify Name or Type</dt>
|
|
1355
|
-
* <dd>
|
|
1356
|
-
* <p>The results begin with the first resource record set that the hosted zone
|
|
1357
|
-
* contains.</p>
|
|
1358
|
-
* </dd>
|
|
1359
|
-
* <dt>If you specify Name but not Type</dt>
|
|
1360
|
-
* <dd>
|
|
1361
|
-
* <p>The results begin with the first resource record set in the list whose
|
|
1362
|
-
* name is greater than or equal to <code>Name</code>.</p>
|
|
1363
|
-
* </dd>
|
|
1364
|
-
* <dt>If you specify Type but not Name</dt>
|
|
1365
|
-
* <dd>
|
|
1366
|
-
* <p>Amazon Route 53 returns the <code>InvalidInput</code> error.</p>
|
|
1367
|
-
* </dd>
|
|
1368
|
-
* <dt>If you specify both Name and Type</dt>
|
|
1369
|
-
* <dd>
|
|
1370
|
-
* <p>The results begin with the first resource record set in the list whose
|
|
1371
|
-
* name is greater than or equal to <code>Name</code>, and whose type is
|
|
1372
|
-
* greater than or equal to <code>Type</code>.</p>
|
|
1373
|
-
* </dd>
|
|
1374
|
-
* </dl>
|
|
1375
|
-
* <p>
|
|
1376
|
-
* <b>Resource record sets that are PENDING</b>
|
|
1377
|
-
* </p>
|
|
1378
|
-
* <p>This action returns the most current version of the records. This includes records
|
|
1379
|
-
* that are <code>PENDING</code>, and that are not yet available on all Route 53 DNS
|
|
1380
|
-
* servers.</p>
|
|
1381
|
-
* <p>
|
|
1382
|
-
* <b>Changing resource record sets</b>
|
|
1383
|
-
* </p>
|
|
1384
|
-
* <p>To ensure that you get an accurate listing of the resource record sets for a hosted
|
|
1385
|
-
* zone at a point in time, do not submit a <code>ChangeResourceRecordSets</code> request
|
|
1386
|
-
* while you're paging through the results of a <code>ListResourceRecordSets</code>
|
|
1387
|
-
* request. If you do, some pages may display results without the latest changes while
|
|
1388
|
-
* other pages display results with the latest changes.</p>
|
|
1389
|
-
* <p>
|
|
1390
|
-
* <b>Displaying the next page of results</b>
|
|
1391
|
-
* </p>
|
|
1392
|
-
* <p>If a <code>ListResourceRecordSets</code> command returns more than one page of
|
|
1393
|
-
* results, the value of <code>IsTruncated</code> is <code>true</code>. To display the next
|
|
1394
|
-
* page of results, get the values of <code>NextRecordName</code>,
|
|
1395
|
-
* <code>NextRecordType</code>, and <code>NextRecordIdentifier</code> (if any) from the
|
|
1396
|
-
* response. Then submit another <code>ListResourceRecordSets</code> request, and specify
|
|
1397
|
-
* those values for <code>StartRecordName</code>, <code>StartRecordType</code>, and
|
|
1398
|
-
* <code>StartRecordIdentifier</code>.</p>
|
|
405
|
+
* @see {@link ListResourceRecordSetsCommand}
|
|
1399
406
|
*/
|
|
1400
407
|
listResourceRecordSets(args: ListResourceRecordSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceRecordSetsCommandOutput>;
|
|
1401
408
|
listResourceRecordSets(args: ListResourceRecordSetsCommandInput, cb: (err: any, data?: ListResourceRecordSetsCommandOutput) => void): void;
|
|
1402
409
|
listResourceRecordSets(args: ListResourceRecordSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceRecordSetsCommandOutput) => void): void;
|
|
1403
410
|
/**
|
|
1404
|
-
* @
|
|
1405
|
-
* <p>Retrieves a list of the reusable delegation sets that are associated with the current
|
|
1406
|
-
* Amazon Web Services account.</p>
|
|
411
|
+
* @see {@link ListReusableDelegationSetsCommand}
|
|
1407
412
|
*/
|
|
1408
413
|
listReusableDelegationSets(args: ListReusableDelegationSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListReusableDelegationSetsCommandOutput>;
|
|
1409
414
|
listReusableDelegationSets(args: ListReusableDelegationSetsCommandInput, cb: (err: any, data?: ListReusableDelegationSetsCommandOutput) => void): void;
|
|
1410
415
|
listReusableDelegationSets(args: ListReusableDelegationSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReusableDelegationSetsCommandOutput) => void): void;
|
|
1411
416
|
/**
|
|
1412
|
-
* @
|
|
1413
|
-
* <p>Lists tags for one health check or hosted zone. </p>
|
|
1414
|
-
* <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
|
|
1415
|
-
* Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
|
|
417
|
+
* @see {@link ListTagsForResourceCommand}
|
|
1416
418
|
*/
|
|
1417
419
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
1418
420
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1419
421
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1420
422
|
/**
|
|
1421
|
-
* @
|
|
1422
|
-
* <p>Lists tags for up to 10 health checks or hosted zones.</p>
|
|
1423
|
-
* <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
|
|
1424
|
-
* Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
|
|
423
|
+
* @see {@link ListTagsForResourcesCommand}
|
|
1425
424
|
*/
|
|
1426
425
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourcesCommandOutput>;
|
|
1427
426
|
listTagsForResources(args: ListTagsForResourcesCommandInput, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
1428
427
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
1429
428
|
/**
|
|
1430
|
-
* @
|
|
1431
|
-
* <p>Gets information about the latest version for every traffic policy that is associated
|
|
1432
|
-
* with the current Amazon Web Services account. Policies are listed in the order that they
|
|
1433
|
-
* were created in. </p>
|
|
1434
|
-
* <p>For information about how of deleting a traffic policy affects the response from
|
|
1435
|
-
* <code>ListTrafficPolicies</code>, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html">DeleteTrafficPolicy</a>. </p>
|
|
429
|
+
* @see {@link ListTrafficPoliciesCommand}
|
|
1436
430
|
*/
|
|
1437
431
|
listTrafficPolicies(args: ListTrafficPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficPoliciesCommandOutput>;
|
|
1438
432
|
listTrafficPolicies(args: ListTrafficPoliciesCommandInput, cb: (err: any, data?: ListTrafficPoliciesCommandOutput) => void): void;
|
|
1439
433
|
listTrafficPolicies(args: ListTrafficPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficPoliciesCommandOutput) => void): void;
|
|
1440
434
|
/**
|
|
1441
|
-
* @
|
|
1442
|
-
* <p>Gets information about the traffic policy instances that you created by using the
|
|
1443
|
-
* current Amazon Web Services account.</p>
|
|
1444
|
-
* <note>
|
|
1445
|
-
* <p>After you submit an <code>UpdateTrafficPolicyInstance</code> request, there's a
|
|
1446
|
-
* brief delay while Amazon Route 53 creates the resource record sets that are
|
|
1447
|
-
* specified in the traffic policy definition. For more information, see the
|
|
1448
|
-
* <code>State</code> response element.</p>
|
|
1449
|
-
* </note>
|
|
1450
|
-
* <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic
|
|
1451
|
-
* policy instances, you can use the <code>MaxItems</code> parameter to list them in groups
|
|
1452
|
-
* of up to 100.</p>
|
|
435
|
+
* @see {@link ListTrafficPolicyInstancesCommand}
|
|
1453
436
|
*/
|
|
1454
437
|
listTrafficPolicyInstances(args: ListTrafficPolicyInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficPolicyInstancesCommandOutput>;
|
|
1455
438
|
listTrafficPolicyInstances(args: ListTrafficPolicyInstancesCommandInput, cb: (err: any, data?: ListTrafficPolicyInstancesCommandOutput) => void): void;
|
|
1456
439
|
listTrafficPolicyInstances(args: ListTrafficPolicyInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficPolicyInstancesCommandOutput) => void): void;
|
|
1457
440
|
/**
|
|
1458
|
-
* @
|
|
1459
|
-
* <p>Gets information about the traffic policy instances that you created in a specified
|
|
1460
|
-
* hosted zone.</p>
|
|
1461
|
-
* <note>
|
|
1462
|
-
* <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an
|
|
1463
|
-
* <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while
|
|
1464
|
-
* Amazon Route 53 creates the resource record sets that are specified in the traffic
|
|
1465
|
-
* policy definition. For more information, see the <code>State</code> response
|
|
1466
|
-
* element.</p>
|
|
1467
|
-
* </note>
|
|
1468
|
-
* <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic
|
|
1469
|
-
* policy instances, you can use the <code>MaxItems</code> parameter to list them in groups
|
|
1470
|
-
* of up to 100.</p>
|
|
441
|
+
* @see {@link ListTrafficPolicyInstancesByHostedZoneCommand}
|
|
1471
442
|
*/
|
|
1472
443
|
listTrafficPolicyInstancesByHostedZone(args: ListTrafficPolicyInstancesByHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficPolicyInstancesByHostedZoneCommandOutput>;
|
|
1473
444
|
listTrafficPolicyInstancesByHostedZone(args: ListTrafficPolicyInstancesByHostedZoneCommandInput, cb: (err: any, data?: ListTrafficPolicyInstancesByHostedZoneCommandOutput) => void): void;
|
|
1474
445
|
listTrafficPolicyInstancesByHostedZone(args: ListTrafficPolicyInstancesByHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficPolicyInstancesByHostedZoneCommandOutput) => void): void;
|
|
1475
446
|
/**
|
|
1476
|
-
* @
|
|
1477
|
-
* <p>Gets information about the traffic policy instances that you created by using a
|
|
1478
|
-
* specify traffic policy version.</p>
|
|
1479
|
-
* <note>
|
|
1480
|
-
* <p>After you submit a <code>CreateTrafficPolicyInstance</code> or an
|
|
1481
|
-
* <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while
|
|
1482
|
-
* Amazon Route 53 creates the resource record sets that are specified in the traffic
|
|
1483
|
-
* policy definition. For more information, see the <code>State</code> response
|
|
1484
|
-
* element.</p>
|
|
1485
|
-
* </note>
|
|
1486
|
-
* <p>Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic
|
|
1487
|
-
* policy instances, you can use the <code>MaxItems</code> parameter to list them in groups
|
|
1488
|
-
* of up to 100.</p>
|
|
447
|
+
* @see {@link ListTrafficPolicyInstancesByPolicyCommand}
|
|
1489
448
|
*/
|
|
1490
449
|
listTrafficPolicyInstancesByPolicy(args: ListTrafficPolicyInstancesByPolicyCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficPolicyInstancesByPolicyCommandOutput>;
|
|
1491
450
|
listTrafficPolicyInstancesByPolicy(args: ListTrafficPolicyInstancesByPolicyCommandInput, cb: (err: any, data?: ListTrafficPolicyInstancesByPolicyCommandOutput) => void): void;
|
|
1492
451
|
listTrafficPolicyInstancesByPolicy(args: ListTrafficPolicyInstancesByPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficPolicyInstancesByPolicyCommandOutput) => void): void;
|
|
1493
452
|
/**
|
|
1494
|
-
* @
|
|
1495
|
-
* <p>Gets information about all of the versions for a specified traffic policy.</p>
|
|
1496
|
-
* <p>Traffic policy versions are listed in numerical order by
|
|
1497
|
-
* <code>VersionNumber</code>.</p>
|
|
453
|
+
* @see {@link ListTrafficPolicyVersionsCommand}
|
|
1498
454
|
*/
|
|
1499
455
|
listTrafficPolicyVersions(args: ListTrafficPolicyVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrafficPolicyVersionsCommandOutput>;
|
|
1500
456
|
listTrafficPolicyVersions(args: ListTrafficPolicyVersionsCommandInput, cb: (err: any, data?: ListTrafficPolicyVersionsCommandOutput) => void): void;
|
|
1501
457
|
listTrafficPolicyVersions(args: ListTrafficPolicyVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrafficPolicyVersionsCommandOutput) => void): void;
|
|
1502
458
|
/**
|
|
1503
|
-
* @
|
|
1504
|
-
* <p>Gets a list of the VPCs that were created by other accounts and that can be associated
|
|
1505
|
-
* with a specified hosted zone because you've submitted one or more
|
|
1506
|
-
* <code>CreateVPCAssociationAuthorization</code> requests. </p>
|
|
1507
|
-
* <p>The response includes a <code>VPCs</code> element with a <code>VPC</code> child
|
|
1508
|
-
* element for each VPC that can be associated with the hosted zone.</p>
|
|
459
|
+
* @see {@link ListVPCAssociationAuthorizationsCommand}
|
|
1509
460
|
*/
|
|
1510
461
|
listVPCAssociationAuthorizations(args: ListVPCAssociationAuthorizationsCommandInput, options?: __HttpHandlerOptions): Promise<ListVPCAssociationAuthorizationsCommandOutput>;
|
|
1511
462
|
listVPCAssociationAuthorizations(args: ListVPCAssociationAuthorizationsCommandInput, cb: (err: any, data?: ListVPCAssociationAuthorizationsCommandOutput) => void): void;
|
|
1512
463
|
listVPCAssociationAuthorizations(args: ListVPCAssociationAuthorizationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVPCAssociationAuthorizationsCommandOutput) => void): void;
|
|
1513
464
|
/**
|
|
1514
|
-
* @
|
|
1515
|
-
* <p>Gets the value that Amazon Route 53 returns in response to a DNS request for a
|
|
1516
|
-
* specified record name and type. You can optionally specify the IP address of a DNS
|
|
1517
|
-
* resolver, an EDNS0 client subnet IP address, and a subnet mask. </p>
|
|
1518
|
-
* <p>This call only supports querying public hosted zones.</p>
|
|
465
|
+
* @see {@link TestDNSAnswerCommand}
|
|
1519
466
|
*/
|
|
1520
467
|
testDNSAnswer(args: TestDNSAnswerCommandInput, options?: __HttpHandlerOptions): Promise<TestDNSAnswerCommandOutput>;
|
|
1521
468
|
testDNSAnswer(args: TestDNSAnswerCommandInput, cb: (err: any, data?: TestDNSAnswerCommandOutput) => void): void;
|
|
1522
469
|
testDNSAnswer(args: TestDNSAnswerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestDNSAnswerCommandOutput) => void): void;
|
|
1523
470
|
/**
|
|
1524
|
-
* @
|
|
1525
|
-
* <p>Updates an existing health check. Note that some values can't be updated. </p>
|
|
1526
|
-
* <p>For more information about updating health checks, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html">Creating,
|
|
1527
|
-
* Updating, and Deleting Health Checks</a> in the <i>Amazon Route 53
|
|
1528
|
-
* Developer Guide</i>.</p>
|
|
471
|
+
* @see {@link UpdateHealthCheckCommand}
|
|
1529
472
|
*/
|
|
1530
473
|
updateHealthCheck(args: UpdateHealthCheckCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHealthCheckCommandOutput>;
|
|
1531
474
|
updateHealthCheck(args: UpdateHealthCheckCommandInput, cb: (err: any, data?: UpdateHealthCheckCommandOutput) => void): void;
|
|
1532
475
|
updateHealthCheck(args: UpdateHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHealthCheckCommandOutput) => void): void;
|
|
1533
476
|
/**
|
|
1534
|
-
* @
|
|
1535
|
-
* <p>Updates the comment for a specified hosted zone.</p>
|
|
477
|
+
* @see {@link UpdateHostedZoneCommentCommand}
|
|
1536
478
|
*/
|
|
1537
479
|
updateHostedZoneComment(args: UpdateHostedZoneCommentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHostedZoneCommentCommandOutput>;
|
|
1538
480
|
updateHostedZoneComment(args: UpdateHostedZoneCommentCommandInput, cb: (err: any, data?: UpdateHostedZoneCommentCommandOutput) => void): void;
|
|
1539
481
|
updateHostedZoneComment(args: UpdateHostedZoneCommentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHostedZoneCommentCommandOutput) => void): void;
|
|
1540
482
|
/**
|
|
1541
|
-
* @
|
|
1542
|
-
* <p>Updates the comment for a specified traffic policy version.</p>
|
|
483
|
+
* @see {@link UpdateTrafficPolicyCommentCommand}
|
|
1543
484
|
*/
|
|
1544
485
|
updateTrafficPolicyComment(args: UpdateTrafficPolicyCommentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficPolicyCommentCommandOutput>;
|
|
1545
486
|
updateTrafficPolicyComment(args: UpdateTrafficPolicyCommentCommandInput, cb: (err: any, data?: UpdateTrafficPolicyCommentCommandOutput) => void): void;
|
|
1546
487
|
updateTrafficPolicyComment(args: UpdateTrafficPolicyCommentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficPolicyCommentCommandOutput) => void): void;
|
|
1547
488
|
/**
|
|
1548
|
-
* @
|
|
1549
|
-
* <p>Updates the resource record sets in a specified hosted zone that were created based on
|
|
1550
|
-
* the settings in a specified traffic policy version.</p>
|
|
1551
|
-
* <p>When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS
|
|
1552
|
-
* queries for the root resource record set name (such as example.com) while it replaces
|
|
1553
|
-
* one group of resource record sets with another. Route 53 performs the following
|
|
1554
|
-
* operations:</p>
|
|
1555
|
-
* <ol>
|
|
1556
|
-
* <li>
|
|
1557
|
-
* <p>Route 53 creates a new group of resource record sets based on the specified
|
|
1558
|
-
* traffic policy. This is true regardless of how significant the differences are
|
|
1559
|
-
* between the existing resource record sets and the new resource record sets.
|
|
1560
|
-
* </p>
|
|
1561
|
-
* </li>
|
|
1562
|
-
* <li>
|
|
1563
|
-
* <p>When all of the new resource record sets have been created, Route 53 starts to
|
|
1564
|
-
* respond to DNS queries for the root resource record set name (such as
|
|
1565
|
-
* example.com) by using the new resource record sets.</p>
|
|
1566
|
-
* </li>
|
|
1567
|
-
* <li>
|
|
1568
|
-
* <p>Route 53 deletes the old group of resource record sets that are associated
|
|
1569
|
-
* with the root resource record set name.</p>
|
|
1570
|
-
* </li>
|
|
1571
|
-
* </ol>
|
|
489
|
+
* @see {@link UpdateTrafficPolicyInstanceCommand}
|
|
1572
490
|
*/
|
|
1573
491
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficPolicyInstanceCommandOutput>;
|
|
1574
492
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, cb: (err: any, data?: UpdateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
1575
493
|
updateTrafficPolicyInstance(args: UpdateTrafficPolicyInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficPolicyInstanceCommandOutput) => void): void;
|
|
1576
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
* <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web
|
|
498
|
+
* service.</p>
|
|
499
|
+
* <p>You can use Route 53 to:</p>
|
|
500
|
+
* <ul>
|
|
501
|
+
* <li>
|
|
502
|
+
* <p>Register domain names.</p>
|
|
503
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-domain-registration.html">How domain registration works</a>.</p>
|
|
504
|
+
* </li>
|
|
505
|
+
* <li>
|
|
506
|
+
* <p>Route internet traffic to the resources for your domain</p>
|
|
507
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html">How internet traffic is routed to your website or web application</a>.</p>
|
|
508
|
+
* </li>
|
|
509
|
+
* <li>
|
|
510
|
+
* <p>Check the health of your resources.</p>
|
|
511
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-health-checks.html">How Route 53 checks the health of your resources</a>.</p>
|
|
512
|
+
* </li>
|
|
513
|
+
* </ul>
|
|
514
|
+
*/
|
|
515
|
+
export declare class Route53 extends Route53Client implements Route53 {
|
|
516
|
+
}
|