forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmazonRoute53Async.java
More file actions
955 lines (929 loc) · 48.2 KB
/
AmazonRoute53Async.java
File metadata and controls
955 lines (929 loc) · 48.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.route53;
import java.util.concurrent.Future;
import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.handlers.AsyncHandler;
import com.amazonaws.services.route53.model.*;
/**
* Interface for accessing AmazonRoute53 asynchronously.
* Each asynchronous method will return a Java Future object, and users are also allowed
* to provide a callback handler.
*
*/
public interface AmazonRoute53Async extends AmazonRoute53 {
/**
* <p>
* Imagine all the resource record sets in a zone listed out in front of
* you. Imagine them sorted lexicographically first by DNS name (with the
* labels reversed, like "com.amazon.www" for example), and secondarily,
* lexicographically by record type. This operation retrieves at most
* MaxItems resource record sets from this list, in order, starting at a
* position specified by the Name and Type arguments:
* </p>
*
* <ul>
* <li>If both Name and Type are omitted, this means start the results
* at the first RRSET in the HostedZone.</li>
* <li>If Name is specified but Type is omitted, this means start the
* results at the first RRSET in the list whose name is greater than or
* equal to Name. </li>
* <li>If both Name and Type are specified, this means start the results
* at the first RRSET in the list whose name is greater than or equal to
* Name and whose type is greater than or equal to Type.</li>
* <li>It is an error to specify the Type but not the Name.</li>
*
* </ul>
* <p>
* Use ListResourceRecordSets to retrieve a single known record set by
* specifying the record set's name and type, and setting MaxItems = 1
* </p>
* <p>
* To retrieve all the records in a HostedZone, first pause any processes
* making calls to ChangeResourceRecordSets. Initially call
* ListResourceRecordSets without a Name and Type to get the first page
* of record sets. For subsequent calls, set Name and Type to the
* NextName and NextType values returned by the previous response.
* </p>
* <p>
* In the presence of concurrent ChangeResourceRecordSets calls, there is
* no consistency of results across calls to ListResourceRecordSets. The
* only way to get a consistent multi-page snapshot of all RRSETs in a
* zone is to stop making changes while pagination is in progress.
* </p>
* <p>
* However, the results from ListResourceRecordSets are consistent within
* a page. If MakeChange calls are taking place concurrently, the result
* of each one will either be completely visible in your results or not
* at all. You will not see partial changes, or changes that do not
* ultimately succeed. (This follows from the fact that MakeChange is
* atomic)
* </p>
* <p>
* The results from ListResourceRecordSets are strongly consistent with
* ChangeResourceRecordSets. To be precise, if a single process makes a
* call to ChangeResourceRecordSets and receives a successful response,
* the effects of that change will be visible in a subsequent call to
* ListResourceRecordSets by that process.
* </p>
*
* @param listResourceRecordSetsRequest Container for the necessary
* parameters to execute the ListResourceRecordSets operation on
* AmazonRoute53.
*
* @return A Java Future object containing the response from the
* ListResourceRecordSets service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListResourceRecordSetsResult> listResourceRecordSetsAsync(ListResourceRecordSetsRequest listResourceRecordSetsRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* Imagine all the resource record sets in a zone listed out in front of
* you. Imagine them sorted lexicographically first by DNS name (with the
* labels reversed, like "com.amazon.www" for example), and secondarily,
* lexicographically by record type. This operation retrieves at most
* MaxItems resource record sets from this list, in order, starting at a
* position specified by the Name and Type arguments:
* </p>
*
* <ul>
* <li>If both Name and Type are omitted, this means start the results
* at the first RRSET in the HostedZone.</li>
* <li>If Name is specified but Type is omitted, this means start the
* results at the first RRSET in the list whose name is greater than or
* equal to Name. </li>
* <li>If both Name and Type are specified, this means start the results
* at the first RRSET in the list whose name is greater than or equal to
* Name and whose type is greater than or equal to Type.</li>
* <li>It is an error to specify the Type but not the Name.</li>
*
* </ul>
* <p>
* Use ListResourceRecordSets to retrieve a single known record set by
* specifying the record set's name and type, and setting MaxItems = 1
* </p>
* <p>
* To retrieve all the records in a HostedZone, first pause any processes
* making calls to ChangeResourceRecordSets. Initially call
* ListResourceRecordSets without a Name and Type to get the first page
* of record sets. For subsequent calls, set Name and Type to the
* NextName and NextType values returned by the previous response.
* </p>
* <p>
* In the presence of concurrent ChangeResourceRecordSets calls, there is
* no consistency of results across calls to ListResourceRecordSets. The
* only way to get a consistent multi-page snapshot of all RRSETs in a
* zone is to stop making changes while pagination is in progress.
* </p>
* <p>
* However, the results from ListResourceRecordSets are consistent within
* a page. If MakeChange calls are taking place concurrently, the result
* of each one will either be completely visible in your results or not
* at all. You will not see partial changes, or changes that do not
* ultimately succeed. (This follows from the fact that MakeChange is
* atomic)
* </p>
* <p>
* The results from ListResourceRecordSets are strongly consistent with
* ChangeResourceRecordSets. To be precise, if a single process makes a
* call to ChangeResourceRecordSets and receives a successful response,
* the effects of that change will be visible in a subsequent call to
* ListResourceRecordSets by that process.
* </p>
*
* @param listResourceRecordSetsRequest Container for the necessary
* parameters to execute the ListResourceRecordSets operation on
* AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* ListResourceRecordSets service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListResourceRecordSetsResult> listResourceRecordSetsAsync(ListResourceRecordSetsRequest listResourceRecordSetsRequest,
AsyncHandler<ListResourceRecordSetsRequest, ListResourceRecordSetsResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* Use this action to create or change your authoritative DNS
* information. To use this action, send a <code>POST</code> request to
* the <code>2012-12-12/hostedzone/hosted Zone ID/rrset</code> resource.
* The request body must include an XML document with a
* <code>ChangeResourceRecordSetsRequest</code> element.
* </p>
* <p>
* Changes are a list of change items and are considered transactional.
* For more information on transactional changes, also known as change
* batches, see <a
* zon.com/Route53/latest/DeveloperGuide/RRSchanges.html#RRSchanges_API">
* Creating, Changing, and Deleting Resource Record Sets Using the Route
* 53 API </a> in the <i>Amazon Route 53 Developer Guide</i> .
* </p>
* <p>
* <b>IMPORTANT:</b>Due to the nature of transactional changes, you
* cannot delete the same resource record set more than once in a single
* change batch. If you attempt to delete the same change batch more than
* once, Route 53 returns an InvalidChangeBatch error.
* </p>
* <p>
* In response to a <code>ChangeResourceRecordSets</code> request, your
* DNS data is changed on all Route 53 DNS servers. Initially, the status
* of a change is <code>PENDING</code> . This means the change has not
* yet propagated to all the authoritative Route 53 DNS servers. When the
* change is propagated to all hosts, the change returns a status of
* <code>INSYNC</code> .
* </p>
* <p>
* Note the following limitations on a
* <code>ChangeResourceRecordSets</code> request:
* </p>
* <p>
* - A request cannot contain more than 100 Change elements.
* </p>
* <p>
* - A request cannot contain more than 1000 ResourceRecord elements.
* </p>
* <p>
* The sum of the number of characters (including spaces) in all
* <code>Value</code> elements in a request cannot exceed 32,000
* characters.
* </p>
*
* @param changeResourceRecordSetsRequest Container for the necessary
* parameters to execute the ChangeResourceRecordSets operation on
* AmazonRoute53.
*
* @return A Java Future object containing the response from the
* ChangeResourceRecordSets service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ChangeResourceRecordSetsResult> changeResourceRecordSetsAsync(ChangeResourceRecordSetsRequest changeResourceRecordSetsRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* Use this action to create or change your authoritative DNS
* information. To use this action, send a <code>POST</code> request to
* the <code>2012-12-12/hostedzone/hosted Zone ID/rrset</code> resource.
* The request body must include an XML document with a
* <code>ChangeResourceRecordSetsRequest</code> element.
* </p>
* <p>
* Changes are a list of change items and are considered transactional.
* For more information on transactional changes, also known as change
* batches, see <a
* zon.com/Route53/latest/DeveloperGuide/RRSchanges.html#RRSchanges_API">
* Creating, Changing, and Deleting Resource Record Sets Using the Route
* 53 API </a> in the <i>Amazon Route 53 Developer Guide</i> .
* </p>
* <p>
* <b>IMPORTANT:</b>Due to the nature of transactional changes, you
* cannot delete the same resource record set more than once in a single
* change batch. If you attempt to delete the same change batch more than
* once, Route 53 returns an InvalidChangeBatch error.
* </p>
* <p>
* In response to a <code>ChangeResourceRecordSets</code> request, your
* DNS data is changed on all Route 53 DNS servers. Initially, the status
* of a change is <code>PENDING</code> . This means the change has not
* yet propagated to all the authoritative Route 53 DNS servers. When the
* change is propagated to all hosts, the change returns a status of
* <code>INSYNC</code> .
* </p>
* <p>
* Note the following limitations on a
* <code>ChangeResourceRecordSets</code> request:
* </p>
* <p>
* - A request cannot contain more than 100 Change elements.
* </p>
* <p>
* - A request cannot contain more than 1000 ResourceRecord elements.
* </p>
* <p>
* The sum of the number of characters (including spaces) in all
* <code>Value</code> elements in a request cannot exceed 32,000
* characters.
* </p>
*
* @param changeResourceRecordSetsRequest Container for the necessary
* parameters to execute the ChangeResourceRecordSets operation on
* AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* ChangeResourceRecordSets service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ChangeResourceRecordSetsResult> changeResourceRecordSetsAsync(ChangeResourceRecordSetsRequest changeResourceRecordSetsRequest,
AsyncHandler<ChangeResourceRecordSetsRequest, ChangeResourceRecordSetsResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action creates a new hosted zone.
* </p>
* <p>
* To create a new hosted zone, send a <code>POST</code> request to the
* <code>2012-12-12/hostedzone</code> resource. The request body must
* include an XML document with a <code>CreateHostedZoneRequest</code>
* element. The response returns the
* <code>CreateHostedZoneResponse</code> element that contains metadata
* about the hosted zone.
* </p>
* <p>
* Route 53 automatically creates a default SOA record and four NS
* records for the zone. The NS records in the hosted zone are the name
* servers you give your registrar to delegate your domain to. For more
* information about SOA and NS records, see <a
* docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">
* NS and SOA Records that Route 53 Creates for a Hosted Zone </a> in
* the <i>Amazon Route 53 Developer Guide</i> .
* </p>
* <p>
* When you create a zone, its initial status is <code>PENDING</code> .
* This means that it is not yet available on all DNS servers. The status
* of the zone changes to <code>INSYNC</code> when the NS and SOA records
* are available on all Route 53 DNS servers.
* </p>
*
* @param createHostedZoneRequest Container for the necessary parameters
* to execute the CreateHostedZone operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* CreateHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<CreateHostedZoneResult> createHostedZoneAsync(CreateHostedZoneRequest createHostedZoneRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action creates a new hosted zone.
* </p>
* <p>
* To create a new hosted zone, send a <code>POST</code> request to the
* <code>2012-12-12/hostedzone</code> resource. The request body must
* include an XML document with a <code>CreateHostedZoneRequest</code>
* element. The response returns the
* <code>CreateHostedZoneResponse</code> element that contains metadata
* about the hosted zone.
* </p>
* <p>
* Route 53 automatically creates a default SOA record and four NS
* records for the zone. The NS records in the hosted zone are the name
* servers you give your registrar to delegate your domain to. For more
* information about SOA and NS records, see <a
* docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">
* NS and SOA Records that Route 53 Creates for a Hosted Zone </a> in
* the <i>Amazon Route 53 Developer Guide</i> .
* </p>
* <p>
* When you create a zone, its initial status is <code>PENDING</code> .
* This means that it is not yet available on all DNS servers. The status
* of the zone changes to <code>INSYNC</code> when the NS and SOA records
* are available on all Route 53 DNS servers.
* </p>
*
* @param createHostedZoneRequest Container for the necessary parameters
* to execute the CreateHostedZone operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* CreateHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<CreateHostedZoneResult> createHostedZoneAsync(CreateHostedZoneRequest createHostedZoneRequest,
AsyncHandler<CreateHostedZoneRequest, CreateHostedZoneResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve the health check, send a <code>GET</code> request to the
* <code>2012-12-12/healthcheck/health check ID </code> resource.
* </p>
*
* @param getHealthCheckRequest Container for the necessary parameters to
* execute the GetHealthCheck operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* GetHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetHealthCheckResult> getHealthCheckAsync(GetHealthCheckRequest getHealthCheckRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve the health check, send a <code>GET</code> request to the
* <code>2012-12-12/healthcheck/health check ID </code> resource.
* </p>
*
* @param getHealthCheckRequest Container for the necessary parameters to
* execute the GetHealthCheck operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* GetHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetHealthCheckResult> getHealthCheckAsync(GetHealthCheckRequest getHealthCheckRequest,
AsyncHandler<GetHealthCheckRequest, GetHealthCheckResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action creates a new health check.
* </p>
* <p>
* To create a new health check, send a <code>POST</code> request to the
* <code>2012-12-12/healthcheck</code> resource. The request body must
* include an XML document with a <code>CreateHealthCheckRequest</code>
* element. The response returns the
* <code>CreateHealthCheckResponse</code> element that contains metadata
* about the health check.
* </p>
*
* @param createHealthCheckRequest Container for the necessary parameters
* to execute the CreateHealthCheck operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* CreateHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<CreateHealthCheckResult> createHealthCheckAsync(CreateHealthCheckRequest createHealthCheckRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action creates a new health check.
* </p>
* <p>
* To create a new health check, send a <code>POST</code> request to the
* <code>2012-12-12/healthcheck</code> resource. The request body must
* include an XML document with a <code>CreateHealthCheckRequest</code>
* element. The response returns the
* <code>CreateHealthCheckResponse</code> element that contains metadata
* about the health check.
* </p>
*
* @param createHealthCheckRequest Container for the necessary parameters
* to execute the CreateHealthCheck operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* CreateHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<CreateHealthCheckResult> createHealthCheckAsync(CreateHealthCheckRequest createHealthCheckRequest,
AsyncHandler<CreateHealthCheckRequest, CreateHealthCheckResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action returns the current status of a change batch request. The
* status is one of the following values:
* </p>
* <p>
* - <code>PENDING</code> indicates that the changes in this request have
* not replicated to all Route 53 DNS servers. This is the initial status
* of all change batch requests.
* </p>
* <p>
* - <code>INSYNC</code> indicates that the changes have replicated to
* all Amazon Route 53 DNS servers.
* </p>
*
* @param getChangeRequest Container for the necessary parameters to
* execute the GetChange operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* GetChange service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetChangeResult> getChangeAsync(GetChangeRequest getChangeRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action returns the current status of a change batch request. The
* status is one of the following values:
* </p>
* <p>
* - <code>PENDING</code> indicates that the changes in this request have
* not replicated to all Route 53 DNS servers. This is the initial status
* of all change batch requests.
* </p>
* <p>
* - <code>INSYNC</code> indicates that the changes have replicated to
* all Amazon Route 53 DNS servers.
* </p>
*
* @param getChangeRequest Container for the necessary parameters to
* execute the GetChange operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* GetChange service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetChangeResult> getChangeAsync(GetChangeRequest getChangeRequest,
AsyncHandler<GetChangeRequest, GetChangeResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action deletes a health check. To delete a health check, send a
* <code>DELETE</code> request to the <code>2012-12-12/healthcheck/health
* check ID </code> resource.
* </p>
* <p>
* <b>IMPORTANT:</b> You can delete a health check only if there are no
* resource record sets associated with this health check. If resource
* record sets are associated with this health check, you must
* disassociate them before you can delete your health check. If you try
* to delete a health check that is associated with resource record sets,
* Route 53 will deny your request with a HealthCheckInUse error. For
* information about disassociating the records from your health check,
* see ChangeResourceRecordSets.
* </p>
*
* @param deleteHealthCheckRequest Container for the necessary parameters
* to execute the DeleteHealthCheck operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* DeleteHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<DeleteHealthCheckResult> deleteHealthCheckAsync(DeleteHealthCheckRequest deleteHealthCheckRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action deletes a health check. To delete a health check, send a
* <code>DELETE</code> request to the <code>2012-12-12/healthcheck/health
* check ID </code> resource.
* </p>
* <p>
* <b>IMPORTANT:</b> You can delete a health check only if there are no
* resource record sets associated with this health check. If resource
* record sets are associated with this health check, you must
* disassociate them before you can delete your health check. If you try
* to delete a health check that is associated with resource record sets,
* Route 53 will deny your request with a HealthCheckInUse error. For
* information about disassociating the records from your health check,
* see ChangeResourceRecordSets.
* </p>
*
* @param deleteHealthCheckRequest Container for the necessary parameters
* to execute the DeleteHealthCheck operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* DeleteHealthCheck service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<DeleteHealthCheckResult> deleteHealthCheckAsync(DeleteHealthCheckRequest deleteHealthCheckRequest,
AsyncHandler<DeleteHealthCheckRequest, DeleteHealthCheckResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve the delegation set for a hosted zone, send a
* <code>GET</code> request to the <code>2012-12-12/hostedzone/hosted
* zone ID </code> resource. The delegation set is the four Route 53 name
* servers that were assigned to the hosted zone when you created it.
* </p>
*
* @param getHostedZoneRequest Container for the necessary parameters to
* execute the GetHostedZone operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* GetHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetHostedZoneResult> getHostedZoneAsync(GetHostedZoneRequest getHostedZoneRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve the delegation set for a hosted zone, send a
* <code>GET</code> request to the <code>2012-12-12/hostedzone/hosted
* zone ID </code> resource. The delegation set is the four Route 53 name
* servers that were assigned to the hosted zone when you created it.
* </p>
*
* @param getHostedZoneRequest Container for the necessary parameters to
* execute the GetHostedZone operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* GetHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<GetHostedZoneResult> getHostedZoneAsync(GetHostedZoneRequest getHostedZoneRequest,
AsyncHandler<GetHostedZoneRequest, GetHostedZoneResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve a list of your hosted zones, send a <code>GET</code>
* request to the <code>2012-12-12/hostedzone</code> resource. The
* response to this request includes a <code>HostedZones</code> element
* with zero, one, or multiple <code>HostedZone</code> child elements. By
* default, the list of hosted zones is displayed on a single page. You
* can control the length of the page that is displayed by using the
* <code>MaxItems</code> parameter. You can use the <code>Marker</code>
* parameter to control the hosted zone that the list begins with.
* </p>
* <p>
* <b>NOTE:</b> Amazon Route 53 returns a maximum of 100 items. If you
* set MaxItems to a value greater than 100, Amazon Route 53 returns only
* the first 100.
* </p>
*
* @param listHostedZonesRequest Container for the necessary parameters
* to execute the ListHostedZones operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* ListHostedZones service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListHostedZonesResult> listHostedZonesAsync(ListHostedZonesRequest listHostedZonesRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve a list of your hosted zones, send a <code>GET</code>
* request to the <code>2012-12-12/hostedzone</code> resource. The
* response to this request includes a <code>HostedZones</code> element
* with zero, one, or multiple <code>HostedZone</code> child elements. By
* default, the list of hosted zones is displayed on a single page. You
* can control the length of the page that is displayed by using the
* <code>MaxItems</code> parameter. You can use the <code>Marker</code>
* parameter to control the hosted zone that the list begins with.
* </p>
* <p>
* <b>NOTE:</b> Amazon Route 53 returns a maximum of 100 items. If you
* set MaxItems to a value greater than 100, Amazon Route 53 returns only
* the first 100.
* </p>
*
* @param listHostedZonesRequest Container for the necessary parameters
* to execute the ListHostedZones operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* ListHostedZones service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListHostedZonesResult> listHostedZonesAsync(ListHostedZonesRequest listHostedZonesRequest,
AsyncHandler<ListHostedZonesRequest, ListHostedZonesResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action deletes a hosted zone. To delete a hosted zone, send a
* <code>DELETE</code> request to the <code>2012-12-12/hostedzone/hosted
* zone ID </code> resource.
* </p>
* <p>
* For more information about deleting a hosted zone, see <a
* s.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html">
* Deleting a Hosted Zone </a> in the <i>Amazon Route 53 Developer
* Guide</i> .
* </p>
* <p>
* <b>IMPORTANT:</b> You can delete a hosted zone only if there are no
* resource record sets other than the default SOA record and NS resource
* record sets. If your hosted zone contains other resource record sets,
* you must delete them before you can delete your hosted zone. If you
* try to delete a hosted zone that contains other resource record sets,
* Route 53 will deny your request with a HostedZoneNotEmpty error. For
* information about deleting records from your hosted zone, see
* ChangeResourceRecordSets.
* </p>
*
* @param deleteHostedZoneRequest Container for the necessary parameters
* to execute the DeleteHostedZone operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* DeleteHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<DeleteHostedZoneResult> deleteHostedZoneAsync(DeleteHostedZoneRequest deleteHostedZoneRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* This action deletes a hosted zone. To delete a hosted zone, send a
* <code>DELETE</code> request to the <code>2012-12-12/hostedzone/hosted
* zone ID </code> resource.
* </p>
* <p>
* For more information about deleting a hosted zone, see <a
* s.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html">
* Deleting a Hosted Zone </a> in the <i>Amazon Route 53 Developer
* Guide</i> .
* </p>
* <p>
* <b>IMPORTANT:</b> You can delete a hosted zone only if there are no
* resource record sets other than the default SOA record and NS resource
* record sets. If your hosted zone contains other resource record sets,
* you must delete them before you can delete your hosted zone. If you
* try to delete a hosted zone that contains other resource record sets,
* Route 53 will deny your request with a HostedZoneNotEmpty error. For
* information about deleting records from your hosted zone, see
* ChangeResourceRecordSets.
* </p>
*
* @param deleteHostedZoneRequest Container for the necessary parameters
* to execute the DeleteHostedZone operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* DeleteHostedZone service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<DeleteHostedZoneResult> deleteHostedZoneAsync(DeleteHostedZoneRequest deleteHostedZoneRequest,
AsyncHandler<DeleteHostedZoneRequest, DeleteHostedZoneResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve a list of your health checks, send a <code>GET</code>
* request to the <code>2012-12-12/healthcheck</code> resource. The
* response to this request includes a <code>HealthChecks</code> element
* with zero, one, or multiple <code>HealthCheck</code> child elements.
* By default, the list of health checks is displayed on a single page.
* You can control the length of the page that is displayed by using the
* <code>MaxItems</code> parameter. You can use the <code>Marker</code>
* parameter to control the health check that the list begins with.
* </p>
* <p>
* <b>NOTE:</b> Amazon Route 53 returns a maximum of 100 items. If you
* set MaxItems to a value greater than 100, Amazon Route 53 returns only
* the first 100.
* </p>
*
* @param listHealthChecksRequest Container for the necessary parameters
* to execute the ListHealthChecks operation on AmazonRoute53.
*
* @return A Java Future object containing the response from the
* ListHealthChecks service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListHealthChecksResult> listHealthChecksAsync(ListHealthChecksRequest listHealthChecksRequest)
throws AmazonServiceException, AmazonClientException;
/**
* <p>
* To retrieve a list of your health checks, send a <code>GET</code>
* request to the <code>2012-12-12/healthcheck</code> resource. The
* response to this request includes a <code>HealthChecks</code> element
* with zero, one, or multiple <code>HealthCheck</code> child elements.
* By default, the list of health checks is displayed on a single page.
* You can control the length of the page that is displayed by using the
* <code>MaxItems</code> parameter. You can use the <code>Marker</code>
* parameter to control the health check that the list begins with.
* </p>
* <p>
* <b>NOTE:</b> Amazon Route 53 returns a maximum of 100 items. If you
* set MaxItems to a value greater than 100, Amazon Route 53 returns only
* the first 100.
* </p>
*
* @param listHealthChecksRequest Container for the necessary parameters
* to execute the ListHealthChecks operation on AmazonRoute53.
* @param asyncHandler Asynchronous callback handler for events in the
* life-cycle of the request. Users could provide the implementation of
* the four callback methods in this interface to process the operation
* result or handle the exception.
*
* @return A Java Future object containing the response from the
* ListHealthChecks service method, as returned by AmazonRoute53.
*
* @throws AmazonClientException
* If any internal errors are encountered inside the client while
* attempting to make the request or handle the response. For example
* if a network connection is not available.
* @throws AmazonServiceException
* If an error response is returned by AmazonRoute53 indicating
* either a problem with the data in the request, or a server side issue.
*/
public Future<ListHealthChecksResult> listHealthChecksAsync(ListHealthChecksRequest listHealthChecksRequest,
AsyncHandler<ListHealthChecksRequest, ListHealthChecksResult> asyncHandler)
throws AmazonServiceException, AmazonClientException;
}