-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathAWSAppSyncAsync.java
2261 lines (2129 loc) · 110 KB
/
AWSAppSyncAsync.java
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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2020-2025 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.appsync;
import javax.annotation.Generated;
import com.amazonaws.services.appsync.model.*;
/**
* Interface for accessing AWSAppSync asynchronously. Each asynchronous method will return a Java Future object
* representing the asynchronous operation; overloads which accept an {@code AsyncHandler} can be used to receive
* notification when an asynchronous operation completes.
* <p>
* <b>Note:</b> Do not directly implement this interface, new methods are added to it regularly. Extend from
* {@link com.amazonaws.services.appsync.AbstractAWSAppSyncAsync} instead.
* </p>
* <p>
* <p>
* AppSync provides API actions for creating and interacting with data sources using GraphQL from your application.
* </p>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSAppSyncAsync extends AWSAppSync {
/**
* <p>
* Maps an endpoint to your custom domain.
* </p>
*
* @param associateApiRequest
* @return A Java Future containing the result of the AssociateApi operation returned by the service.
* @sample AWSAppSyncAsync.AssociateApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<AssociateApiResult> associateApiAsync(AssociateApiRequest associateApiRequest);
/**
* <p>
* Maps an endpoint to your custom domain.
* </p>
*
* @param associateApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the AssociateApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.AssociateApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<AssociateApiResult> associateApiAsync(AssociateApiRequest associateApiRequest,
com.amazonaws.handlers.AsyncHandler<AssociateApiRequest, AssociateApiResult> asyncHandler);
/**
* <p>
* Creates an association between a Merged API and source API using the source API's identifier.
* </p>
*
* @param associateMergedGraphqlApiRequest
* @return A Java Future containing the result of the AssociateMergedGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsync.AssociateMergedGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateMergedGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateMergedGraphqlApiResult> associateMergedGraphqlApiAsync(
AssociateMergedGraphqlApiRequest associateMergedGraphqlApiRequest);
/**
* <p>
* Creates an association between a Merged API and source API using the source API's identifier.
* </p>
*
* @param associateMergedGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the AssociateMergedGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.AssociateMergedGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateMergedGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateMergedGraphqlApiResult> associateMergedGraphqlApiAsync(
AssociateMergedGraphqlApiRequest associateMergedGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<AssociateMergedGraphqlApiRequest, AssociateMergedGraphqlApiResult> asyncHandler);
/**
* <p>
* Creates an association between a Merged API and source API using the Merged API's identifier.
* </p>
*
* @param associateSourceGraphqlApiRequest
* @return A Java Future containing the result of the AssociateSourceGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsync.AssociateSourceGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateSourceGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateSourceGraphqlApiResult> associateSourceGraphqlApiAsync(
AssociateSourceGraphqlApiRequest associateSourceGraphqlApiRequest);
/**
* <p>
* Creates an association between a Merged API and source API using the Merged API's identifier.
* </p>
*
* @param associateSourceGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the AssociateSourceGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.AssociateSourceGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/AssociateSourceGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateSourceGraphqlApiResult> associateSourceGraphqlApiAsync(
AssociateSourceGraphqlApiRequest associateSourceGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<AssociateSourceGraphqlApiRequest, AssociateSourceGraphqlApiResult> asyncHandler);
/**
* <p>
* Creates a cache for the GraphQL API.
* </p>
*
* @param createApiCacheRequest
* Represents the input of a <code>CreateApiCache</code> operation.
* @return A Java Future containing the result of the CreateApiCache operation returned by the service.
* @sample AWSAppSyncAsync.CreateApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateApiCacheResult> createApiCacheAsync(CreateApiCacheRequest createApiCacheRequest);
/**
* <p>
* Creates a cache for the GraphQL API.
* </p>
*
* @param createApiCacheRequest
* Represents the input of a <code>CreateApiCache</code> operation.
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateApiCache operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateApiCacheResult> createApiCacheAsync(CreateApiCacheRequest createApiCacheRequest,
com.amazonaws.handlers.AsyncHandler<CreateApiCacheRequest, CreateApiCacheResult> asyncHandler);
/**
* <p>
* Creates a unique key that you can distribute to clients who invoke your API.
* </p>
*
* @param createApiKeyRequest
* @return A Java Future containing the result of the CreateApiKey operation returned by the service.
* @sample AWSAppSyncAsync.CreateApiKey
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiKey" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateApiKeyResult> createApiKeyAsync(CreateApiKeyRequest createApiKeyRequest);
/**
* <p>
* Creates a unique key that you can distribute to clients who invoke your API.
* </p>
*
* @param createApiKeyRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateApiKey operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateApiKey
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiKey" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateApiKeyResult> createApiKeyAsync(CreateApiKeyRequest createApiKeyRequest,
com.amazonaws.handlers.AsyncHandler<CreateApiKeyRequest, CreateApiKeyResult> asyncHandler);
/**
* <p>
* Creates a <code>DataSource</code> object.
* </p>
*
* @param createDataSourceRequest
* @return A Java Future containing the result of the CreateDataSource operation returned by the service.
* @sample AWSAppSyncAsync.CreateDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateDataSourceResult> createDataSourceAsync(CreateDataSourceRequest createDataSourceRequest);
/**
* <p>
* Creates a <code>DataSource</code> object.
* </p>
*
* @param createDataSourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateDataSource operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateDataSourceResult> createDataSourceAsync(CreateDataSourceRequest createDataSourceRequest,
com.amazonaws.handlers.AsyncHandler<CreateDataSourceRequest, CreateDataSourceResult> asyncHandler);
/**
* <p>
* Creates a custom <code>DomainName</code> object.
* </p>
*
* @param createDomainNameRequest
* @return A Java Future containing the result of the CreateDomainName operation returned by the service.
* @sample AWSAppSyncAsync.CreateDomainName
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDomainName" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateDomainNameResult> createDomainNameAsync(CreateDomainNameRequest createDomainNameRequest);
/**
* <p>
* Creates a custom <code>DomainName</code> object.
* </p>
*
* @param createDomainNameRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateDomainName operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateDomainName
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateDomainName" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateDomainNameResult> createDomainNameAsync(CreateDomainNameRequest createDomainNameRequest,
com.amazonaws.handlers.AsyncHandler<CreateDomainNameRequest, CreateDomainNameResult> asyncHandler);
/**
* <p>
* Creates a <code>Function</code> object.
* </p>
* <p>
* A function is a reusable entity. You can use multiple functions to compose the resolver logic.
* </p>
*
* @param createFunctionRequest
* @return A Java Future containing the result of the CreateFunction operation returned by the service.
* @sample AWSAppSyncAsync.CreateFunction
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateFunction" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateFunctionResult> createFunctionAsync(CreateFunctionRequest createFunctionRequest);
/**
* <p>
* Creates a <code>Function</code> object.
* </p>
* <p>
* A function is a reusable entity. You can use multiple functions to compose the resolver logic.
* </p>
*
* @param createFunctionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateFunction operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateFunction
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateFunction" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateFunctionResult> createFunctionAsync(CreateFunctionRequest createFunctionRequest,
com.amazonaws.handlers.AsyncHandler<CreateFunctionRequest, CreateFunctionResult> asyncHandler);
/**
* <p>
* Creates a <code>GraphqlApi</code> object.
* </p>
*
* @param createGraphqlApiRequest
* @return A Java Future containing the result of the CreateGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsync.CreateGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateGraphqlApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateGraphqlApiResult> createGraphqlApiAsync(CreateGraphqlApiRequest createGraphqlApiRequest);
/**
* <p>
* Creates a <code>GraphqlApi</code> object.
* </p>
*
* @param createGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateGraphqlApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateGraphqlApiResult> createGraphqlApiAsync(CreateGraphqlApiRequest createGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<CreateGraphqlApiRequest, CreateGraphqlApiResult> asyncHandler);
/**
* <p>
* Creates a <code>Resolver</code> object.
* </p>
* <p>
* A resolver converts incoming requests into a format that a data source can understand, and converts the data
* source's responses into GraphQL.
* </p>
*
* @param createResolverRequest
* @return A Java Future containing the result of the CreateResolver operation returned by the service.
* @sample AWSAppSyncAsync.CreateResolver
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateResolver" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateResolverResult> createResolverAsync(CreateResolverRequest createResolverRequest);
/**
* <p>
* Creates a <code>Resolver</code> object.
* </p>
* <p>
* A resolver converts incoming requests into a format that a data source can understand, and converts the data
* source's responses into GraphQL.
* </p>
*
* @param createResolverRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateResolver operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateResolver
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateResolver" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateResolverResult> createResolverAsync(CreateResolverRequest createResolverRequest,
com.amazonaws.handlers.AsyncHandler<CreateResolverRequest, CreateResolverResult> asyncHandler);
/**
* <p>
* Creates a <code>Type</code> object.
* </p>
*
* @param createTypeRequest
* @return A Java Future containing the result of the CreateType operation returned by the service.
* @sample AWSAppSyncAsync.CreateType
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateType" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateTypeResult> createTypeAsync(CreateTypeRequest createTypeRequest);
/**
* <p>
* Creates a <code>Type</code> object.
* </p>
*
* @param createTypeRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateType operation returned by the service.
* @sample AWSAppSyncAsyncHandler.CreateType
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateType" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateTypeResult> createTypeAsync(CreateTypeRequest createTypeRequest,
com.amazonaws.handlers.AsyncHandler<CreateTypeRequest, CreateTypeResult> asyncHandler);
/**
* <p>
* Deletes an <code>ApiCache</code> object.
* </p>
*
* @param deleteApiCacheRequest
* Represents the input of a <code>DeleteApiCache</code> operation.
* @return A Java Future containing the result of the DeleteApiCache operation returned by the service.
* @sample AWSAppSyncAsync.DeleteApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteApiCacheResult> deleteApiCacheAsync(DeleteApiCacheRequest deleteApiCacheRequest);
/**
* <p>
* Deletes an <code>ApiCache</code> object.
* </p>
*
* @param deleteApiCacheRequest
* Represents the input of a <code>DeleteApiCache</code> operation.
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteApiCache operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteApiCacheResult> deleteApiCacheAsync(DeleteApiCacheRequest deleteApiCacheRequest,
com.amazonaws.handlers.AsyncHandler<DeleteApiCacheRequest, DeleteApiCacheResult> asyncHandler);
/**
* <p>
* Deletes an API key.
* </p>
*
* @param deleteApiKeyRequest
* @return A Java Future containing the result of the DeleteApiKey operation returned by the service.
* @sample AWSAppSyncAsync.DeleteApiKey
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteApiKey" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteApiKeyResult> deleteApiKeyAsync(DeleteApiKeyRequest deleteApiKeyRequest);
/**
* <p>
* Deletes an API key.
* </p>
*
* @param deleteApiKeyRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteApiKey operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteApiKey
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteApiKey" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteApiKeyResult> deleteApiKeyAsync(DeleteApiKeyRequest deleteApiKeyRequest,
com.amazonaws.handlers.AsyncHandler<DeleteApiKeyRequest, DeleteApiKeyResult> asyncHandler);
/**
* <p>
* Deletes a <code>DataSource</code> object.
* </p>
*
* @param deleteDataSourceRequest
* @return A Java Future containing the result of the DeleteDataSource operation returned by the service.
* @sample AWSAppSyncAsync.DeleteDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteDataSourceResult> deleteDataSourceAsync(DeleteDataSourceRequest deleteDataSourceRequest);
/**
* <p>
* Deletes a <code>DataSource</code> object.
* </p>
*
* @param deleteDataSourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteDataSource operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteDataSourceResult> deleteDataSourceAsync(DeleteDataSourceRequest deleteDataSourceRequest,
com.amazonaws.handlers.AsyncHandler<DeleteDataSourceRequest, DeleteDataSourceResult> asyncHandler);
/**
* <p>
* Deletes a custom <code>DomainName</code> object.
* </p>
*
* @param deleteDomainNameRequest
* @return A Java Future containing the result of the DeleteDomainName operation returned by the service.
* @sample AWSAppSyncAsync.DeleteDomainName
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteDomainName" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteDomainNameResult> deleteDomainNameAsync(DeleteDomainNameRequest deleteDomainNameRequest);
/**
* <p>
* Deletes a custom <code>DomainName</code> object.
* </p>
*
* @param deleteDomainNameRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteDomainName operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteDomainName
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteDomainName" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteDomainNameResult> deleteDomainNameAsync(DeleteDomainNameRequest deleteDomainNameRequest,
com.amazonaws.handlers.AsyncHandler<DeleteDomainNameRequest, DeleteDomainNameResult> asyncHandler);
/**
* <p>
* Deletes a <code>Function</code>.
* </p>
*
* @param deleteFunctionRequest
* @return A Java Future containing the result of the DeleteFunction operation returned by the service.
* @sample AWSAppSyncAsync.DeleteFunction
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteFunction" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteFunctionResult> deleteFunctionAsync(DeleteFunctionRequest deleteFunctionRequest);
/**
* <p>
* Deletes a <code>Function</code>.
* </p>
*
* @param deleteFunctionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteFunction operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteFunction
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteFunction" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteFunctionResult> deleteFunctionAsync(DeleteFunctionRequest deleteFunctionRequest,
com.amazonaws.handlers.AsyncHandler<DeleteFunctionRequest, DeleteFunctionResult> asyncHandler);
/**
* <p>
* Deletes a <code>GraphqlApi</code> object.
* </p>
*
* @param deleteGraphqlApiRequest
* @return A Java Future containing the result of the DeleteGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsync.DeleteGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteGraphqlApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteGraphqlApiResult> deleteGraphqlApiAsync(DeleteGraphqlApiRequest deleteGraphqlApiRequest);
/**
* <p>
* Deletes a <code>GraphqlApi</code> object.
* </p>
*
* @param deleteGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteGraphqlApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteGraphqlApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteGraphqlApiResult> deleteGraphqlApiAsync(DeleteGraphqlApiRequest deleteGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<DeleteGraphqlApiRequest, DeleteGraphqlApiResult> asyncHandler);
/**
* <p>
* Deletes a <code>Resolver</code> object.
* </p>
*
* @param deleteResolverRequest
* @return A Java Future containing the result of the DeleteResolver operation returned by the service.
* @sample AWSAppSyncAsync.DeleteResolver
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteResolver" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteResolverResult> deleteResolverAsync(DeleteResolverRequest deleteResolverRequest);
/**
* <p>
* Deletes a <code>Resolver</code> object.
* </p>
*
* @param deleteResolverRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteResolver operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteResolver
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteResolver" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteResolverResult> deleteResolverAsync(DeleteResolverRequest deleteResolverRequest,
com.amazonaws.handlers.AsyncHandler<DeleteResolverRequest, DeleteResolverResult> asyncHandler);
/**
* <p>
* Deletes a <code>Type</code> object.
* </p>
*
* @param deleteTypeRequest
* @return A Java Future containing the result of the DeleteType operation returned by the service.
* @sample AWSAppSyncAsync.DeleteType
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteType" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteTypeResult> deleteTypeAsync(DeleteTypeRequest deleteTypeRequest);
/**
* <p>
* Deletes a <code>Type</code> object.
* </p>
*
* @param deleteTypeRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteType operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DeleteType
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DeleteType" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteTypeResult> deleteTypeAsync(DeleteTypeRequest deleteTypeRequest,
com.amazonaws.handlers.AsyncHandler<DeleteTypeRequest, DeleteTypeResult> asyncHandler);
/**
* <p>
* Removes an <code>ApiAssociation</code> object from a custom domain.
* </p>
*
* @param disassociateApiRequest
* @return A Java Future containing the result of the DisassociateApi operation returned by the service.
* @sample AWSAppSyncAsync.DisassociateApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DisassociateApiResult> disassociateApiAsync(DisassociateApiRequest disassociateApiRequest);
/**
* <p>
* Removes an <code>ApiAssociation</code> object from a custom domain.
* </p>
*
* @param disassociateApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DisassociateApi operation returned by the service.
* @sample AWSAppSyncAsyncHandler.DisassociateApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateApi" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DisassociateApiResult> disassociateApiAsync(DisassociateApiRequest disassociateApiRequest,
com.amazonaws.handlers.AsyncHandler<DisassociateApiRequest, DisassociateApiResult> asyncHandler);
/**
* <p>
* Deletes an association between a Merged API and source API using the source API's identifier and the association
* ID.
* </p>
*
* @param disassociateMergedGraphqlApiRequest
* @return A Java Future containing the result of the DisassociateMergedGraphqlApi operation returned by the
* service.
* @sample AWSAppSyncAsync.DisassociateMergedGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateMergedGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DisassociateMergedGraphqlApiResult> disassociateMergedGraphqlApiAsync(
DisassociateMergedGraphqlApiRequest disassociateMergedGraphqlApiRequest);
/**
* <p>
* Deletes an association between a Merged API and source API using the source API's identifier and the association
* ID.
* </p>
*
* @param disassociateMergedGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DisassociateMergedGraphqlApi operation returned by the
* service.
* @sample AWSAppSyncAsyncHandler.DisassociateMergedGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateMergedGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DisassociateMergedGraphqlApiResult> disassociateMergedGraphqlApiAsync(
DisassociateMergedGraphqlApiRequest disassociateMergedGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<DisassociateMergedGraphqlApiRequest, DisassociateMergedGraphqlApiResult> asyncHandler);
/**
* <p>
* Deletes an association between a Merged API and source API using the Merged API's identifier and the association
* ID.
* </p>
*
* @param disassociateSourceGraphqlApiRequest
* @return A Java Future containing the result of the DisassociateSourceGraphqlApi operation returned by the
* service.
* @sample AWSAppSyncAsync.DisassociateSourceGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateSourceGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DisassociateSourceGraphqlApiResult> disassociateSourceGraphqlApiAsync(
DisassociateSourceGraphqlApiRequest disassociateSourceGraphqlApiRequest);
/**
* <p>
* Deletes an association between a Merged API and source API using the Merged API's identifier and the association
* ID.
* </p>
*
* @param disassociateSourceGraphqlApiRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DisassociateSourceGraphqlApi operation returned by the
* service.
* @sample AWSAppSyncAsyncHandler.DisassociateSourceGraphqlApi
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/DisassociateSourceGraphqlApi"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DisassociateSourceGraphqlApiResult> disassociateSourceGraphqlApiAsync(
DisassociateSourceGraphqlApiRequest disassociateSourceGraphqlApiRequest,
com.amazonaws.handlers.AsyncHandler<DisassociateSourceGraphqlApiRequest, DisassociateSourceGraphqlApiResult> asyncHandler);
/**
* <p>
* Evaluates the given code and returns the response. The code definition requirements depend on the specified
* runtime. For <code>APPSYNC_JS</code> runtimes, the code defines the request and response functions. The request
* function takes the incoming request after a GraphQL operation is parsed and converts it into a request
* configuration for the selected data source operation. The response function interprets responses from the data
* source and maps it to the shape of the GraphQL field output type.
* </p>
*
* @param evaluateCodeRequest
* @return A Java Future containing the result of the EvaluateCode operation returned by the service.
* @sample AWSAppSyncAsync.EvaluateCode
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/EvaluateCode" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<EvaluateCodeResult> evaluateCodeAsync(EvaluateCodeRequest evaluateCodeRequest);
/**
* <p>
* Evaluates the given code and returns the response. The code definition requirements depend on the specified
* runtime. For <code>APPSYNC_JS</code> runtimes, the code defines the request and response functions. The request
* function takes the incoming request after a GraphQL operation is parsed and converts it into a request
* configuration for the selected data source operation. The response function interprets responses from the data
* source and maps it to the shape of the GraphQL field output type.
* </p>
*
* @param evaluateCodeRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the EvaluateCode operation returned by the service.
* @sample AWSAppSyncAsyncHandler.EvaluateCode
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/EvaluateCode" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<EvaluateCodeResult> evaluateCodeAsync(EvaluateCodeRequest evaluateCodeRequest,
com.amazonaws.handlers.AsyncHandler<EvaluateCodeRequest, EvaluateCodeResult> asyncHandler);
/**
* <p>
* Evaluates a given template and returns the response. The mapping template can be a request or response template.
* </p>
* <p>
* Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request
* configuration for the selected data source operation. Response templates interpret responses from the data source
* and map it to the shape of the GraphQL field output type.
* </p>
* <p>
* Mapping templates are written in the Apache Velocity Template Language (VTL).
* </p>
*
* @param evaluateMappingTemplateRequest
* @return A Java Future containing the result of the EvaluateMappingTemplate operation returned by the service.
* @sample AWSAppSyncAsync.EvaluateMappingTemplate
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/EvaluateMappingTemplate"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<EvaluateMappingTemplateResult> evaluateMappingTemplateAsync(EvaluateMappingTemplateRequest evaluateMappingTemplateRequest);
/**
* <p>
* Evaluates a given template and returns the response. The mapping template can be a request or response template.
* </p>
* <p>
* Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request
* configuration for the selected data source operation. Response templates interpret responses from the data source
* and map it to the shape of the GraphQL field output type.
* </p>
* <p>
* Mapping templates are written in the Apache Velocity Template Language (VTL).
* </p>
*
* @param evaluateMappingTemplateRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the EvaluateMappingTemplate operation returned by the service.
* @sample AWSAppSyncAsyncHandler.EvaluateMappingTemplate
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/EvaluateMappingTemplate"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<EvaluateMappingTemplateResult> evaluateMappingTemplateAsync(EvaluateMappingTemplateRequest evaluateMappingTemplateRequest,
com.amazonaws.handlers.AsyncHandler<EvaluateMappingTemplateRequest, EvaluateMappingTemplateResult> asyncHandler);
/**
* <p>
* Flushes an <code>ApiCache</code> object.
* </p>
*
* @param flushApiCacheRequest
* Represents the input of a <code>FlushApiCache</code> operation.
* @return A Java Future containing the result of the FlushApiCache operation returned by the service.
* @sample AWSAppSyncAsync.FlushApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/FlushApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<FlushApiCacheResult> flushApiCacheAsync(FlushApiCacheRequest flushApiCacheRequest);
/**
* <p>
* Flushes an <code>ApiCache</code> object.
* </p>
*
* @param flushApiCacheRequest
* Represents the input of a <code>FlushApiCache</code> operation.
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the FlushApiCache operation returned by the service.
* @sample AWSAppSyncAsyncHandler.FlushApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/FlushApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<FlushApiCacheResult> flushApiCacheAsync(FlushApiCacheRequest flushApiCacheRequest,
com.amazonaws.handlers.AsyncHandler<FlushApiCacheRequest, FlushApiCacheResult> asyncHandler);
/**
* <p>
* Retrieves an <code>ApiAssociation</code> object.
* </p>
*
* @param getApiAssociationRequest
* @return A Java Future containing the result of the GetApiAssociation operation returned by the service.
* @sample AWSAppSyncAsync.GetApiAssociation
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiAssociation" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetApiAssociationResult> getApiAssociationAsync(GetApiAssociationRequest getApiAssociationRequest);
/**
* <p>
* Retrieves an <code>ApiAssociation</code> object.
* </p>
*
* @param getApiAssociationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetApiAssociation operation returned by the service.
* @sample AWSAppSyncAsyncHandler.GetApiAssociation
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiAssociation" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetApiAssociationResult> getApiAssociationAsync(GetApiAssociationRequest getApiAssociationRequest,
com.amazonaws.handlers.AsyncHandler<GetApiAssociationRequest, GetApiAssociationResult> asyncHandler);
/**
* <p>
* Retrieves an <code>ApiCache</code> object.
* </p>
*
* @param getApiCacheRequest
* Represents the input of a <code>GetApiCache</code> operation.
* @return A Java Future containing the result of the GetApiCache operation returned by the service.
* @sample AWSAppSyncAsync.GetApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetApiCacheResult> getApiCacheAsync(GetApiCacheRequest getApiCacheRequest);
/**
* <p>
* Retrieves an <code>ApiCache</code> object.
* </p>
*
* @param getApiCacheRequest
* Represents the input of a <code>GetApiCache</code> operation.
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetApiCache operation returned by the service.
* @sample AWSAppSyncAsyncHandler.GetApiCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCache" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetApiCacheResult> getApiCacheAsync(GetApiCacheRequest getApiCacheRequest,
com.amazonaws.handlers.AsyncHandler<GetApiCacheRequest, GetApiCacheResult> asyncHandler);
/**
* <p>
* Retrieves a <code>DataSource</code> object.
* </p>
*
* @param getDataSourceRequest
* @return A Java Future containing the result of the GetDataSource operation returned by the service.
* @sample AWSAppSyncAsync.GetDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetDataSourceResult> getDataSourceAsync(GetDataSourceRequest getDataSourceRequest);
/**
* <p>
* Retrieves a <code>DataSource</code> object.
* </p>
*
* @param getDataSourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetDataSource operation returned by the service.
* @sample AWSAppSyncAsyncHandler.GetDataSource
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetDataSource" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetDataSourceResult> getDataSourceAsync(GetDataSourceRequest getDataSourceRequest,
com.amazonaws.handlers.AsyncHandler<GetDataSourceRequest, GetDataSourceResult> asyncHandler);
/**
* <p>
* Retrieves the record of an existing introspection. If the retrieval is successful, the result of the
* instrospection will also be returned. If the retrieval fails the operation, an error message will be returned
* instead.
* </p>
*
* @param getDataSourceIntrospectionRequest
* @return A Java Future containing the result of the GetDataSourceIntrospection operation returned by the service.
* @sample AWSAppSyncAsync.GetDataSourceIntrospection
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetDataSourceIntrospection"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetDataSourceIntrospectionResult> getDataSourceIntrospectionAsync(
GetDataSourceIntrospectionRequest getDataSourceIntrospectionRequest);
/**
* <p>
* Retrieves the record of an existing introspection. If the retrieval is successful, the result of the
* instrospection will also be returned. If the retrieval fails the operation, an error message will be returned
* instead.
* </p>
*
* @param getDataSourceIntrospectionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetDataSourceIntrospection operation returned by the service.
* @sample AWSAppSyncAsyncHandler.GetDataSourceIntrospection
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetDataSourceIntrospection"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetDataSourceIntrospectionResult> getDataSourceIntrospectionAsync(
GetDataSourceIntrospectionRequest getDataSourceIntrospectionRequest,
com.amazonaws.handlers.AsyncHandler<GetDataSourceIntrospectionRequest, GetDataSourceIntrospectionResult> asyncHandler);