-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathAWSAmplifyBackendAsync.java
1048 lines (982 loc) · 52.7 KB
/
AWSAmplifyBackendAsync.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.amplifybackend;
import javax.annotation.Generated;
import com.amazonaws.services.amplifybackend.model.*;
/**
* Interface for accessing AmplifyBackend 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.amplifybackend.AbstractAWSAmplifyBackendAsync} instead.
* </p>
* <p>
* <p>
* AWS Amplify Admin API
* </p>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSAmplifyBackendAsync extends AWSAmplifyBackend {
/**
* <p>
* This operation clones an existing backend.
* </p>
*
* @param cloneBackendRequest
* The request body for CloneBackend.
* @return A Java Future containing the result of the CloneBackend operation returned by the service.
* @sample AWSAmplifyBackendAsync.CloneBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CloneBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CloneBackendResult> cloneBackendAsync(CloneBackendRequest cloneBackendRequest);
/**
* <p>
* This operation clones an existing backend.
* </p>
*
* @param cloneBackendRequest
* The request body for CloneBackend.
* @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 CloneBackend operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CloneBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CloneBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CloneBackendResult> cloneBackendAsync(CloneBackendRequest cloneBackendRequest,
com.amazonaws.handlers.AsyncHandler<CloneBackendRequest, CloneBackendResult> asyncHandler);
/**
* <p>
* This operation creates a backend for an Amplify app. Backends are automatically created at the time of app
* creation.
* </p>
*
* @param createBackendRequest
* The request body for CreateBackend.
* @return A Java Future containing the result of the CreateBackend operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendResult> createBackendAsync(CreateBackendRequest createBackendRequest);
/**
* <p>
* This operation creates a backend for an Amplify app. Backends are automatically created at the time of app
* creation.
* </p>
*
* @param createBackendRequest
* The request body for CreateBackend.
* @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 CreateBackend operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendResult> createBackendAsync(CreateBackendRequest createBackendRequest,
com.amazonaws.handlers.AsyncHandler<CreateBackendRequest, CreateBackendResult> asyncHandler);
/**
* <p>
* Creates a new backend API resource.
* </p>
*
* @param createBackendAPIRequest
* The request body for CreateBackendAPI.
* @return A Java Future containing the result of the CreateBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendAPIResult> createBackendAPIAsync(CreateBackendAPIRequest createBackendAPIRequest);
/**
* <p>
* Creates a new backend API resource.
* </p>
*
* @param createBackendAPIRequest
* The request body for CreateBackendAPI.
* @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 CreateBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendAPIResult> createBackendAPIAsync(CreateBackendAPIRequest createBackendAPIRequest,
com.amazonaws.handlers.AsyncHandler<CreateBackendAPIRequest, CreateBackendAPIResult> asyncHandler);
/**
* <p>
* Creates a new backend authentication resource.
* </p>
*
* @param createBackendAuthRequest
* The request body for CreateBackendAuth.
* @return A Java Future containing the result of the CreateBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendAuthResult> createBackendAuthAsync(CreateBackendAuthRequest createBackendAuthRequest);
/**
* <p>
* Creates a new backend authentication resource.
* </p>
*
* @param createBackendAuthRequest
* The request body for CreateBackendAuth.
* @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 CreateBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendAuthResult> createBackendAuthAsync(CreateBackendAuthRequest createBackendAuthRequest,
com.amazonaws.handlers.AsyncHandler<CreateBackendAuthRequest, CreateBackendAuthResult> asyncHandler);
/**
* <p>
* Creates a config object for a backend.
* </p>
*
* @param createBackendConfigRequest
* The request body for CreateBackendConfig.
* @return A Java Future containing the result of the CreateBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendConfigResult> createBackendConfigAsync(CreateBackendConfigRequest createBackendConfigRequest);
/**
* <p>
* Creates a config object for a backend.
* </p>
*
* @param createBackendConfigRequest
* The request body for CreateBackendConfig.
* @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 CreateBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendConfigResult> createBackendConfigAsync(CreateBackendConfigRequest createBackendConfigRequest,
com.amazonaws.handlers.AsyncHandler<CreateBackendConfigRequest, CreateBackendConfigResult> asyncHandler);
/**
* <p>
* Creates a backend storage resource.
* </p>
*
* @param createBackendStorageRequest
* The request body for CreateBackendStorage.
* @return A Java Future containing the result of the CreateBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendStorageResult> createBackendStorageAsync(CreateBackendStorageRequest createBackendStorageRequest);
/**
* <p>
* Creates a backend storage resource.
* </p>
*
* @param createBackendStorageRequest
* The request body for CreateBackendStorage.
* @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 CreateBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateBackendStorageResult> createBackendStorageAsync(CreateBackendStorageRequest createBackendStorageRequest,
com.amazonaws.handlers.AsyncHandler<CreateBackendStorageRequest, CreateBackendStorageResult> asyncHandler);
/**
* <p>
* Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.
* </p>
*
* @param createTokenRequest
* @return A Java Future containing the result of the CreateToken operation returned by the service.
* @sample AWSAmplifyBackendAsync.CreateToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateTokenResult> createTokenAsync(CreateTokenRequest createTokenRequest);
/**
* <p>
* Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.
* </p>
*
* @param createTokenRequest
* @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 CreateToken operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.CreateToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/CreateToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateTokenResult> createTokenAsync(CreateTokenRequest createTokenRequest,
com.amazonaws.handlers.AsyncHandler<CreateTokenRequest, CreateTokenResult> asyncHandler);
/**
* <p>
* Removes an existing environment from your Amplify project.
* </p>
*
* @param deleteBackendRequest
* @return A Java Future containing the result of the DeleteBackend operation returned by the service.
* @sample AWSAmplifyBackendAsync.DeleteBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendResult> deleteBackendAsync(DeleteBackendRequest deleteBackendRequest);
/**
* <p>
* Removes an existing environment from your Amplify project.
* </p>
*
* @param deleteBackendRequest
* @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 DeleteBackend operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.DeleteBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackend" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendResult> deleteBackendAsync(DeleteBackendRequest deleteBackendRequest,
com.amazonaws.handlers.AsyncHandler<DeleteBackendRequest, DeleteBackendResult> asyncHandler);
/**
* <p>
* Deletes an existing backend API resource.
* </p>
*
* @param deleteBackendAPIRequest
* The request body for DeleteBackendAPI.
* @return A Java Future containing the result of the DeleteBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsync.DeleteBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendAPIResult> deleteBackendAPIAsync(DeleteBackendAPIRequest deleteBackendAPIRequest);
/**
* <p>
* Deletes an existing backend API resource.
* </p>
*
* @param deleteBackendAPIRequest
* The request body for DeleteBackendAPI.
* @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 DeleteBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.DeleteBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendAPIResult> deleteBackendAPIAsync(DeleteBackendAPIRequest deleteBackendAPIRequest,
com.amazonaws.handlers.AsyncHandler<DeleteBackendAPIRequest, DeleteBackendAPIResult> asyncHandler);
/**
* <p>
* Deletes an existing backend authentication resource.
* </p>
*
* @param deleteBackendAuthRequest
* The request body for DeleteBackendAuth.
* @return A Java Future containing the result of the DeleteBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsync.DeleteBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendAuthResult> deleteBackendAuthAsync(DeleteBackendAuthRequest deleteBackendAuthRequest);
/**
* <p>
* Deletes an existing backend authentication resource.
* </p>
*
* @param deleteBackendAuthRequest
* The request body for DeleteBackendAuth.
* @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 DeleteBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.DeleteBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendAuthResult> deleteBackendAuthAsync(DeleteBackendAuthRequest deleteBackendAuthRequest,
com.amazonaws.handlers.AsyncHandler<DeleteBackendAuthRequest, DeleteBackendAuthResult> asyncHandler);
/**
* <p>
* Removes the specified backend storage resource.
* </p>
*
* @param deleteBackendStorageRequest
* The request body for DeleteBackendStorage.
* @return A Java Future containing the result of the DeleteBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsync.DeleteBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendStorageResult> deleteBackendStorageAsync(DeleteBackendStorageRequest deleteBackendStorageRequest);
/**
* <p>
* Removes the specified backend storage resource.
* </p>
*
* @param deleteBackendStorageRequest
* The request body for DeleteBackendStorage.
* @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 DeleteBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.DeleteBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteBackendStorageResult> deleteBackendStorageAsync(DeleteBackendStorageRequest deleteBackendStorageRequest,
com.amazonaws.handlers.AsyncHandler<DeleteBackendStorageRequest, DeleteBackendStorageResult> asyncHandler);
/**
* <p>
* Deletes the challenge token based on the given appId and sessionId.
* </p>
*
* @param deleteTokenRequest
* @return A Java Future containing the result of the DeleteToken operation returned by the service.
* @sample AWSAmplifyBackendAsync.DeleteToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteTokenResult> deleteTokenAsync(DeleteTokenRequest deleteTokenRequest);
/**
* <p>
* Deletes the challenge token based on the given appId and sessionId.
* </p>
*
* @param deleteTokenRequest
* @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 DeleteToken operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.DeleteToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/DeleteToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteTokenResult> deleteTokenAsync(DeleteTokenRequest deleteTokenRequest,
com.amazonaws.handlers.AsyncHandler<DeleteTokenRequest, DeleteTokenResult> asyncHandler);
/**
* <p>
* Generates a model schema for an existing backend API resource.
* </p>
*
* @param generateBackendAPIModelsRequest
* The request body for GenerateBackendAPIModels.
* @return A Java Future containing the result of the GenerateBackendAPIModels operation returned by the service.
* @sample AWSAmplifyBackendAsync.GenerateBackendAPIModels
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GenerateBackendAPIModels"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GenerateBackendAPIModelsResult> generateBackendAPIModelsAsync(GenerateBackendAPIModelsRequest generateBackendAPIModelsRequest);
/**
* <p>
* Generates a model schema for an existing backend API resource.
* </p>
*
* @param generateBackendAPIModelsRequest
* The request body for GenerateBackendAPIModels.
* @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 GenerateBackendAPIModels operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GenerateBackendAPIModels
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GenerateBackendAPIModels"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GenerateBackendAPIModelsResult> generateBackendAPIModelsAsync(GenerateBackendAPIModelsRequest generateBackendAPIModelsRequest,
com.amazonaws.handlers.AsyncHandler<GenerateBackendAPIModelsRequest, GenerateBackendAPIModelsResult> asyncHandler);
/**
* <p>
* Provides project-level details for your Amplify UI project.
* </p>
*
* @param getBackendRequest
* The request body for GetBackend.
* @return A Java Future containing the result of the GetBackend operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackend" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetBackendResult> getBackendAsync(GetBackendRequest getBackendRequest);
/**
* <p>
* Provides project-level details for your Amplify UI project.
* </p>
*
* @param getBackendRequest
* The request body for GetBackend.
* @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 GetBackend operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackend
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackend" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetBackendResult> getBackendAsync(GetBackendRequest getBackendRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendRequest, GetBackendResult> asyncHandler);
/**
* <p>
* Gets the details for a backend API.
* </p>
*
* @param getBackendAPIRequest
* The request body for GetBackendAPI.
* @return A Java Future containing the result of the GetBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAPI" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAPIResult> getBackendAPIAsync(GetBackendAPIRequest getBackendAPIRequest);
/**
* <p>
* Gets the details for a backend API.
* </p>
*
* @param getBackendAPIRequest
* The request body for GetBackendAPI.
* @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 GetBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAPI" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAPIResult> getBackendAPIAsync(GetBackendAPIRequest getBackendAPIRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendAPIRequest, GetBackendAPIResult> asyncHandler);
/**
* <p>
* Gets a model introspection schema for an existing backend API resource.
* </p>
*
* @param getBackendAPIModelsRequest
* The request body for GetBackendAPIModels.
* @return A Java Future containing the result of the GetBackendAPIModels operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackendAPIModels
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAPIModels"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAPIModelsResult> getBackendAPIModelsAsync(GetBackendAPIModelsRequest getBackendAPIModelsRequest);
/**
* <p>
* Gets a model introspection schema for an existing backend API resource.
* </p>
*
* @param getBackendAPIModelsRequest
* The request body for GetBackendAPIModels.
* @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 GetBackendAPIModels operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackendAPIModels
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAPIModels"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAPIModelsResult> getBackendAPIModelsAsync(GetBackendAPIModelsRequest getBackendAPIModelsRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendAPIModelsRequest, GetBackendAPIModelsResult> asyncHandler);
/**
* <p>
* Gets a backend auth details.
* </p>
*
* @param getBackendAuthRequest
* The request body for GetBackendAuth.
* @return A Java Future containing the result of the GetBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAuth" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAuthResult> getBackendAuthAsync(GetBackendAuthRequest getBackendAuthRequest);
/**
* <p>
* Gets a backend auth details.
* </p>
*
* @param getBackendAuthRequest
* The request body for GetBackendAuth.
* @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 GetBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendAuth" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendAuthResult> getBackendAuthAsync(GetBackendAuthRequest getBackendAuthRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendAuthRequest, GetBackendAuthResult> asyncHandler);
/**
* <p>
* Returns information about a specific job.
* </p>
*
* @param getBackendJobRequest
* @return A Java Future containing the result of the GetBackendJob operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackendJob
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendJob" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendJobResult> getBackendJobAsync(GetBackendJobRequest getBackendJobRequest);
/**
* <p>
* Returns information about a specific job.
* </p>
*
* @param getBackendJobRequest
* @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 GetBackendJob operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackendJob
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendJob" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<GetBackendJobResult> getBackendJobAsync(GetBackendJobRequest getBackendJobRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendJobRequest, GetBackendJobResult> asyncHandler);
/**
* <p>
* Gets details for a backend storage resource.
* </p>
*
* @param getBackendStorageRequest
* The request body for GetBackendStorage.
* @return A Java Future containing the result of the GetBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetBackendStorageResult> getBackendStorageAsync(GetBackendStorageRequest getBackendStorageRequest);
/**
* <p>
* Gets details for a backend storage resource.
* </p>
*
* @param getBackendStorageRequest
* The request body for GetBackendStorage.
* @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 GetBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<GetBackendStorageResult> getBackendStorageAsync(GetBackendStorageRequest getBackendStorageRequest,
com.amazonaws.handlers.AsyncHandler<GetBackendStorageRequest, GetBackendStorageResult> asyncHandler);
/**
* <p>
* Gets the challenge token based on the given appId and sessionId.
* </p>
*
* @param getTokenRequest
* @return A Java Future containing the result of the GetToken operation returned by the service.
* @sample AWSAmplifyBackendAsync.GetToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetTokenResult> getTokenAsync(GetTokenRequest getTokenRequest);
/**
* <p>
* Gets the challenge token based on the given appId and sessionId.
* </p>
*
* @param getTokenRequest
* @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 GetToken operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.GetToken
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetToken" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<GetTokenResult> getTokenAsync(GetTokenRequest getTokenRequest,
com.amazonaws.handlers.AsyncHandler<GetTokenRequest, GetTokenResult> asyncHandler);
/**
* <p>
* Imports an existing backend authentication resource.
* </p>
*
* @param importBackendAuthRequest
* The request body for ImportBackendAuth.
* @return A Java Future containing the result of the ImportBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsync.ImportBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ImportBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<ImportBackendAuthResult> importBackendAuthAsync(ImportBackendAuthRequest importBackendAuthRequest);
/**
* <p>
* Imports an existing backend authentication resource.
* </p>
*
* @param importBackendAuthRequest
* The request body for ImportBackendAuth.
* @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 ImportBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.ImportBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ImportBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<ImportBackendAuthResult> importBackendAuthAsync(ImportBackendAuthRequest importBackendAuthRequest,
com.amazonaws.handlers.AsyncHandler<ImportBackendAuthRequest, ImportBackendAuthResult> asyncHandler);
/**
* <p>
* Imports an existing backend storage resource.
* </p>
*
* @param importBackendStorageRequest
* The request body for ImportBackendStorage.
* @return A Java Future containing the result of the ImportBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsync.ImportBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ImportBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<ImportBackendStorageResult> importBackendStorageAsync(ImportBackendStorageRequest importBackendStorageRequest);
/**
* <p>
* Imports an existing backend storage resource.
* </p>
*
* @param importBackendStorageRequest
* The request body for ImportBackendStorage.
* @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 ImportBackendStorage operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.ImportBackendStorage
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ImportBackendStorage"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<ImportBackendStorageResult> importBackendStorageAsync(ImportBackendStorageRequest importBackendStorageRequest,
com.amazonaws.handlers.AsyncHandler<ImportBackendStorageRequest, ImportBackendStorageResult> asyncHandler);
/**
* <p>
* Lists the jobs for the backend of an Amplify app.
* </p>
*
* @param listBackendJobsRequest
* The request body for ListBackendJobs.
* @return A Java Future containing the result of the ListBackendJobs operation returned by the service.
* @sample AWSAmplifyBackendAsync.ListBackendJobs
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ListBackendJobs" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<ListBackendJobsResult> listBackendJobsAsync(ListBackendJobsRequest listBackendJobsRequest);
/**
* <p>
* Lists the jobs for the backend of an Amplify app.
* </p>
*
* @param listBackendJobsRequest
* The request body for ListBackendJobs.
* @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 ListBackendJobs operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.ListBackendJobs
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ListBackendJobs" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<ListBackendJobsResult> listBackendJobsAsync(ListBackendJobsRequest listBackendJobsRequest,
com.amazonaws.handlers.AsyncHandler<ListBackendJobsRequest, ListBackendJobsResult> asyncHandler);
/**
* <p>
* The list of S3 buckets in your account.
* </p>
*
* @param listS3BucketsRequest
* The request body for S3Buckets.
* @return A Java Future containing the result of the ListS3Buckets operation returned by the service.
* @sample AWSAmplifyBackendAsync.ListS3Buckets
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ListS3Buckets" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<ListS3BucketsResult> listS3BucketsAsync(ListS3BucketsRequest listS3BucketsRequest);
/**
* <p>
* The list of S3 buckets in your account.
* </p>
*
* @param listS3BucketsRequest
* The request body for S3Buckets.
* @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 ListS3Buckets operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.ListS3Buckets
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/ListS3Buckets" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<ListS3BucketsResult> listS3BucketsAsync(ListS3BucketsRequest listS3BucketsRequest,
com.amazonaws.handlers.AsyncHandler<ListS3BucketsRequest, ListS3BucketsResult> asyncHandler);
/**
* <p>
* Removes all backend environments from your Amplify project.
* </p>
*
* @param removeAllBackendsRequest
* The request body for RemoveAllBackends.
* @return A Java Future containing the result of the RemoveAllBackends operation returned by the service.
* @sample AWSAmplifyBackendAsync.RemoveAllBackends
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/RemoveAllBackends"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<RemoveAllBackendsResult> removeAllBackendsAsync(RemoveAllBackendsRequest removeAllBackendsRequest);
/**
* <p>
* Removes all backend environments from your Amplify project.
* </p>
*
* @param removeAllBackendsRequest
* The request body for RemoveAllBackends.
* @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 RemoveAllBackends operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.RemoveAllBackends
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/RemoveAllBackends"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<RemoveAllBackendsResult> removeAllBackendsAsync(RemoveAllBackendsRequest removeAllBackendsRequest,
com.amazonaws.handlers.AsyncHandler<RemoveAllBackendsRequest, RemoveAllBackendsResult> asyncHandler);
/**
* <p>
* Removes the AWS resources required to access the Amplify Admin UI.
* </p>
*
* @param removeBackendConfigRequest
* @return A Java Future containing the result of the RemoveBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsync.RemoveBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/RemoveBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<RemoveBackendConfigResult> removeBackendConfigAsync(RemoveBackendConfigRequest removeBackendConfigRequest);
/**
* <p>
* Removes the AWS resources required to access the Amplify Admin UI.
* </p>
*
* @param removeBackendConfigRequest
* @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 RemoveBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.RemoveBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/RemoveBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<RemoveBackendConfigResult> removeBackendConfigAsync(RemoveBackendConfigRequest removeBackendConfigRequest,
com.amazonaws.handlers.AsyncHandler<RemoveBackendConfigRequest, RemoveBackendConfigResult> asyncHandler);
/**
* <p>
* Updates an existing backend API resource.
* </p>
*
* @param updateBackendAPIRequest
* The request body for UpdateBackendAPI.
* @return A Java Future containing the result of the UpdateBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsync.UpdateBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendAPIResult> updateBackendAPIAsync(UpdateBackendAPIRequest updateBackendAPIRequest);
/**
* <p>
* Updates an existing backend API resource.
* </p>
*
* @param updateBackendAPIRequest
* The request body for UpdateBackendAPI.
* @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 UpdateBackendAPI operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.UpdateBackendAPI
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendAPI"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendAPIResult> updateBackendAPIAsync(UpdateBackendAPIRequest updateBackendAPIRequest,
com.amazonaws.handlers.AsyncHandler<UpdateBackendAPIRequest, UpdateBackendAPIResult> asyncHandler);
/**
* <p>
* Updates an existing backend authentication resource.
* </p>
*
* @param updateBackendAuthRequest
* The request body for UpdateBackendAuth.
* @return A Java Future containing the result of the UpdateBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsync.UpdateBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendAuthResult> updateBackendAuthAsync(UpdateBackendAuthRequest updateBackendAuthRequest);
/**
* <p>
* Updates an existing backend authentication resource.
* </p>
*
* @param updateBackendAuthRequest
* The request body for UpdateBackendAuth.
* @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 UpdateBackendAuth operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.UpdateBackendAuth
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendAuth"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendAuthResult> updateBackendAuthAsync(UpdateBackendAuthRequest updateBackendAuthRequest,
com.amazonaws.handlers.AsyncHandler<UpdateBackendAuthRequest, UpdateBackendAuthResult> asyncHandler);
/**
* <p>
* Updates the AWS resources required to access the Amplify Admin UI.
* </p>
*
* @param updateBackendConfigRequest
* The request body for UpdateBackendConfig.
* @return A Java Future containing the result of the UpdateBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsync.UpdateBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendConfigResult> updateBackendConfigAsync(UpdateBackendConfigRequest updateBackendConfigRequest);
/**
* <p>
* Updates the AWS resources required to access the Amplify Admin UI.
* </p>
*
* @param updateBackendConfigRequest
* The request body for UpdateBackendConfig.
* @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 UpdateBackendConfig operation returned by the service.
* @sample AWSAmplifyBackendAsyncHandler.UpdateBackendConfig
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendConfig"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendConfigResult> updateBackendConfigAsync(UpdateBackendConfigRequest updateBackendConfigRequest,
com.amazonaws.handlers.AsyncHandler<UpdateBackendConfigRequest, UpdateBackendConfigResult> asyncHandler);
/**
* <p>
* Updates a specific job.
* </p>
*
* @param updateBackendJobRequest
* The request body for GetBackendJob.
* @return A Java Future containing the result of the UpdateBackendJob operation returned by the service.
* @sample AWSAmplifyBackendAsync.UpdateBackendJob
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/UpdateBackendJob"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<UpdateBackendJobResult> updateBackendJobAsync(UpdateBackendJobRequest updateBackendJobRequest);
/**
* <p>
* Updates a specific job.
* </p>
*