-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathAWSComputeOptimizer.java
More file actions
1074 lines (1040 loc) · 56.1 KB
/
AWSComputeOptimizer.java
File metadata and controls
1074 lines (1040 loc) · 56.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
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.computeoptimizer;
import javax.annotation.Generated;
import com.amazonaws.*;
import com.amazonaws.regions.*;
import com.amazonaws.services.computeoptimizer.model.*;
/**
* Interface for accessing AWS Compute Optimizer.
* <p>
* <b>Note:</b> Do not directly implement this interface, new methods are added to it regularly. Extend from
* {@link com.amazonaws.services.computeoptimizer.AbstractAWSComputeOptimizer} instead.
* </p>
* <p>
* <p>
* Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services
* compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, Amazon EBS
* volumes, and Amazon ECS services on Fargate. It reports whether your resources are optimal, and generates
* optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also
* provides recent utilization metric data, in addition to projected utilization metric data for the recommendations,
* which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of
* your usage patterns can help you decide when to move or resize your running resources, and still meet your
* performance and capacity requirements. For more information about Compute Optimizer, including the required
* permissions to use the service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute
* Optimizer User Guide</a>.
* </p>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSComputeOptimizer {
/**
* The region metadata service name for computing region endpoints. You can use this value to retrieve metadata
* (such as supported regions) of the service.
*
* @see RegionUtils#getRegionsForService(String)
*/
String ENDPOINT_PREFIX = "compute-optimizer";
/**
* <p>
* Deletes a recommendation preference, such as enhanced infrastructure metrics.
* </p>
* <p>
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
* enhanced infrastructure metrics</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param deleteRecommendationPreferencesRequest
* @return Result of the DeleteRecommendationPreferences operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.DeleteRecommendationPreferences
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/DeleteRecommendationPreferences"
* target="_top">AWS API Documentation</a>
*/
DeleteRecommendationPreferencesResult deleteRecommendationPreferences(DeleteRecommendationPreferencesRequest deleteRecommendationPreferencesRequest);
/**
* <p>
* Describes recommendation export jobs created in the last seven days.
* </p>
* <p>
* Use the <a>ExportAutoScalingGroupRecommendations</a> or <a>ExportEC2InstanceRecommendations</a> actions to
* request an export of your recommendations. Then use the <a>DescribeRecommendationExportJobs</a> action to view
* your export jobs.
* </p>
*
* @param describeRecommendationExportJobsRequest
* @return Result of the DescribeRecommendationExportJobs operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.DescribeRecommendationExportJobs
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/DescribeRecommendationExportJobs"
* target="_top">AWS API Documentation</a>
*/
DescribeRecommendationExportJobsResult describeRecommendationExportJobs(DescribeRecommendationExportJobsRequest describeRecommendationExportJobsRequest);
/**
* <p>
* Exports optimization recommendations for Auto Scaling groups.
* </p>
* <p>
* Recommendations are exported in a comma-separated values (.csv) file, and its metadata in a JavaScript Object
* Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify.
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one Auto Scaling group export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportAutoScalingGroupRecommendationsRequest
* @return Result of the ExportAutoScalingGroupRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportAutoScalingGroupRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportAutoScalingGroupRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportAutoScalingGroupRecommendationsResult exportAutoScalingGroupRecommendations(
ExportAutoScalingGroupRecommendationsRequest exportAutoScalingGroupRecommendationsRequest);
/**
* <p>
* Exports optimization recommendations for Amazon EBS volumes.
* </p>
* <p>
* Recommendations are exported in a comma-separated values (.csv) file, and its metadata in a JavaScript Object
* Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify.
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one Amazon EBS volume export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportEBSVolumeRecommendationsRequest
* @return Result of the ExportEBSVolumeRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportEBSVolumeRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportEBSVolumeRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportEBSVolumeRecommendationsResult exportEBSVolumeRecommendations(ExportEBSVolumeRecommendationsRequest exportEBSVolumeRecommendationsRequest);
/**
* <p>
* Exports optimization recommendations for Amazon EC2 instances.
* </p>
* <p>
* Recommendations are exported in a comma-separated values (.csv) file, and its metadata in a JavaScript Object
* Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify.
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one Amazon EC2 instance export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportEC2InstanceRecommendationsRequest
* @return Result of the ExportEC2InstanceRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportEC2InstanceRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportEC2InstanceRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportEC2InstanceRecommendationsResult exportEC2InstanceRecommendations(ExportEC2InstanceRecommendationsRequest exportEC2InstanceRecommendationsRequest);
/**
* <p>
* Exports optimization recommendations for Amazon ECS services on Fargate.
* </p>
* <p>
* Recommendations are exported in a CSV file, and its metadata in a JSON file, to an existing Amazon Simple Storage
* Service (Amazon S3) bucket that you specify. For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can only have one Amazon ECS service export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportECSServiceRecommendationsRequest
* @return Result of the ExportECSServiceRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportECSServiceRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportECSServiceRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportECSServiceRecommendationsResult exportECSServiceRecommendations(ExportECSServiceRecommendationsRequest exportECSServiceRecommendationsRequest);
/**
* <p>
* Exports optimization recommendations for Lambda functions.
* </p>
* <p>
* Recommendations are exported in a comma-separated values (.csv) file, and its metadata in a JavaScript Object
* Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify.
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one Lambda function export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportLambdaFunctionRecommendationsRequest
* @return Result of the ExportLambdaFunctionRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportLambdaFunctionRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportLambdaFunctionRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportLambdaFunctionRecommendationsResult exportLambdaFunctionRecommendations(
ExportLambdaFunctionRecommendationsRequest exportLambdaFunctionRecommendationsRequest);
/**
* <p>
* Export optimization recommendations for your licenses.
* </p>
* <p>
* Recommendations are exported in a comma-separated values (CSV) file, and its metadata in a JavaScript Object
* Notation (JSON) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more
* information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one license export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportLicenseRecommendationsRequest
* @return Result of the ExportLicenseRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportLicenseRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportLicenseRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportLicenseRecommendationsResult exportLicenseRecommendations(ExportLicenseRecommendationsRequest exportLicenseRecommendationsRequest);
/**
* <p>
* Export optimization recommendations for your Amazon Relational Database Service (Amazon RDS).
* </p>
* <p>
* Recommendations are exported in a comma-separated values (CSV) file, and its metadata in a JavaScript Object
* Notation (JSON) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more
* information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
* Recommendations</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
* <p>
* You can have only one Amazon RDS export job in progress per Amazon Web Services Region.
* </p>
*
* @param exportRDSDatabaseRecommendationsRequest
* @return Result of the ExportRDSDatabaseRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.ExportRDSDatabaseRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/ExportRDSDatabaseRecommendations"
* target="_top">AWS API Documentation</a>
*/
ExportRDSDatabaseRecommendationsResult exportRDSDatabaseRecommendations(ExportRDSDatabaseRecommendationsRequest exportRDSDatabaseRecommendationsRequest);
/**
* <p>
* Returns Auto Scaling group recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for Amazon EC2 Auto Scaling groups that meet a specific set of
* requirements. For more information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getAutoScalingGroupRecommendationsRequest
* @return Result of the GetAutoScalingGroupRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetAutoScalingGroupRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetAutoScalingGroupRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetAutoScalingGroupRecommendationsResult getAutoScalingGroupRecommendations(
GetAutoScalingGroupRecommendationsRequest getAutoScalingGroupRecommendationsRequest);
/**
* <p>
* Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for Amazon EBS volumes that meet a specific set of requirements. For
* more information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getEBSVolumeRecommendationsRequest
* @return Result of the GetEBSVolumeRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEBSVolumeRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEBSVolumeRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetEBSVolumeRecommendationsResult getEBSVolumeRecommendations(GetEBSVolumeRecommendationsRequest getEBSVolumeRecommendationsRequest);
/**
* <p>
* Returns Amazon EC2 instance recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for Amazon Elastic Compute Cloud (Amazon EC2) instances that meet a
* specific set of requirements. For more information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getEC2InstanceRecommendationsRequest
* @return Result of the GetEC2InstanceRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEC2InstanceRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEC2InstanceRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetEC2InstanceRecommendationsResult getEC2InstanceRecommendations(GetEC2InstanceRecommendationsRequest getEC2InstanceRecommendationsRequest);
/**
* <p>
* Returns the projected utilization metrics of Amazon EC2 instance recommendations.
* </p>
* <note>
* <p>
* The <code>Cpu</code> and <code>Memory</code> metrics are the only projected utilization metrics returned when you
* run this action. Additionally, the <code>Memory</code> metric is returned only for resources that have the
* unified CloudWatch agent installed on them. For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html#cw-agent">Enabling Memory Utilization
* with the CloudWatch Agent</a>.
* </p>
* </note>
*
* @param getEC2RecommendationProjectedMetricsRequest
* @return Result of the GetEC2RecommendationProjectedMetrics operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEC2RecommendationProjectedMetrics
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEC2RecommendationProjectedMetrics"
* target="_top">AWS API Documentation</a>
*/
GetEC2RecommendationProjectedMetricsResult getEC2RecommendationProjectedMetrics(
GetEC2RecommendationProjectedMetricsRequest getEC2RecommendationProjectedMetricsRequest);
/**
* <p>
* Returns the projected metrics of Amazon ECS service recommendations.
* </p>
*
* @param getECSServiceRecommendationProjectedMetricsRequest
* @return Result of the GetECSServiceRecommendationProjectedMetrics operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetECSServiceRecommendationProjectedMetrics
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetECSServiceRecommendationProjectedMetrics"
* target="_top">AWS API Documentation</a>
*/
GetECSServiceRecommendationProjectedMetricsResult getECSServiceRecommendationProjectedMetrics(
GetECSServiceRecommendationProjectedMetricsRequest getECSServiceRecommendationProjectedMetricsRequest);
/**
* <p>
* Returns Amazon ECS service recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for Amazon ECS services on Fargate that meet a specific set of
* requirements. For more information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getECSServiceRecommendationsRequest
* @return Result of the GetECSServiceRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetECSServiceRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetECSServiceRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetECSServiceRecommendationsResult getECSServiceRecommendations(GetECSServiceRecommendationsRequest getECSServiceRecommendationsRequest);
/**
* <p>
* Returns the recommendation preferences that are in effect for a given resource, such as enhanced infrastructure
* metrics. Considers all applicable preferences that you might have set at the resource, account, and organization
* level.
* </p>
* <p>
* When you create a recommendation preference, you can set its status to <code>Active</code> or
* <code>Inactive</code>. Use this action to view the recommendation preferences that are in effect, or
* <code>Active</code>.
* </p>
*
* @param getEffectiveRecommendationPreferencesRequest
* @return Result of the GetEffectiveRecommendationPreferences operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEffectiveRecommendationPreferences
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEffectiveRecommendationPreferences"
* target="_top">AWS API Documentation</a>
*/
GetEffectiveRecommendationPreferencesResult getEffectiveRecommendationPreferences(
GetEffectiveRecommendationPreferencesRequest getEffectiveRecommendationPreferencesRequest);
/**
* <p>
* Returns the enrollment (opt in) status of an account to the Compute Optimizer service.
* </p>
* <p>
* If the account is the management account of an organization, this action also confirms the enrollment status of
* member accounts of the organization. Use the <a>GetEnrollmentStatusesForOrganization</a> action to get detailed
* information about the enrollment status of member accounts of an organization.
* </p>
*
* @param getEnrollmentStatusRequest
* @return Result of the GetEnrollmentStatus operation returned by the service.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEnrollmentStatus
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEnrollmentStatus"
* target="_top">AWS API Documentation</a>
*/
GetEnrollmentStatusResult getEnrollmentStatus(GetEnrollmentStatusRequest getEnrollmentStatusRequest);
/**
* <p>
* Returns the Compute Optimizer enrollment (opt-in) status of organization member accounts, if your account is an
* organization management account.
* </p>
* <p>
* To get the enrollment status of standalone accounts, use the <a>GetEnrollmentStatus</a> action.
* </p>
*
* @param getEnrollmentStatusesForOrganizationRequest
* @return Result of the GetEnrollmentStatusesForOrganization operation returned by the service.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetEnrollmentStatusesForOrganization
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetEnrollmentStatusesForOrganization"
* target="_top">AWS API Documentation</a>
*/
GetEnrollmentStatusesForOrganizationResult getEnrollmentStatusesForOrganization(
GetEnrollmentStatusesForOrganizationRequest getEnrollmentStatusesForOrganizationRequest);
/**
* <p>
* Returns Lambda function recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for functions that meet a specific set of requirements. For more
* information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getLambdaFunctionRecommendationsRequest
* @return Result of the GetLambdaFunctionRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @throws LimitExceededException
* The request exceeds a limit of the service.
* @sample AWSComputeOptimizer.GetLambdaFunctionRecommendations
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetLambdaFunctionRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetLambdaFunctionRecommendationsResult getLambdaFunctionRecommendations(GetLambdaFunctionRecommendationsRequest getLambdaFunctionRecommendationsRequest);
/**
* <p>
* Returns license recommendations for Amazon EC2 instances that run on a specific license.
* </p>
* <p>
* Compute Optimizer generates recommendations for licenses that meet a specific set of requirements. For more
* information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getLicenseRecommendationsRequest
* @return Result of the GetLicenseRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetLicenseRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetLicenseRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetLicenseRecommendationsResult getLicenseRecommendations(GetLicenseRecommendationsRequest getLicenseRecommendationsRequest);
/**
* <p>
* Returns the projected metrics of Amazon RDS recommendations.
* </p>
*
* @param getRDSDatabaseRecommendationProjectedMetricsRequest
* @return Result of the GetRDSDatabaseRecommendationProjectedMetrics operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetRDSDatabaseRecommendationProjectedMetrics
* @see <a
* href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetRDSDatabaseRecommendationProjectedMetrics"
* target="_top">AWS API Documentation</a>
*/
GetRDSDatabaseRecommendationProjectedMetricsResult getRDSDatabaseRecommendationProjectedMetrics(
GetRDSDatabaseRecommendationProjectedMetricsRequest getRDSDatabaseRecommendationProjectedMetricsRequest);
/**
* <p>
* Returns Amazon RDS recommendations.
* </p>
* <p>
* Compute Optimizer generates recommendations for Amazon RDS that meet a specific set of requirements. For more
* information, see the <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
* requirements</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getRDSDatabaseRecommendationsRequest
* @return Result of the GetRDSDatabaseRecommendations operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetRDSDatabaseRecommendations
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetRDSDatabaseRecommendations"
* target="_top">AWS API Documentation</a>
*/
GetRDSDatabaseRecommendationsResult getRDSDatabaseRecommendations(GetRDSDatabaseRecommendationsRequest getRDSDatabaseRecommendationsRequest);
/**
* <p>
* Returns existing recommendation preferences, such as enhanced infrastructure metrics.
* </p>
* <p>
* Use the <code>scope</code> parameter to specify which preferences to return. You can specify to return
* preferences for an organization, a specific account ID, or a specific EC2 instance or Auto Scaling group Amazon
* Resource Name (ARN).
* </p>
* <p>
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
* enhanced infrastructure metrics</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param getRecommendationPreferencesRequest
* @return Result of the GetRecommendationPreferences operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetRecommendationPreferences
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetRecommendationPreferences"
* target="_top">AWS API Documentation</a>
*/
GetRecommendationPreferencesResult getRecommendationPreferences(GetRecommendationPreferencesRequest getRecommendationPreferencesRequest);
/**
* <p>
* Returns the optimization findings for an account.
* </p>
* <p>
* It returns the number of:
* </p>
* <ul>
* <li>
* <p>
* Amazon EC2 instances in an account that are <code>Underprovisioned</code>, <code>Overprovisioned</code>, or
* <code>Optimized</code>.
* </p>
* </li>
* <li>
* <p>
* Auto Scaling groups in an account that are <code>NotOptimized</code>, or <code>Optimized</code>.
* </p>
* </li>
* <li>
* <p>
* Amazon EBS volumes in an account that are <code>NotOptimized</code>, or <code>Optimized</code>.
* </p>
* </li>
* <li>
* <p>
* Lambda functions in an account that are <code>NotOptimized</code>, or <code>Optimized</code>.
* </p>
* </li>
* <li>
* <p>
* Amazon ECS services in an account that are <code>Underprovisioned</code>, <code>Overprovisioned</code>, or
* <code>Optimized</code>.
* </p>
* </li>
* </ul>
*
* @param getRecommendationSummariesRequest
* @return Result of the GetRecommendationSummaries operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.
* @throws ThrottlingException
* The request was denied due to request throttling.
* @sample AWSComputeOptimizer.GetRecommendationSummaries
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/compute-optimizer-2019-11-01/GetRecommendationSummaries"
* target="_top">AWS API Documentation</a>
*/
GetRecommendationSummariesResult getRecommendationSummaries(GetRecommendationSummariesRequest getRecommendationSummariesRequest);
/**
* <p>
* Creates a new recommendation preference or updates an existing recommendation preference, such as enhanced
* infrastructure metrics.
* </p>
* <p>
* For more information, see <a
* href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
* enhanced infrastructure metrics</a> in the <i>Compute Optimizer User Guide</i>.
* </p>
*
* @param putRecommendationPreferencesRequest
* @return Result of the PutRecommendationPreferences operation returned by the service.
* @throws OptInRequiredException
* The account is not opted in to Compute Optimizer.
* @throws InternalServerException
* An internal error has occurred. Try your call again.
* @throws ServiceUnavailableException
* The request has failed due to a temporary failure of the server.
* @throws AccessDeniedException
* You do not have sufficient access to perform this action.
* @throws InvalidParameterValueException
* The value supplied for the input parameter is out of range or not valid.
* @throws ResourceNotFoundException
* A resource that is required for the action doesn't exist.
* @throws MissingAuthenticationTokenException
* The request must contain either a valid (registered) Amazon Web Services access key ID or X.509
* certificate.