-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathAWSAuditManagerAsync.java
2734 lines (2606 loc) · 142 KB
/
AWSAuditManagerAsync.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.auditmanager;
import javax.annotation.Generated;
import com.amazonaws.services.auditmanager.model.*;
/**
* Interface for accessing AWS Audit Manager 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.auditmanager.AbstractAWSAuditManagerAsync} instead.
* </p>
* <p>
* <p>
* Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the
* Audit Manager API operations, data types, and errors.
* </p>
* <p>
* Audit Manager is a service that provides automated evidence collection so that you can continually audit your Amazon
* Web Services usage. You can use it to assess the effectiveness of your controls, manage risk, and simplify
* compliance.
* </p>
* <p>
* Audit Manager provides prebuilt frameworks that structure and automate assessments for a given compliance standard.
* Frameworks include a prebuilt collection of controls with descriptions and testing procedures. These controls are
* grouped according to the requirements of the specified compliance standard or regulation. You can also customize
* frameworks and controls to support internal audits with specific requirements.
* </p>
* <p>
* Use the following links to get started with the Audit Manager API:
* </p>
* <ul>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Operations.html">Actions</a>: An
* alphabetical list of all Audit Manager API operations.
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Types.html">Data types</a>: An
* alphabetical list of all Audit Manager data types.
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonParameters.html">Common parameters</a>:
* Parameters that all operations can use.
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonErrors.html">Common errors</a>: Client
* and server errors that all operations can return.
* </p>
* </li>
* </ul>
* <p>
* If you're new to Audit Manager, we recommend that you review the <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/what-is.html"> Audit Manager User Guide</a>.
* </p>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSAuditManagerAsync extends AWSAuditManager {
/**
* <p>
* Associates an evidence folder to an assessment report in an Audit Manager assessment.
* </p>
*
* @param associateAssessmentReportEvidenceFolderRequest
* @return A Java Future containing the result of the AssociateAssessmentReportEvidenceFolder operation returned by
* the service.
* @sample AWSAuditManagerAsync.AssociateAssessmentReportEvidenceFolder
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/AssociateAssessmentReportEvidenceFolder"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateAssessmentReportEvidenceFolderResult> associateAssessmentReportEvidenceFolderAsync(
AssociateAssessmentReportEvidenceFolderRequest associateAssessmentReportEvidenceFolderRequest);
/**
* <p>
* Associates an evidence folder to an assessment report in an Audit Manager assessment.
* </p>
*
* @param associateAssessmentReportEvidenceFolderRequest
* @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 AssociateAssessmentReportEvidenceFolder operation returned by
* the service.
* @sample AWSAuditManagerAsyncHandler.AssociateAssessmentReportEvidenceFolder
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/AssociateAssessmentReportEvidenceFolder"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<AssociateAssessmentReportEvidenceFolderResult> associateAssessmentReportEvidenceFolderAsync(
AssociateAssessmentReportEvidenceFolderRequest associateAssessmentReportEvidenceFolderRequest,
com.amazonaws.handlers.AsyncHandler<AssociateAssessmentReportEvidenceFolderRequest, AssociateAssessmentReportEvidenceFolderResult> asyncHandler);
/**
* <p>
* Associates a list of evidence to an assessment report in an Audit Manager assessment.
* </p>
*
* @param batchAssociateAssessmentReportEvidenceRequest
* @return A Java Future containing the result of the BatchAssociateAssessmentReportEvidence operation returned by
* the service.
* @sample AWSAuditManagerAsync.BatchAssociateAssessmentReportEvidence
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchAssociateAssessmentReportEvidence"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchAssociateAssessmentReportEvidenceResult> batchAssociateAssessmentReportEvidenceAsync(
BatchAssociateAssessmentReportEvidenceRequest batchAssociateAssessmentReportEvidenceRequest);
/**
* <p>
* Associates a list of evidence to an assessment report in an Audit Manager assessment.
* </p>
*
* @param batchAssociateAssessmentReportEvidenceRequest
* @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 BatchAssociateAssessmentReportEvidence operation returned by
* the service.
* @sample AWSAuditManagerAsyncHandler.BatchAssociateAssessmentReportEvidence
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchAssociateAssessmentReportEvidence"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchAssociateAssessmentReportEvidenceResult> batchAssociateAssessmentReportEvidenceAsync(
BatchAssociateAssessmentReportEvidenceRequest batchAssociateAssessmentReportEvidenceRequest,
com.amazonaws.handlers.AsyncHandler<BatchAssociateAssessmentReportEvidenceRequest, BatchAssociateAssessmentReportEvidenceResult> asyncHandler);
/**
* <p>
* Creates a batch of delegations for an assessment in Audit Manager.
* </p>
*
* @param batchCreateDelegationByAssessmentRequest
* @return A Java Future containing the result of the BatchCreateDelegationByAssessment operation returned by the
* service.
* @sample AWSAuditManagerAsync.BatchCreateDelegationByAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchCreateDelegationByAssessment"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchCreateDelegationByAssessmentResult> batchCreateDelegationByAssessmentAsync(
BatchCreateDelegationByAssessmentRequest batchCreateDelegationByAssessmentRequest);
/**
* <p>
* Creates a batch of delegations for an assessment in Audit Manager.
* </p>
*
* @param batchCreateDelegationByAssessmentRequest
* @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 BatchCreateDelegationByAssessment operation returned by the
* service.
* @sample AWSAuditManagerAsyncHandler.BatchCreateDelegationByAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchCreateDelegationByAssessment"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchCreateDelegationByAssessmentResult> batchCreateDelegationByAssessmentAsync(
BatchCreateDelegationByAssessmentRequest batchCreateDelegationByAssessmentRequest,
com.amazonaws.handlers.AsyncHandler<BatchCreateDelegationByAssessmentRequest, BatchCreateDelegationByAssessmentResult> asyncHandler);
/**
* <p>
* Deletes a batch of delegations for an assessment in Audit Manager.
* </p>
*
* @param batchDeleteDelegationByAssessmentRequest
* @return A Java Future containing the result of the BatchDeleteDelegationByAssessment operation returned by the
* service.
* @sample AWSAuditManagerAsync.BatchDeleteDelegationByAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchDeleteDelegationByAssessment"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchDeleteDelegationByAssessmentResult> batchDeleteDelegationByAssessmentAsync(
BatchDeleteDelegationByAssessmentRequest batchDeleteDelegationByAssessmentRequest);
/**
* <p>
* Deletes a batch of delegations for an assessment in Audit Manager.
* </p>
*
* @param batchDeleteDelegationByAssessmentRequest
* @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 BatchDeleteDelegationByAssessment operation returned by the
* service.
* @sample AWSAuditManagerAsyncHandler.BatchDeleteDelegationByAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchDeleteDelegationByAssessment"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchDeleteDelegationByAssessmentResult> batchDeleteDelegationByAssessmentAsync(
BatchDeleteDelegationByAssessmentRequest batchDeleteDelegationByAssessmentRequest,
com.amazonaws.handlers.AsyncHandler<BatchDeleteDelegationByAssessmentRequest, BatchDeleteDelegationByAssessmentResult> asyncHandler);
/**
* <p>
* Disassociates a list of evidence from an assessment report in Audit Manager.
* </p>
*
* @param batchDisassociateAssessmentReportEvidenceRequest
* @return A Java Future containing the result of the BatchDisassociateAssessmentReportEvidence operation returned
* by the service.
* @sample AWSAuditManagerAsync.BatchDisassociateAssessmentReportEvidence
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchDisassociateAssessmentReportEvidence"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchDisassociateAssessmentReportEvidenceResult> batchDisassociateAssessmentReportEvidenceAsync(
BatchDisassociateAssessmentReportEvidenceRequest batchDisassociateAssessmentReportEvidenceRequest);
/**
* <p>
* Disassociates a list of evidence from an assessment report in Audit Manager.
* </p>
*
* @param batchDisassociateAssessmentReportEvidenceRequest
* @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 BatchDisassociateAssessmentReportEvidence operation returned
* by the service.
* @sample AWSAuditManagerAsyncHandler.BatchDisassociateAssessmentReportEvidence
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchDisassociateAssessmentReportEvidence"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchDisassociateAssessmentReportEvidenceResult> batchDisassociateAssessmentReportEvidenceAsync(
BatchDisassociateAssessmentReportEvidenceRequest batchDisassociateAssessmentReportEvidenceRequest,
com.amazonaws.handlers.AsyncHandler<BatchDisassociateAssessmentReportEvidenceRequest, BatchDisassociateAssessmentReportEvidenceResult> asyncHandler);
/**
* <p>
* Adds one or more pieces of evidence to a control in an Audit Manager assessment.
* </p>
* <p>
* You can import manual evidence from any S3 bucket by specifying the S3 URI of the object. You can also upload a
* file from your browser, or enter plain text in response to a risk assessment question.
* </p>
* <p>
* The following restrictions apply to this action:
* </p>
* <ul>
* <li>
* <p>
* <code>manualEvidence</code> can be only one of the following: <code>evidenceFileName</code>,
* <code>s3ResourcePath</code>, or <code>textResponse</code>
* </p>
* </li>
* <li>
* <p>
* Maximum size of an individual evidence file: 100 MB
* </p>
* </li>
* <li>
* <p>
* Number of daily manual evidence uploads per control: 100
* </p>
* </li>
* <li>
* <p>
* Supported file formats: See <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files"
* >Supported file types for manual evidence</a> in the <i>Audit Manager User Guide</i>
* </p>
* </li>
* </ul>
* <p>
* For more information about Audit Manager service restrictions, see <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas and restrictions for
* Audit Manager</a>.
* </p>
*
* @param batchImportEvidenceToAssessmentControlRequest
* @return A Java Future containing the result of the BatchImportEvidenceToAssessmentControl operation returned by
* the service.
* @sample AWSAuditManagerAsync.BatchImportEvidenceToAssessmentControl
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchImportEvidenceToAssessmentControl"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchImportEvidenceToAssessmentControlResult> batchImportEvidenceToAssessmentControlAsync(
BatchImportEvidenceToAssessmentControlRequest batchImportEvidenceToAssessmentControlRequest);
/**
* <p>
* Adds one or more pieces of evidence to a control in an Audit Manager assessment.
* </p>
* <p>
* You can import manual evidence from any S3 bucket by specifying the S3 URI of the object. You can also upload a
* file from your browser, or enter plain text in response to a risk assessment question.
* </p>
* <p>
* The following restrictions apply to this action:
* </p>
* <ul>
* <li>
* <p>
* <code>manualEvidence</code> can be only one of the following: <code>evidenceFileName</code>,
* <code>s3ResourcePath</code>, or <code>textResponse</code>
* </p>
* </li>
* <li>
* <p>
* Maximum size of an individual evidence file: 100 MB
* </p>
* </li>
* <li>
* <p>
* Number of daily manual evidence uploads per control: 100
* </p>
* </li>
* <li>
* <p>
* Supported file formats: See <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files"
* >Supported file types for manual evidence</a> in the <i>Audit Manager User Guide</i>
* </p>
* </li>
* </ul>
* <p>
* For more information about Audit Manager service restrictions, see <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas and restrictions for
* Audit Manager</a>.
* </p>
*
* @param batchImportEvidenceToAssessmentControlRequest
* @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 BatchImportEvidenceToAssessmentControl operation returned by
* the service.
* @sample AWSAuditManagerAsyncHandler.BatchImportEvidenceToAssessmentControl
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/BatchImportEvidenceToAssessmentControl"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<BatchImportEvidenceToAssessmentControlResult> batchImportEvidenceToAssessmentControlAsync(
BatchImportEvidenceToAssessmentControlRequest batchImportEvidenceToAssessmentControlRequest,
com.amazonaws.handlers.AsyncHandler<BatchImportEvidenceToAssessmentControlRequest, BatchImportEvidenceToAssessmentControlResult> asyncHandler);
/**
* <p>
* Creates an assessment in Audit Manager.
* </p>
*
* @param createAssessmentRequest
* @return A Java Future containing the result of the CreateAssessment operation returned by the service.
* @sample AWSAuditManagerAsync.CreateAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessment" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentResult> createAssessmentAsync(CreateAssessmentRequest createAssessmentRequest);
/**
* <p>
* Creates an assessment in Audit Manager.
* </p>
*
* @param createAssessmentRequest
* @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 CreateAssessment operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.CreateAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessment" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentResult> createAssessmentAsync(CreateAssessmentRequest createAssessmentRequest,
com.amazonaws.handlers.AsyncHandler<CreateAssessmentRequest, CreateAssessmentResult> asyncHandler);
/**
* <p>
* Creates a custom framework in Audit Manager.
* </p>
*
* @param createAssessmentFrameworkRequest
* @return A Java Future containing the result of the CreateAssessmentFramework operation returned by the service.
* @sample AWSAuditManagerAsync.CreateAssessmentFramework
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessmentFramework"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentFrameworkResult> createAssessmentFrameworkAsync(
CreateAssessmentFrameworkRequest createAssessmentFrameworkRequest);
/**
* <p>
* Creates a custom framework in Audit Manager.
* </p>
*
* @param createAssessmentFrameworkRequest
* @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 CreateAssessmentFramework operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.CreateAssessmentFramework
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessmentFramework"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentFrameworkResult> createAssessmentFrameworkAsync(
CreateAssessmentFrameworkRequest createAssessmentFrameworkRequest,
com.amazonaws.handlers.AsyncHandler<CreateAssessmentFrameworkRequest, CreateAssessmentFrameworkResult> asyncHandler);
/**
* <p>
* Creates an assessment report for the specified assessment.
* </p>
*
* @param createAssessmentReportRequest
* @return A Java Future containing the result of the CreateAssessmentReport operation returned by the service.
* @sample AWSAuditManagerAsync.CreateAssessmentReport
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessmentReport"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentReportResult> createAssessmentReportAsync(CreateAssessmentReportRequest createAssessmentReportRequest);
/**
* <p>
* Creates an assessment report for the specified assessment.
* </p>
*
* @param createAssessmentReportRequest
* @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 CreateAssessmentReport operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.CreateAssessmentReport
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessmentReport"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<CreateAssessmentReportResult> createAssessmentReportAsync(CreateAssessmentReportRequest createAssessmentReportRequest,
com.amazonaws.handlers.AsyncHandler<CreateAssessmentReportRequest, CreateAssessmentReportResult> asyncHandler);
/**
* <p>
* Creates a new custom control in Audit Manager.
* </p>
*
* @param createControlRequest
* @return A Java Future containing the result of the CreateControl operation returned by the service.
* @sample AWSAuditManagerAsync.CreateControl
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateControl" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateControlResult> createControlAsync(CreateControlRequest createControlRequest);
/**
* <p>
* Creates a new custom control in Audit Manager.
* </p>
*
* @param createControlRequest
* @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 CreateControl operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.CreateControl
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateControl" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<CreateControlResult> createControlAsync(CreateControlRequest createControlRequest,
com.amazonaws.handlers.AsyncHandler<CreateControlRequest, CreateControlResult> asyncHandler);
/**
* <p>
* Deletes an assessment in Audit Manager.
* </p>
*
* @param deleteAssessmentRequest
* @return A Java Future containing the result of the DeleteAssessment operation returned by the service.
* @sample AWSAuditManagerAsync.DeleteAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessment" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentResult> deleteAssessmentAsync(DeleteAssessmentRequest deleteAssessmentRequest);
/**
* <p>
* Deletes an assessment in Audit Manager.
* </p>
*
* @param deleteAssessmentRequest
* @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 DeleteAssessment operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.DeleteAssessment
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessment" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentResult> deleteAssessmentAsync(DeleteAssessmentRequest deleteAssessmentRequest,
com.amazonaws.handlers.AsyncHandler<DeleteAssessmentRequest, DeleteAssessmentResult> asyncHandler);
/**
* <p>
* Deletes a custom framework in Audit Manager.
* </p>
*
* @param deleteAssessmentFrameworkRequest
* @return A Java Future containing the result of the DeleteAssessmentFramework operation returned by the service.
* @sample AWSAuditManagerAsync.DeleteAssessmentFramework
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentFramework"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentFrameworkResult> deleteAssessmentFrameworkAsync(
DeleteAssessmentFrameworkRequest deleteAssessmentFrameworkRequest);
/**
* <p>
* Deletes a custom framework in Audit Manager.
* </p>
*
* @param deleteAssessmentFrameworkRequest
* @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 DeleteAssessmentFramework operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.DeleteAssessmentFramework
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentFramework"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentFrameworkResult> deleteAssessmentFrameworkAsync(
DeleteAssessmentFrameworkRequest deleteAssessmentFrameworkRequest,
com.amazonaws.handlers.AsyncHandler<DeleteAssessmentFrameworkRequest, DeleteAssessmentFrameworkResult> asyncHandler);
/**
* <p>
* Deletes a share request for a custom framework in Audit Manager.
* </p>
*
* @param deleteAssessmentFrameworkShareRequest
* @return A Java Future containing the result of the DeleteAssessmentFrameworkShare operation returned by the
* service.
* @sample AWSAuditManagerAsync.DeleteAssessmentFrameworkShare
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentFrameworkShare"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentFrameworkShareResult> deleteAssessmentFrameworkShareAsync(
DeleteAssessmentFrameworkShareRequest deleteAssessmentFrameworkShareRequest);
/**
* <p>
* Deletes a share request for a custom framework in Audit Manager.
* </p>
*
* @param deleteAssessmentFrameworkShareRequest
* @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 DeleteAssessmentFrameworkShare operation returned by the
* service.
* @sample AWSAuditManagerAsyncHandler.DeleteAssessmentFrameworkShare
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentFrameworkShare"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentFrameworkShareResult> deleteAssessmentFrameworkShareAsync(
DeleteAssessmentFrameworkShareRequest deleteAssessmentFrameworkShareRequest,
com.amazonaws.handlers.AsyncHandler<DeleteAssessmentFrameworkShareRequest, DeleteAssessmentFrameworkShareResult> asyncHandler);
/**
* <p>
* Deletes an assessment report in Audit Manager.
* </p>
* <p>
* When you run the <code>DeleteAssessmentReport</code> operation, Audit Manager attempts to delete the following
* data:
* </p>
* <ol>
* <li>
* <p>
* The specified assessment report that’s stored in your S3 bucket
* </p>
* </li>
* <li>
* <p>
* The associated metadata that’s stored in Audit Manager
* </p>
* </li>
* </ol>
* <p>
* If Audit Manager can’t access the assessment report in your S3 bucket, the report isn’t deleted. In this event,
* the <code>DeleteAssessmentReport</code> operation doesn’t fail. Instead, it proceeds to delete the associated
* metadata only. You must then delete the assessment report from the S3 bucket yourself.
* </p>
* <p>
* This scenario happens when Audit Manager receives a <code>403 (Forbidden)</code> or <code>404 (Not Found)</code>
* error from Amazon S3. To avoid this, make sure that your S3 bucket is available, and that you configured the
* correct permissions for Audit Manager to delete resources in your S3 bucket. For an example permissions policy
* that you can use, see <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/security_iam_id-based-policy-examples.html#full-administrator-access-assessment-report-destination"
* >Assessment report destination permissions</a> in the <i>Audit Manager User Guide</i>. For information about the
* issues that could cause a <code>403 (Forbidden)</code> or <code>404 (Not Found</code>) error from Amazon S3, see
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList">List of Error
* Codes</a> in the <i>Amazon Simple Storage Service API Reference</i>.
* </p>
*
* @param deleteAssessmentReportRequest
* @return A Java Future containing the result of the DeleteAssessmentReport operation returned by the service.
* @sample AWSAuditManagerAsync.DeleteAssessmentReport
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentReport"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentReportResult> deleteAssessmentReportAsync(DeleteAssessmentReportRequest deleteAssessmentReportRequest);
/**
* <p>
* Deletes an assessment report in Audit Manager.
* </p>
* <p>
* When you run the <code>DeleteAssessmentReport</code> operation, Audit Manager attempts to delete the following
* data:
* </p>
* <ol>
* <li>
* <p>
* The specified assessment report that’s stored in your S3 bucket
* </p>
* </li>
* <li>
* <p>
* The associated metadata that’s stored in Audit Manager
* </p>
* </li>
* </ol>
* <p>
* If Audit Manager can’t access the assessment report in your S3 bucket, the report isn’t deleted. In this event,
* the <code>DeleteAssessmentReport</code> operation doesn’t fail. Instead, it proceeds to delete the associated
* metadata only. You must then delete the assessment report from the S3 bucket yourself.
* </p>
* <p>
* This scenario happens when Audit Manager receives a <code>403 (Forbidden)</code> or <code>404 (Not Found)</code>
* error from Amazon S3. To avoid this, make sure that your S3 bucket is available, and that you configured the
* correct permissions for Audit Manager to delete resources in your S3 bucket. For an example permissions policy
* that you can use, see <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/security_iam_id-based-policy-examples.html#full-administrator-access-assessment-report-destination"
* >Assessment report destination permissions</a> in the <i>Audit Manager User Guide</i>. For information about the
* issues that could cause a <code>403 (Forbidden)</code> or <code>404 (Not Found</code>) error from Amazon S3, see
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList">List of Error
* Codes</a> in the <i>Amazon Simple Storage Service API Reference</i>.
* </p>
*
* @param deleteAssessmentReportRequest
* @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 DeleteAssessmentReport operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.DeleteAssessmentReport
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteAssessmentReport"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeleteAssessmentReportResult> deleteAssessmentReportAsync(DeleteAssessmentReportRequest deleteAssessmentReportRequest,
com.amazonaws.handlers.AsyncHandler<DeleteAssessmentReportRequest, DeleteAssessmentReportResult> asyncHandler);
/**
* <p>
* Deletes a custom control in Audit Manager.
* </p>
* <important>
* <p>
* When you invoke this operation, the custom control is deleted from any frameworks or assessments that it’s
* currently part of. As a result, Audit Manager will stop collecting evidence for that custom control in all of
* your assessments. This includes assessments that you previously created before you deleted the custom control.
* </p>
* </important>
*
* @param deleteControlRequest
* @return A Java Future containing the result of the DeleteControl operation returned by the service.
* @sample AWSAuditManagerAsync.DeleteControl
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteControl" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteControlResult> deleteControlAsync(DeleteControlRequest deleteControlRequest);
/**
* <p>
* Deletes a custom control in Audit Manager.
* </p>
* <important>
* <p>
* When you invoke this operation, the custom control is deleted from any frameworks or assessments that it’s
* currently part of. As a result, Audit Manager will stop collecting evidence for that custom control in all of
* your assessments. This includes assessments that you previously created before you deleted the custom control.
* </p>
* </important>
*
* @param deleteControlRequest
* @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 DeleteControl operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.DeleteControl
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeleteControl" target="_top">AWS API
* Documentation</a>
*/
java.util.concurrent.Future<DeleteControlResult> deleteControlAsync(DeleteControlRequest deleteControlRequest,
com.amazonaws.handlers.AsyncHandler<DeleteControlRequest, DeleteControlResult> asyncHandler);
/**
* <p>
* Deregisters an account in Audit Manager.
* </p>
* <note>
* <p>
* Before you deregister, you can use the <a
* href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_UpdateSettings.html">UpdateSettings</a>
* API operation to set your preferred data retention policy. By default, Audit Manager retains your data. If you
* want to delete your data, you can use the <code>DeregistrationPolicy</code> attribute to request the deletion of
* your data.
* </p>
* <p>
* For more information about data retention, see <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/data-protection.html">Data Protection</a> in the
* <i>Audit Manager User Guide</i>.
* </p>
* </note>
*
* @param deregisterAccountRequest
* @return A Java Future containing the result of the DeregisterAccount operation returned by the service.
* @sample AWSAuditManagerAsync.DeregisterAccount
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeregisterAccount" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeregisterAccountResult> deregisterAccountAsync(DeregisterAccountRequest deregisterAccountRequest);
/**
* <p>
* Deregisters an account in Audit Manager.
* </p>
* <note>
* <p>
* Before you deregister, you can use the <a
* href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_UpdateSettings.html">UpdateSettings</a>
* API operation to set your preferred data retention policy. By default, Audit Manager retains your data. If you
* want to delete your data, you can use the <code>DeregistrationPolicy</code> attribute to request the deletion of
* your data.
* </p>
* <p>
* For more information about data retention, see <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/data-protection.html">Data Protection</a> in the
* <i>Audit Manager User Guide</i>.
* </p>
* </note>
*
* @param deregisterAccountRequest
* @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 DeregisterAccount operation returned by the service.
* @sample AWSAuditManagerAsyncHandler.DeregisterAccount
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeregisterAccount" target="_top">AWS
* API Documentation</a>
*/
java.util.concurrent.Future<DeregisterAccountResult> deregisterAccountAsync(DeregisterAccountRequest deregisterAccountRequest,
com.amazonaws.handlers.AsyncHandler<DeregisterAccountRequest, DeregisterAccountResult> asyncHandler);
/**
* <p>
* Removes the specified Amazon Web Services account as a delegated administrator for Audit Manager.
* </p>
* <p>
* When you remove a delegated administrator from your Audit Manager settings, you continue to have access to the
* evidence that you previously collected under that account. This is also the case when you deregister a delegated
* administrator from Organizations. However, Audit Manager stops collecting and attaching evidence to that
* delegated administrator account moving forward.
* </p>
* <important>
* <p>
* Keep in mind the following cleanup task if you use evidence finder:
* </p>
* <p>
* Before you use your management account to remove a delegated administrator, make sure that the current delegated
* administrator account signs in to Audit Manager and disables evidence finder first. Disabling evidence finder
* automatically deletes the event data store that was created in their account when they enabled evidence finder.
* If this task isn’t completed, the event data store remains in their account. In this case, we recommend that the
* original delegated administrator goes to CloudTrail Lake and manually <a
* href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/query-eds-disable-termination.html">deletes the
* event data store</a>.
* </p>
* <p>
* This cleanup task is necessary to ensure that you don't end up with multiple event data stores. Audit Manager
* ignores an unused event data store after you remove or change a delegated administrator account. However, the
* unused event data store continues to incur storage costs from CloudTrail Lake if you don't delete it.
* </p>
* </important>
* <p>
* When you deregister a delegated administrator account for Audit Manager, the data for that account isn’t deleted.
* If you want to delete resource data for a delegated administrator account, you must perform that task separately
* before you deregister the account. Either, you can do this in the Audit Manager console. Or, you can use one of
* the delete API operations that are provided by Audit Manager.
* </p>
* <p>
* To delete your Audit Manager resource data, see the following instructions:
* </p>
* <ul>
* <li>
* <p>
* <a
* href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessment.html">DeleteAssessment
* </a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-assessment.html">Deleting an
* assessment</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFramework.html">
* DeleteAssessmentFramework</a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-custom-framework.html">Deleting a custom
* framework</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFrameworkShare.html">
* DeleteAssessmentFrameworkShare</a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/deleting-shared-framework-requests.html"
* >Deleting a share request</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentReport.html">
* DeleteAssessmentReport</a> (see also: <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/generate-assessment-report.html#delete-assessment-report-steps"
* >Deleting an assessment report</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteControl.html">DeleteControl</a>
* (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-controls.html">Deleting a
* custom control</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* </ul>
* <p>
* At this time, Audit Manager doesn't provide an option to delete evidence for a specific delegated administrator.
* Instead, when your management account deregisters Audit Manager, we perform a cleanup for the current delegated
* administrator account at the time of deregistration.
* </p>
*
* @param deregisterOrganizationAdminAccountRequest
* @return A Java Future containing the result of the DeregisterOrganizationAdminAccount operation returned by the
* service.
* @sample AWSAuditManagerAsync.DeregisterOrganizationAdminAccount
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeregisterOrganizationAdminAccount"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeregisterOrganizationAdminAccountResult> deregisterOrganizationAdminAccountAsync(
DeregisterOrganizationAdminAccountRequest deregisterOrganizationAdminAccountRequest);
/**
* <p>
* Removes the specified Amazon Web Services account as a delegated administrator for Audit Manager.
* </p>
* <p>
* When you remove a delegated administrator from your Audit Manager settings, you continue to have access to the
* evidence that you previously collected under that account. This is also the case when you deregister a delegated
* administrator from Organizations. However, Audit Manager stops collecting and attaching evidence to that
* delegated administrator account moving forward.
* </p>
* <important>
* <p>
* Keep in mind the following cleanup task if you use evidence finder:
* </p>
* <p>
* Before you use your management account to remove a delegated administrator, make sure that the current delegated
* administrator account signs in to Audit Manager and disables evidence finder first. Disabling evidence finder
* automatically deletes the event data store that was created in their account when they enabled evidence finder.
* If this task isn’t completed, the event data store remains in their account. In this case, we recommend that the
* original delegated administrator goes to CloudTrail Lake and manually <a
* href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/query-eds-disable-termination.html">deletes the
* event data store</a>.
* </p>
* <p>
* This cleanup task is necessary to ensure that you don't end up with multiple event data stores. Audit Manager
* ignores an unused event data store after you remove or change a delegated administrator account. However, the
* unused event data store continues to incur storage costs from CloudTrail Lake if you don't delete it.
* </p>
* </important>
* <p>
* When you deregister a delegated administrator account for Audit Manager, the data for that account isn’t deleted.
* If you want to delete resource data for a delegated administrator account, you must perform that task separately
* before you deregister the account. Either, you can do this in the Audit Manager console. Or, you can use one of
* the delete API operations that are provided by Audit Manager.
* </p>
* <p>
* To delete your Audit Manager resource data, see the following instructions:
* </p>
* <ul>
* <li>
* <p>
* <a
* href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessment.html">DeleteAssessment
* </a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-assessment.html">Deleting an
* assessment</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFramework.html">
* DeleteAssessmentFramework</a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-custom-framework.html">Deleting a custom
* framework</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFrameworkShare.html">
* DeleteAssessmentFrameworkShare</a> (see also: <a
* href="https://docs.aws.amazon.com/audit-manager/latest/userguide/deleting-shared-framework-requests.html"
* >Deleting a share request</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentReport.html">
* DeleteAssessmentReport</a> (see also: <a href=
* "https://docs.aws.amazon.com/audit-manager/latest/userguide/generate-assessment-report.html#delete-assessment-report-steps"
* >Deleting an assessment report</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* <li>
* <p>
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteControl.html">DeleteControl</a>
* (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-controls.html">Deleting a
* custom control</a> in the <i>Audit Manager User Guide</i>)
* </p>
* </li>
* </ul>
* <p>
* At this time, Audit Manager doesn't provide an option to delete evidence for a specific delegated administrator.
* Instead, when your management account deregisters Audit Manager, we perform a cleanup for the current delegated
* administrator account at the time of deregistration.
* </p>
*
* @param deregisterOrganizationAdminAccountRequest
* @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 DeregisterOrganizationAdminAccount operation returned by the
* service.
* @sample AWSAuditManagerAsyncHandler.DeregisterOrganizationAdminAccount
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/DeregisterOrganizationAdminAccount"
* target="_top">AWS API Documentation</a>
*/
java.util.concurrent.Future<DeregisterOrganizationAdminAccountResult> deregisterOrganizationAdminAccountAsync(
DeregisterOrganizationAdminAccountRequest deregisterOrganizationAdminAccountRequest,
com.amazonaws.handlers.AsyncHandler<DeregisterOrganizationAdminAccountRequest, DeregisterOrganizationAdminAccountResult> asyncHandler);
/**
* <p>
* Disassociates an evidence folder from the specified assessment report in Audit Manager.
* </p>
*
* @param disassociateAssessmentReportEvidenceFolderRequest
* @return A Java Future containing the result of the DisassociateAssessmentReportEvidenceFolder operation returned
* by the service.