@aws-sdk/client-compute-optimizer 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist-types/ComputeOptimizer.d.ts +22 -0
  2. package/dist-types/ComputeOptimizerClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +16 -0
  4. package/dist-types/commands/DescribeRecommendationExportJobsCommand.d.ts +16 -0
  5. package/dist-types/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +16 -0
  6. package/dist-types/commands/ExportEBSVolumeRecommendationsCommand.d.ts +16 -0
  7. package/dist-types/commands/ExportEC2InstanceRecommendationsCommand.d.ts +16 -0
  8. package/dist-types/commands/ExportECSServiceRecommendationsCommand.d.ts +16 -0
  9. package/dist-types/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +16 -0
  10. package/dist-types/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +16 -0
  11. package/dist-types/commands/GetEBSVolumeRecommendationsCommand.d.ts +16 -0
  12. package/dist-types/commands/GetEC2InstanceRecommendationsCommand.d.ts +16 -0
  13. package/dist-types/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetECSServiceRecommendationProjectedMetricsCommand.d.ts +16 -0
  15. package/dist-types/commands/GetECSServiceRecommendationsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +16 -0
  17. package/dist-types/commands/GetEnrollmentStatusCommand.d.ts +16 -0
  18. package/dist-types/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +16 -0
  19. package/dist-types/commands/GetLambdaFunctionRecommendationsCommand.d.ts +16 -0
  20. package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +16 -0
  21. package/dist-types/commands/GetRecommendationSummariesCommand.d.ts +16 -0
  22. package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +16 -0
  23. package/dist-types/commands/UpdateEnrollmentStatusCommand.d.ts +16 -0
  24. package/dist-types/models/ComputeOptimizerServiceException.d.ts +2 -0
  25. package/dist-types/models/models_0.d.ts +323 -0
  26. package/dist-types/pagination/DescribeRecommendationExportJobsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/GetEnrollmentStatusesForOrganizationPaginator.d.ts +3 -0
  28. package/dist-types/pagination/GetLambdaFunctionRecommendationsPaginator.d.ts +3 -0
  29. package/dist-types/pagination/GetRecommendationPreferencesPaginator.d.ts +3 -0
  30. package/dist-types/pagination/GetRecommendationSummariesPaginator.d.ts +3 -0
  31. package/dist-types/pagination/Interfaces.d.ts +3 -0
  32. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -11,6 +12,9 @@ export declare class AccessDeniedException extends __BaseException {
11
12
  */
12
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
14
  }
15
+ /**
16
+ * @public
17
+ */
14
18
  export declare enum Status {
15
19
  ACTIVE = "Active",
16
20
  FAILED = "Failed",
@@ -18,6 +22,7 @@ export declare enum Status {
18
22
  PENDING = "Pending"
19
23
  }
20
24
  /**
25
+ * @public
21
26
  * <p>Describes the enrollment status of an organization's member accounts in Compute Optimizer.</p>
22
27
  */
23
28
  export interface AccountEnrollmentStatus {
@@ -41,11 +46,15 @@ export interface AccountEnrollmentStatus {
41
46
  */
42
47
  lastUpdatedTimestamp?: Date;
43
48
  }
49
+ /**
50
+ * @public
51
+ */
44
52
  export declare enum AutoScalingConfiguration {
45
53
  TARGET_TRACKING_SCALING_CPU = "TargetTrackingScalingCpu",
46
54
  TARGET_TRACKING_SCALING_MEMORY = "TargetTrackingScalingMemory"
47
55
  }
48
56
  /**
57
+ * @public
49
58
  * <p>Describes the configuration of an Auto Scaling group.</p>
50
59
  */
51
60
  export interface AutoScalingGroupConfiguration {
@@ -68,20 +77,32 @@ export interface AutoScalingGroupConfiguration {
68
77
  */
69
78
  instanceType?: string;
70
79
  }
80
+ /**
81
+ * @public
82
+ */
71
83
  export declare enum CurrentPerformanceRisk {
72
84
  HIGH = "High",
73
85
  LOW = "Low",
74
86
  MEDIUM = "Medium",
75
87
  VERY_LOW = "VeryLow"
76
88
  }
89
+ /**
90
+ * @public
91
+ */
77
92
  export declare enum CpuVendorArchitecture {
78
93
  AWS_ARM64 = "AWS_ARM64",
79
94
  CURRENT = "CURRENT"
80
95
  }
96
+ /**
97
+ * @public
98
+ */
81
99
  export declare enum EnhancedInfrastructureMetrics {
82
100
  ACTIVE = "Active",
83
101
  INACTIVE = "Inactive"
84
102
  }
103
+ /**
104
+ * @public
105
+ */
85
106
  export declare enum ExternalMetricsSource {
86
107
  DATADOG = "Datadog",
87
108
  DYNATRACE = "Dynatrace",
@@ -89,6 +110,7 @@ export declare enum ExternalMetricsSource {
89
110
  NEWRELIC = "NewRelic"
90
111
  }
91
112
  /**
113
+ * @public
92
114
  * <p> Describes the external metrics preferences for EC2 rightsizing recommendations.
93
115
  * </p>
94
116
  */
@@ -98,11 +120,15 @@ export interface ExternalMetricsPreference {
98
120
  */
99
121
  source?: ExternalMetricsSource | string;
100
122
  }
123
+ /**
124
+ * @public
125
+ */
101
126
  export declare enum InferredWorkloadTypesPreference {
102
127
  ACTIVE = "Active",
103
128
  INACTIVE = "Inactive"
104
129
  }
105
130
  /**
131
+ * @public
106
132
  * <p>Describes the effective recommendation preferences for a resource.</p>
107
133
  */
108
134
  export interface EffectiveRecommendationPreferences {
@@ -152,12 +178,18 @@ export interface EffectiveRecommendationPreferences {
152
178
  */
153
179
  externalMetricsPreference?: ExternalMetricsPreference;
154
180
  }
181
+ /**
182
+ * @public
183
+ */
155
184
  export declare enum Finding {
156
185
  NOT_OPTIMIZED = "NotOptimized",
157
186
  OPTIMIZED = "Optimized",
158
187
  OVER_PROVISIONED = "Overprovisioned",
159
188
  UNDER_PROVISIONED = "Underprovisioned"
160
189
  }
190
+ /**
191
+ * @public
192
+ */
161
193
  export declare enum InferredWorkloadType {
162
194
  AMAZON_EMR = "AmazonEmr",
163
195
  APACHE_CASSANDRA = "ApacheCassandra",
@@ -168,12 +200,18 @@ export declare enum InferredWorkloadType {
168
200
  POSTGRE_SQL = "PostgreSql",
169
201
  REDIS = "Redis"
170
202
  }
203
+ /**
204
+ * @public
205
+ */
171
206
  export declare enum MigrationEffort {
172
207
  HIGH = "High",
173
208
  LOW = "Low",
174
209
  MEDIUM = "Medium",
175
210
  VERY_LOW = "VeryLow"
176
211
  }
212
+ /**
213
+ * @public
214
+ */
177
215
  export declare enum MetricName {
178
216
  CPU = "Cpu",
179
217
  DISK_READ_BYTES_PER_SECOND = "DISK_READ_BYTES_PER_SECOND",
@@ -190,11 +228,15 @@ export declare enum MetricName {
190
228
  NETWORK_PACKETS_IN_PER_SECOND = "NETWORK_PACKETS_IN_PER_SECOND",
191
229
  NETWORK_PACKETS_OUT_PER_SECOND = "NETWORK_PACKETS_OUT_PER_SECOND"
192
230
  }
231
+ /**
232
+ * @public
233
+ */
193
234
  export declare enum MetricStatistic {
194
235
  AVERAGE = "Average",
195
236
  MAXIMUM = "Maximum"
196
237
  }
197
238
  /**
239
+ * @public
198
240
  * <p>Describes a utilization metric of a resource, such as an Amazon EC2
199
241
  * instance.</p>
200
242
  * <p>Compare the utilization metric data of your resource against its projected utilization
@@ -334,11 +376,15 @@ export interface UtilizationMetric {
334
376
  */
335
377
  value?: number;
336
378
  }
379
+ /**
380
+ * @public
381
+ */
337
382
  export declare enum Currency {
338
383
  CNY = "CNY",
339
384
  USD = "USD"
340
385
  }
341
386
  /**
387
+ * @public
342
388
  * <p>Describes the estimated monthly savings amount possible, based on On-Demand instance
343
389
  * pricing, by adopting Compute Optimizer recommendations for a given resource.</p>
344
390
  * <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/view-ec2-recommendations.html#ec2-savings-calculation">Estimated monthly savings and savings opportunities</a> in the
@@ -356,6 +402,7 @@ export interface EstimatedMonthlySavings {
356
402
  value?: number;
357
403
  }
358
404
  /**
405
+ * @public
359
406
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
360
407
  * the recommendation option of an individual resource.</p>
361
408
  * <p>Savings opportunity represents the estimated monthly savings you can achieve by
@@ -387,6 +434,7 @@ export interface SavingsOpportunity {
387
434
  estimatedMonthlySavings?: EstimatedMonthlySavings;
388
435
  }
389
436
  /**
437
+ * @public
390
438
  * <p>Describes a recommendation option for an Auto Scaling group.</p>
391
439
  */
392
440
  export interface AutoScalingGroupRecommendationOption {
@@ -447,6 +495,7 @@ export interface AutoScalingGroupRecommendationOption {
447
495
  migrationEffort?: MigrationEffort | string;
448
496
  }
449
497
  /**
498
+ * @public
450
499
  * <p>Describes an Auto Scaling group recommendation.</p>
451
500
  */
452
501
  export interface AutoScalingGroupRecommendation {
@@ -565,11 +614,17 @@ export interface AutoScalingGroupRecommendation {
565
614
  */
566
615
  inferredWorkloadTypes?: (InferredWorkloadType | string)[];
567
616
  }
617
+ /**
618
+ * @public
619
+ */
568
620
  export declare enum RecommendationPreferenceName {
569
621
  ENHANCED_INFRASTRUCTURE_METRICS = "EnhancedInfrastructureMetrics",
570
622
  EXTERNAL_METRICS_PREFERENCE = "ExternalMetricsPreference",
571
623
  INFERRED_WORKLOAD_TYPES = "InferredWorkloadTypes"
572
624
  }
625
+ /**
626
+ * @public
627
+ */
573
628
  export declare enum ResourceType {
574
629
  AUTO_SCALING_GROUP = "AutoScalingGroup",
575
630
  EBS_VOLUME = "EbsVolume",
@@ -578,12 +633,16 @@ export declare enum ResourceType {
578
633
  LAMBDA_FUNCTION = "LambdaFunction",
579
634
  NOT_APPLICABLE = "NotApplicable"
580
635
  }
636
+ /**
637
+ * @public
638
+ */
581
639
  export declare enum ScopeName {
582
640
  ACCOUNT_ID = "AccountId",
583
641
  ORGANIZATION = "Organization",
584
642
  RESOURCE_ARN = "ResourceArn"
585
643
  }
586
644
  /**
645
+ * @public
587
646
  * <p>Describes the scope of a recommendation preference.</p>
588
647
  * <p>Recommendation preferences can be created at the organization level (for management
589
648
  * accounts of an organization only), account level, and resource level. For more
@@ -649,6 +708,9 @@ export interface Scope {
649
708
  */
650
709
  value?: string;
651
710
  }
711
+ /**
712
+ * @public
713
+ */
652
714
  export interface DeleteRecommendationPreferencesRequest {
653
715
  /**
654
716
  * <p>The target resource type of the recommendation preference to delete.</p>
@@ -675,9 +737,13 @@ export interface DeleteRecommendationPreferencesRequest {
675
737
  */
676
738
  recommendationPreferenceNames: (RecommendationPreferenceName | string)[] | undefined;
677
739
  }
740
+ /**
741
+ * @public
742
+ */
678
743
  export interface DeleteRecommendationPreferencesResponse {
679
744
  }
680
745
  /**
746
+ * @public
681
747
  * <p>An internal error has occurred. Try your call again.</p>
682
748
  */
683
749
  export declare class InternalServerException extends __BaseException {
@@ -689,6 +755,7 @@ export declare class InternalServerException extends __BaseException {
689
755
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
690
756
  }
691
757
  /**
758
+ * @public
692
759
  * <p>The value supplied for the input parameter is out of range or not valid.</p>
693
760
  */
694
761
  export declare class InvalidParameterValueException extends __BaseException {
@@ -700,6 +767,7 @@ export declare class InvalidParameterValueException extends __BaseException {
700
767
  constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
701
768
  }
702
769
  /**
770
+ * @public
703
771
  * <p>The request must contain either a valid (registered) Amazon Web Services access key ID
704
772
  * or X.509 certificate.</p>
705
773
  */
@@ -712,6 +780,7 @@ export declare class MissingAuthenticationToken extends __BaseException {
712
780
  constructor(opts: __ExceptionOptionType<MissingAuthenticationToken, __BaseException>);
713
781
  }
714
782
  /**
783
+ * @public
715
784
  * <p>The account is not opted in to Compute Optimizer.</p>
716
785
  */
717
786
  export declare class OptInRequiredException extends __BaseException {
@@ -723,6 +792,7 @@ export declare class OptInRequiredException extends __BaseException {
723
792
  constructor(opts: __ExceptionOptionType<OptInRequiredException, __BaseException>);
724
793
  }
725
794
  /**
795
+ * @public
726
796
  * <p>A resource that is required for the action doesn't exist.</p>
727
797
  */
728
798
  export declare class ResourceNotFoundException extends __BaseException {
@@ -734,6 +804,7 @@ export declare class ResourceNotFoundException extends __BaseException {
734
804
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
735
805
  }
736
806
  /**
807
+ * @public
737
808
  * <p>The request has failed due to a temporary failure of the server.</p>
738
809
  */
739
810
  export declare class ServiceUnavailableException extends __BaseException {
@@ -745,6 +816,7 @@ export declare class ServiceUnavailableException extends __BaseException {
745
816
  constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
746
817
  }
747
818
  /**
819
+ * @public
748
820
  * <p>The request was denied due to request throttling.</p>
749
821
  */
750
822
  export declare class ThrottlingException extends __BaseException {
@@ -755,11 +827,15 @@ export declare class ThrottlingException extends __BaseException {
755
827
  */
756
828
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
757
829
  }
830
+ /**
831
+ * @public
832
+ */
758
833
  export declare enum JobFilterName {
759
834
  JOB_STATUS = "JobStatus",
760
835
  RESOURCE_TYPE = "ResourceType"
761
836
  }
762
837
  /**
838
+ * @public
763
839
  * <p>Describes a filter that returns a more specific list of recommendation export jobs.
764
840
  * Use this filter with the <a>DescribeRecommendationExportJobs</a>
765
841
  * action.</p>
@@ -796,6 +872,9 @@ export interface JobFilter {
796
872
  */
797
873
  values?: string[];
798
874
  }
875
+ /**
876
+ * @public
877
+ */
799
878
  export interface DescribeRecommendationExportJobsRequest {
800
879
  /**
801
880
  * <p>The identification numbers of the export jobs to return.</p>
@@ -821,6 +900,7 @@ export interface DescribeRecommendationExportJobsRequest {
821
900
  maxResults?: number;
822
901
  }
823
902
  /**
903
+ * @public
824
904
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
825
905
  * object keys of a recommendations export file, and its associated metadata file.</p>
826
906
  */
@@ -842,6 +922,7 @@ export interface S3Destination {
842
922
  metadataKey?: string;
843
923
  }
844
924
  /**
925
+ * @public
845
926
  * <p>Describes the destination of the recommendations export and metadata files.</p>
846
927
  */
847
928
  export interface ExportDestination {
@@ -852,6 +933,9 @@ export interface ExportDestination {
852
933
  */
853
934
  s3?: S3Destination;
854
935
  }
936
+ /**
937
+ * @public
938
+ */
855
939
  export declare enum JobStatus {
856
940
  COMPLETE = "Complete",
857
941
  FAILED = "Failed",
@@ -859,6 +943,7 @@ export declare enum JobStatus {
859
943
  QUEUED = "Queued"
860
944
  }
861
945
  /**
946
+ * @public
862
947
  * <p>Describes a recommendation export job.</p>
863
948
  * <p>Use the <a>DescribeRecommendationExportJobs</a> action to view your
864
949
  * recommendation export jobs.</p>
@@ -895,6 +980,9 @@ export interface RecommendationExportJob {
895
980
  */
896
981
  failureReason?: string;
897
982
  }
983
+ /**
984
+ * @public
985
+ */
898
986
  export interface DescribeRecommendationExportJobsResponse {
899
987
  /**
900
988
  * <p>An array of objects that describe recommendation export jobs.</p>
@@ -906,6 +994,9 @@ export interface DescribeRecommendationExportJobsResponse {
906
994
  */
907
995
  nextToken?: string;
908
996
  }
997
+ /**
998
+ * @public
999
+ */
909
1000
  export declare enum ExportableAutoScalingGroupField {
910
1001
  ACCOUNT_ID = "AccountId",
911
1002
  AUTO_SCALING_GROUP_ARN = "AutoScalingGroupArn",
@@ -962,15 +1053,22 @@ export declare enum ExportableAutoScalingGroupField {
962
1053
  UTILIZATION_METRICS_NETWORK_PACKETS_IN_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsInPerSecondMaximum",
963
1054
  UTILIZATION_METRICS_NETWORK_PACKETS_OUT_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsOutPerSecondMaximum"
964
1055
  }
1056
+ /**
1057
+ * @public
1058
+ */
965
1059
  export declare enum FileFormat {
966
1060
  CSV = "Csv"
967
1061
  }
1062
+ /**
1063
+ * @public
1064
+ */
968
1065
  export declare enum FilterName {
969
1066
  FINDING = "Finding",
970
1067
  FINDING_REASON_CODES = "FindingReasonCodes",
971
1068
  RECOMMENDATION_SOURCE_TYPE = "RecommendationSourceType"
972
1069
  }
973
1070
  /**
1071
+ * @public
974
1072
  * <p>Describes a filter that returns a more specific list of recommendations. Use this
975
1073
  * filter with the <a>GetAutoScalingGroupRecommendations</a> and <a>GetEC2InstanceRecommendations</a> actions.</p>
976
1074
  * <p>You can use <code>EBSFilter</code> with the <a>GetEBSVolumeRecommendations</a> action,
@@ -1159,6 +1257,7 @@ export interface Filter {
1159
1257
  values?: string[];
1160
1258
  }
1161
1259
  /**
1260
+ * @public
1162
1261
  * <p>Describes the recommendation preferences to return in the response of a <a>GetAutoScalingGroupRecommendations</a>, <a>GetEC2InstanceRecommendations</a>, and <a>GetEC2RecommendationProjectedMetrics</a> request.</p>
1163
1262
  */
1164
1263
  export interface RecommendationPreferences {
@@ -1183,6 +1282,7 @@ export interface RecommendationPreferences {
1183
1282
  cpuVendorArchitectures?: (CpuVendorArchitecture | string)[];
1184
1283
  }
1185
1284
  /**
1285
+ * @public
1186
1286
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
1187
1287
  * key prefix for a recommendations export job.</p>
1188
1288
  * <p>You must create the destination Amazon S3 bucket for your recommendations
@@ -1204,6 +1304,9 @@ export interface S3DestinationConfig {
1204
1304
  */
1205
1305
  keyPrefix?: string;
1206
1306
  }
1307
+ /**
1308
+ * @public
1309
+ */
1207
1310
  export interface ExportAutoScalingGroupRecommendationsRequest {
1208
1311
  /**
1209
1312
  * <p>The IDs of the Amazon Web Services accounts for which to export Auto Scaling group
@@ -1265,6 +1368,9 @@ export interface ExportAutoScalingGroupRecommendationsRequest {
1265
1368
  */
1266
1369
  recommendationPreferences?: RecommendationPreferences;
1267
1370
  }
1371
+ /**
1372
+ * @public
1373
+ */
1268
1374
  export interface ExportAutoScalingGroupRecommendationsResponse {
1269
1375
  /**
1270
1376
  * <p>The identification number of the export job.</p>
@@ -1279,6 +1385,7 @@ export interface ExportAutoScalingGroupRecommendationsResponse {
1279
1385
  s3Destination?: S3Destination;
1280
1386
  }
1281
1387
  /**
1388
+ * @public
1282
1389
  * <p>The request exceeds a limit of the service.</p>
1283
1390
  */
1284
1391
  export declare class LimitExceededException extends __BaseException {
@@ -1289,6 +1396,9 @@ export declare class LimitExceededException extends __BaseException {
1289
1396
  */
1290
1397
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
1291
1398
  }
1399
+ /**
1400
+ * @public
1401
+ */
1292
1402
  export declare enum ExportableVolumeField {
1293
1403
  ACCOUNT_ID = "AccountId",
1294
1404
  CURRENT_CONFIGURATION_VOLUME_BASELINE_IOPS = "CurrentConfigurationVolumeBaselineIOPS",
@@ -1319,10 +1429,14 @@ export declare enum ExportableVolumeField {
1319
1429
  UTILIZATION_METRICS_VOLUME_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsVolumeWriteOpsPerSecondMaximum",
1320
1430
  VOLUME_ARN = "VolumeArn"
1321
1431
  }
1432
+ /**
1433
+ * @public
1434
+ */
1322
1435
  export declare enum EBSFilterName {
1323
1436
  FINDING = "Finding"
1324
1437
  }
1325
1438
  /**
1439
+ * @public
1326
1440
  * <p>Describes a filter that returns a more specific list of Amazon Elastic Block Store
1327
1441
  * (Amazon EBS) volume recommendations. Use this filter with the <a>GetEBSVolumeRecommendations</a> action.</p>
1328
1442
  * <p>You can use <code>LambdaFunctionRecommendationFilter</code> with the <a>GetLambdaFunctionRecommendations</a> action, <code>JobFilter</code> with the
@@ -1342,6 +1456,9 @@ export interface EBSFilter {
1342
1456
  */
1343
1457
  values?: string[];
1344
1458
  }
1459
+ /**
1460
+ * @public
1461
+ */
1345
1462
  export interface ExportEBSVolumeRecommendationsRequest {
1346
1463
  /**
1347
1464
  * <p>The IDs of the Amazon Web Services accounts for which to export Amazon EBS
@@ -1398,6 +1515,9 @@ export interface ExportEBSVolumeRecommendationsRequest {
1398
1515
  */
1399
1516
  includeMemberAccounts?: boolean;
1400
1517
  }
1518
+ /**
1519
+ * @public
1520
+ */
1401
1521
  export interface ExportEBSVolumeRecommendationsResponse {
1402
1522
  /**
1403
1523
  * <p>The identification number of the export job.</p>
@@ -1411,6 +1531,9 @@ export interface ExportEBSVolumeRecommendationsResponse {
1411
1531
  */
1412
1532
  s3Destination?: S3Destination;
1413
1533
  }
1534
+ /**
1535
+ * @public
1536
+ */
1414
1537
  export declare enum ExportableInstanceField {
1415
1538
  ACCOUNT_ID = "AccountId",
1416
1539
  CURRENT_INSTANCE_TYPE = "CurrentInstanceType",
@@ -1466,6 +1589,9 @@ export declare enum ExportableInstanceField {
1466
1589
  UTILIZATION_METRICS_NETWORK_PACKETS_IN_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsInPerSecondMaximum",
1467
1590
  UTILIZATION_METRICS_NETWORK_PACKETS_OUT_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsOutPerSecondMaximum"
1468
1591
  }
1592
+ /**
1593
+ * @public
1594
+ */
1469
1595
  export interface ExportEC2InstanceRecommendationsRequest {
1470
1596
  /**
1471
1597
  * <p>The IDs of the Amazon Web Services accounts for which to export instance
@@ -1527,6 +1653,9 @@ export interface ExportEC2InstanceRecommendationsRequest {
1527
1653
  */
1528
1654
  recommendationPreferences?: RecommendationPreferences;
1529
1655
  }
1656
+ /**
1657
+ * @public
1658
+ */
1530
1659
  export interface ExportEC2InstanceRecommendationsResponse {
1531
1660
  /**
1532
1661
  * <p>The identification number of the export job.</p>
@@ -1540,6 +1669,9 @@ export interface ExportEC2InstanceRecommendationsResponse {
1540
1669
  */
1541
1670
  s3Destination?: S3Destination;
1542
1671
  }
1672
+ /**
1673
+ * @public
1674
+ */
1543
1675
  export declare enum ExportableECSServiceField {
1544
1676
  ACCOUNT_ID = "AccountId",
1545
1677
  CURRENT_PERFORMANCE_RISK = "CurrentPerformanceRisk",
@@ -1565,11 +1697,15 @@ export declare enum ExportableECSServiceField {
1565
1697
  UTILIZATION_METRICS_CPU_MAXIMUM = "UtilizationMetricsCpuMaximum",
1566
1698
  UTILIZATION_METRICS_MEMORY_MAXIMUM = "UtilizationMetricsMemoryMaximum"
1567
1699
  }
1700
+ /**
1701
+ * @public
1702
+ */
1568
1703
  export declare enum ECSServiceRecommendationFilterName {
1569
1704
  FINDING = "Finding",
1570
1705
  FINDING_REASON_CODE = "FindingReasonCode"
1571
1706
  }
1572
1707
  /**
1708
+ * @public
1573
1709
  * <p>
1574
1710
  * Describes a filter that returns a more specific list of Amazon ECS service
1575
1711
  * recommendations. Use this filter with the <a>GetECSServiceRecommendations</a> action.
@@ -1607,6 +1743,9 @@ export interface ECSServiceRecommendationFilter {
1607
1743
  */
1608
1744
  values?: string[];
1609
1745
  }
1746
+ /**
1747
+ * @public
1748
+ */
1610
1749
  export interface ExportECSServiceRecommendationsRequest {
1611
1750
  /**
1612
1751
  * <p>
@@ -1669,6 +1808,9 @@ export interface ExportECSServiceRecommendationsRequest {
1669
1808
  */
1670
1809
  includeMemberAccounts?: boolean;
1671
1810
  }
1811
+ /**
1812
+ * @public
1813
+ */
1672
1814
  export interface ExportECSServiceRecommendationsResponse {
1673
1815
  /**
1674
1816
  * <p>
@@ -1685,6 +1827,9 @@ export interface ExportECSServiceRecommendationsResponse {
1685
1827
  */
1686
1828
  s3Destination?: S3Destination;
1687
1829
  }
1830
+ /**
1831
+ * @public
1832
+ */
1688
1833
  export declare enum ExportableLambdaFunctionField {
1689
1834
  ACCOUNT_ID = "AccountId",
1690
1835
  CURRENT_CONFIGURATION_MEMORY_SIZE = "CurrentConfigurationMemorySize",
@@ -1713,11 +1858,15 @@ export declare enum ExportableLambdaFunctionField {
1713
1858
  UTILIZATION_METRICS_MEMORY_AVERAGE = "UtilizationMetricsMemoryAverage",
1714
1859
  UTILIZATION_METRICS_MEMORY_MAXIMUM = "UtilizationMetricsMemoryMaximum"
1715
1860
  }
1861
+ /**
1862
+ * @public
1863
+ */
1716
1864
  export declare enum LambdaFunctionRecommendationFilterName {
1717
1865
  FINDING = "Finding",
1718
1866
  FINDING_REASON_CODE = "FindingReasonCode"
1719
1867
  }
1720
1868
  /**
1869
+ * @public
1721
1870
  * <p>Describes a filter that returns a more specific list of Lambda
1722
1871
  * function recommendations. Use this filter with the <a>GetLambdaFunctionRecommendations</a> action.</p>
1723
1872
  * <p>You can use <code>EBSFilter</code> with the <a>GetEBSVolumeRecommendations</a> action, <code>JobFilter</code> with the
@@ -1753,6 +1902,9 @@ export interface LambdaFunctionRecommendationFilter {
1753
1902
  */
1754
1903
  values?: string[];
1755
1904
  }
1905
+ /**
1906
+ * @public
1907
+ */
1756
1908
  export interface ExportLambdaFunctionRecommendationsRequest {
1757
1909
  /**
1758
1910
  * <p>The IDs of the Amazon Web Services accounts for which to export Lambda
@@ -1809,6 +1961,9 @@ export interface ExportLambdaFunctionRecommendationsRequest {
1809
1961
  */
1810
1962
  includeMemberAccounts?: boolean;
1811
1963
  }
1964
+ /**
1965
+ * @public
1966
+ */
1812
1967
  export interface ExportLambdaFunctionRecommendationsResponse {
1813
1968
  /**
1814
1969
  * <p>The identification number of the export job.</p>
@@ -1822,6 +1977,9 @@ export interface ExportLambdaFunctionRecommendationsResponse {
1822
1977
  */
1823
1978
  s3Destination?: S3Destination;
1824
1979
  }
1980
+ /**
1981
+ * @public
1982
+ */
1825
1983
  export interface GetAutoScalingGroupRecommendationsRequest {
1826
1984
  /**
1827
1985
  * <p>The ID of the Amazon Web Services account for which to return Auto Scaling group
@@ -1860,6 +2018,7 @@ export interface GetAutoScalingGroupRecommendationsRequest {
1860
2018
  recommendationPreferences?: RecommendationPreferences;
1861
2019
  }
1862
2020
  /**
2021
+ * @public
1863
2022
  * <p>Describes an error experienced when getting recommendations.</p>
1864
2023
  * <p>For example, an error is returned if you request recommendations for an unsupported
1865
2024
  * Auto Scaling group, or if you request recommendations for an instance of an
@@ -1879,6 +2038,9 @@ export interface GetRecommendationError {
1879
2038
  */
1880
2039
  message?: string;
1881
2040
  }
2041
+ /**
2042
+ * @public
2043
+ */
1882
2044
  export interface GetAutoScalingGroupRecommendationsResponse {
1883
2045
  /**
1884
2046
  * <p>The token to use to advance to the next page of Auto Scaling group
@@ -1898,6 +2060,9 @@ export interface GetAutoScalingGroupRecommendationsResponse {
1898
2060
  */
1899
2061
  errors?: GetRecommendationError[];
1900
2062
  }
2063
+ /**
2064
+ * @public
2065
+ */
1901
2066
  export interface GetEBSVolumeRecommendationsRequest {
1902
2067
  /**
1903
2068
  * <p>The Amazon Resource Name (ARN) of the volumes for which to return
@@ -1929,6 +2094,7 @@ export interface GetEBSVolumeRecommendationsRequest {
1929
2094
  accountIds?: string[];
1930
2095
  }
1931
2096
  /**
2097
+ * @public
1932
2098
  * <p>Describes the configuration of an Amazon Elastic Block Store (Amazon EBS)
1933
2099
  * volume.</p>
1934
2100
  */
@@ -1962,10 +2128,16 @@ export interface VolumeConfiguration {
1962
2128
  */
1963
2129
  volumeBurstThroughput?: number;
1964
2130
  }
2131
+ /**
2132
+ * @public
2133
+ */
1965
2134
  export declare enum EBSFinding {
1966
2135
  NOT_OPTIMIZED = "NotOptimized",
1967
2136
  OPTIMIZED = "Optimized"
1968
2137
  }
2138
+ /**
2139
+ * @public
2140
+ */
1969
2141
  export declare enum EBSMetricName {
1970
2142
  VOLUME_READ_BYTES_PER_SECOND = "VolumeReadBytesPerSecond",
1971
2143
  VOLUME_READ_OPS_PER_SECOND = "VolumeReadOpsPerSecond",
@@ -1973,6 +2145,7 @@ export declare enum EBSMetricName {
1973
2145
  VOLUME_WRITE_OPS_PER_SECOND = "VolumeWriteOpsPerSecond"
1974
2146
  }
1975
2147
  /**
2148
+ * @public
1976
2149
  * <p>Describes a utilization metric of an Amazon Elastic Block Store (Amazon EBS)
1977
2150
  * volume.</p>
1978
2151
  * <p>Compare the utilization metric data of your resource against its projected utilization
@@ -2032,6 +2205,7 @@ export interface EBSUtilizationMetric {
2032
2205
  value?: number;
2033
2206
  }
2034
2207
  /**
2208
+ * @public
2035
2209
  * <p>Describes a recommendation option for an Amazon Elastic Block Store (Amazon EBS)
2036
2210
  * instance.</p>
2037
2211
  */
@@ -2064,6 +2238,7 @@ export interface VolumeRecommendationOption {
2064
2238
  savingsOpportunity?: SavingsOpportunity;
2065
2239
  }
2066
2240
  /**
2241
+ * @public
2067
2242
  * <p>Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.</p>
2068
2243
  */
2069
2244
  export interface VolumeRecommendation {
@@ -2127,6 +2302,9 @@ export interface VolumeRecommendation {
2127
2302
  */
2128
2303
  currentPerformanceRisk?: CurrentPerformanceRisk | string;
2129
2304
  }
2305
+ /**
2306
+ * @public
2307
+ */
2130
2308
  export interface GetEBSVolumeRecommendationsResponse {
2131
2309
  /**
2132
2310
  * <p>The token to use to advance to the next page of volume recommendations.</p>
@@ -2145,6 +2323,9 @@ export interface GetEBSVolumeRecommendationsResponse {
2145
2323
  */
2146
2324
  errors?: GetRecommendationError[];
2147
2325
  }
2326
+ /**
2327
+ * @public
2328
+ */
2148
2329
  export interface GetEC2InstanceRecommendationsRequest {
2149
2330
  /**
2150
2331
  * <p>The Amazon Resource Name (ARN) of the instances for which to return
@@ -2180,6 +2361,9 @@ export interface GetEC2InstanceRecommendationsRequest {
2180
2361
  */
2181
2362
  recommendationPreferences?: RecommendationPreferences;
2182
2363
  }
2364
+ /**
2365
+ * @public
2366
+ */
2183
2367
  export declare enum InstanceRecommendationFindingReasonCode {
2184
2368
  CPU_OVER_PROVISIONED = "CPUOverprovisioned",
2185
2369
  CPU_UNDER_PROVISIONED = "CPUUnderprovisioned",
@@ -2198,6 +2382,9 @@ export declare enum InstanceRecommendationFindingReasonCode {
2198
2382
  NETWORK_PPS_OVER_PROVISIONED = "NetworkPPSOverprovisioned",
2199
2383
  NETWORK_PPS_UNDER_PROVISIONED = "NetworkPPSUnderprovisioned"
2200
2384
  }
2385
+ /**
2386
+ * @public
2387
+ */
2201
2388
  export declare enum PlatformDifference {
2202
2389
  ARCHITECTURE = "Architecture",
2203
2390
  HYPERVISOR = "Hypervisor",
@@ -2207,6 +2394,7 @@ export declare enum PlatformDifference {
2207
2394
  VIRTUALIZATION_TYPE = "VirtualizationType"
2208
2395
  }
2209
2396
  /**
2397
+ * @public
2210
2398
  * <p>Describes a recommendation option for an Amazon EC2 instance.</p>
2211
2399
  */
2212
2400
  export interface InstanceRecommendationOption {
@@ -2365,6 +2553,9 @@ export interface InstanceRecommendationOption {
2365
2553
  */
2366
2554
  migrationEffort?: MigrationEffort | string;
2367
2555
  }
2556
+ /**
2557
+ * @public
2558
+ */
2368
2559
  export declare enum RecommendationSourceType {
2369
2560
  AUTO_SCALING_GROUP = "AutoScalingGroup",
2370
2561
  EBS_VOLUME = "EbsVolume",
@@ -2373,6 +2564,7 @@ export declare enum RecommendationSourceType {
2373
2564
  LAMBDA_FUNCTION = "LambdaFunction"
2374
2565
  }
2375
2566
  /**
2567
+ * @public
2376
2568
  * <p>Describes the source of a recommendation, such as an Amazon EC2 instance or
2377
2569
  * Auto Scaling group.</p>
2378
2570
  */
@@ -2387,6 +2579,7 @@ export interface RecommendationSource {
2387
2579
  recommendationSourceType?: RecommendationSourceType | string;
2388
2580
  }
2389
2581
  /**
2582
+ * @public
2390
2583
  * <p>Describes an Amazon EC2 instance recommendation.</p>
2391
2584
  */
2392
2585
  export interface InstanceRecommendation {
@@ -2723,6 +2916,9 @@ export interface InstanceRecommendation {
2723
2916
  */
2724
2917
  inferredWorkloadTypes?: (InferredWorkloadType | string)[];
2725
2918
  }
2919
+ /**
2920
+ * @public
2921
+ */
2726
2922
  export interface GetEC2InstanceRecommendationsResponse {
2727
2923
  /**
2728
2924
  * <p>The token to use to advance to the next page of instance recommendations.</p>
@@ -2741,6 +2937,9 @@ export interface GetEC2InstanceRecommendationsResponse {
2741
2937
  */
2742
2938
  errors?: GetRecommendationError[];
2743
2939
  }
2940
+ /**
2941
+ * @public
2942
+ */
2744
2943
  export interface GetEC2RecommendationProjectedMetricsRequest {
2745
2944
  /**
2746
2945
  * <p>The Amazon Resource Name (ARN) of the instances for which to return recommendation
@@ -2770,6 +2969,7 @@ export interface GetEC2RecommendationProjectedMetricsRequest {
2770
2969
  recommendationPreferences?: RecommendationPreferences;
2771
2970
  }
2772
2971
  /**
2972
+ * @public
2773
2973
  * <p>Describes a projected utilization metric of a recommendation option, such as an
2774
2974
  * Amazon EC2 instance. This represents the projected utilization of a
2775
2975
  * recommendation option had you used that resource during the analyzed period.</p>
@@ -2826,6 +3026,7 @@ export interface ProjectedMetric {
2826
3026
  values?: number[];
2827
3027
  }
2828
3028
  /**
3029
+ * @public
2829
3030
  * <p>Describes a projected utilization metric of a recommendation option.</p>
2830
3031
  * <note>
2831
3032
  * <p>The <code>Cpu</code> and <code>Memory</code> metrics are the only projected
@@ -2852,12 +3053,18 @@ export interface RecommendedOptionProjectedMetric {
2852
3053
  */
2853
3054
  projectedMetrics?: ProjectedMetric[];
2854
3055
  }
3056
+ /**
3057
+ * @public
3058
+ */
2855
3059
  export interface GetEC2RecommendationProjectedMetricsResponse {
2856
3060
  /**
2857
3061
  * <p>An array of objects that describes projected metrics.</p>
2858
3062
  */
2859
3063
  recommendedOptionProjectedMetrics?: RecommendedOptionProjectedMetric[];
2860
3064
  }
3065
+ /**
3066
+ * @public
3067
+ */
2861
3068
  export interface GetECSServiceRecommendationProjectedMetricsRequest {
2862
3069
  /**
2863
3070
  * <p>
@@ -2896,11 +3103,15 @@ export interface GetECSServiceRecommendationProjectedMetricsRequest {
2896
3103
  */
2897
3104
  endTime: Date | undefined;
2898
3105
  }
3106
+ /**
3107
+ * @public
3108
+ */
2899
3109
  export declare enum ECSServiceMetricName {
2900
3110
  CPU = "Cpu",
2901
3111
  MEMORY = "Memory"
2902
3112
  }
2903
3113
  /**
3114
+ * @public
2904
3115
  * <p>
2905
3116
  * Describes the projected metrics of an Amazon ECS service recommendation option.
2906
3117
  * </p>
@@ -2947,6 +3158,7 @@ export interface ECSServiceProjectedMetric {
2947
3158
  lowerBoundValues?: number[];
2948
3159
  }
2949
3160
  /**
3161
+ * @public
2950
3162
  * <p>
2951
3163
  * Describes the projected metrics of an Amazon ECS service recommendation option.
2952
3164
  * </p>
@@ -2973,6 +3185,9 @@ export interface ECSServiceRecommendedOptionProjectedMetric {
2973
3185
  */
2974
3186
  projectedMetrics?: ECSServiceProjectedMetric[];
2975
3187
  }
3188
+ /**
3189
+ * @public
3190
+ */
2976
3191
  export interface GetECSServiceRecommendationProjectedMetricsResponse {
2977
3192
  /**
2978
3193
  * <p>
@@ -2981,6 +3196,9 @@ export interface GetECSServiceRecommendationProjectedMetricsResponse {
2981
3196
  */
2982
3197
  recommendedOptionProjectedMetrics?: ECSServiceRecommendedOptionProjectedMetric[];
2983
3198
  }
3199
+ /**
3200
+ * @public
3201
+ */
2984
3202
  export interface GetECSServiceRecommendationsRequest {
2985
3203
  /**
2986
3204
  * <p>
@@ -3026,6 +3244,7 @@ export interface GetECSServiceRecommendationsRequest {
3026
3244
  accountIds?: string[];
3027
3245
  }
3028
3246
  /**
3247
+ * @public
3029
3248
  * <p>
3030
3249
  * The memory size configurations of a container.
3031
3250
  * </p>
@@ -3045,6 +3264,7 @@ export interface MemorySizeConfiguration {
3045
3264
  memoryReservation?: number;
3046
3265
  }
3047
3266
  /**
3267
+ * @public
3048
3268
  * <p>
3049
3269
  * Describes the container configurations within the tasks of your Amazon ECS service.
3050
3270
  * </p>
@@ -3070,6 +3290,7 @@ export interface ContainerConfiguration {
3070
3290
  cpu?: number;
3071
3291
  }
3072
3292
  /**
3293
+ * @public
3073
3294
  * <p>
3074
3295
  * The Amazon ECS service configurations used for recommendations.
3075
3296
  * </p>
@@ -3127,22 +3348,32 @@ export interface ServiceConfiguration {
3127
3348
  */
3128
3349
  taskDefinitionArn?: string;
3129
3350
  }
3351
+ /**
3352
+ * @public
3353
+ */
3130
3354
  export declare enum ECSServiceRecommendationFinding {
3131
3355
  OPTIMIZED = "Optimized",
3132
3356
  OVER_PROVISIONED = "Overprovisioned",
3133
3357
  UNDER_PROVISIONED = "Underprovisioned"
3134
3358
  }
3359
+ /**
3360
+ * @public
3361
+ */
3135
3362
  export declare enum ECSServiceRecommendationFindingReasonCode {
3136
3363
  CPU_OVER_PROVISIONED = "CPUOverprovisioned",
3137
3364
  CPU_UNDER_PROVISIONED = "CPUUnderprovisioned",
3138
3365
  MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
3139
3366
  MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned"
3140
3367
  }
3368
+ /**
3369
+ * @public
3370
+ */
3141
3371
  export declare enum ECSServiceLaunchType {
3142
3372
  EC2 = "EC2",
3143
3373
  FARGATE = "Fargate"
3144
3374
  }
3145
3375
  /**
3376
+ * @public
3146
3377
  * <p>
3147
3378
  * The CPU and memory recommendations for a container within the tasks of your Amazon ECS service.
3148
3379
  * </p>
@@ -3167,11 +3398,15 @@ export interface ContainerRecommendation {
3167
3398
  */
3168
3399
  cpu?: number;
3169
3400
  }
3401
+ /**
3402
+ * @public
3403
+ */
3170
3404
  export declare enum ECSServiceMetricStatistic {
3171
3405
  AVERAGE = "Average",
3172
3406
  MAXIMUM = "Maximum"
3173
3407
  }
3174
3408
  /**
3409
+ * @public
3175
3410
  * <p>
3176
3411
  * Describes the projected utilization metrics of an Amazon ECS service recommendation option.
3177
3412
  * </p>
@@ -3227,6 +3462,7 @@ export interface ECSServiceProjectedUtilizationMetric {
3227
3462
  upperBoundValue?: number;
3228
3463
  }
3229
3464
  /**
3465
+ * @public
3230
3466
  * <p>
3231
3467
  * Describes the recommendation options for an Amazon ECS service.
3232
3468
  * </p>
@@ -3277,6 +3513,7 @@ export interface ECSServiceRecommendationOption {
3277
3513
  containerRecommendations?: ContainerRecommendation[];
3278
3514
  }
3279
3515
  /**
3516
+ * @public
3280
3517
  * <p>
3281
3518
  * Describes the utilization metric of an Amazon ECS service.
3282
3519
  * </p>
@@ -3324,6 +3561,7 @@ export interface ECSServiceUtilizationMetric {
3324
3561
  value?: number;
3325
3562
  }
3326
3563
  /**
3564
+ * @public
3327
3565
  * <p>
3328
3566
  * Describes an Amazon ECS service recommendation.
3329
3567
  * </p>
@@ -3475,6 +3713,9 @@ export interface ECSServiceRecommendation {
3475
3713
  */
3476
3714
  currentPerformanceRisk?: CurrentPerformanceRisk | string;
3477
3715
  }
3716
+ /**
3717
+ * @public
3718
+ */
3478
3719
  export interface GetECSServiceRecommendationsResponse {
3479
3720
  /**
3480
3721
  * <p>
@@ -3495,6 +3736,9 @@ export interface GetECSServiceRecommendationsResponse {
3495
3736
  */
3496
3737
  errors?: GetRecommendationError[];
3497
3738
  }
3739
+ /**
3740
+ * @public
3741
+ */
3498
3742
  export interface GetEffectiveRecommendationPreferencesRequest {
3499
3743
  /**
3500
3744
  * <p>The Amazon Resource Name (ARN) of the resource for which to confirm effective
@@ -3503,6 +3747,9 @@ export interface GetEffectiveRecommendationPreferencesRequest {
3503
3747
  */
3504
3748
  resourceArn: string | undefined;
3505
3749
  }
3750
+ /**
3751
+ * @public
3752
+ */
3506
3753
  export interface GetEffectiveRecommendationPreferencesResponse {
3507
3754
  /**
3508
3755
  * <p>The status of the enhanced infrastructure metrics recommendation preference. Considers
@@ -3535,8 +3782,14 @@ export interface GetEffectiveRecommendationPreferencesResponse {
3535
3782
  */
3536
3783
  externalMetricsPreference?: ExternalMetricsPreference;
3537
3784
  }
3785
+ /**
3786
+ * @public
3787
+ */
3538
3788
  export interface GetEnrollmentStatusRequest {
3539
3789
  }
3790
+ /**
3791
+ * @public
3792
+ */
3540
3793
  export interface GetEnrollmentStatusResponse {
3541
3794
  /**
3542
3795
  * <p>The enrollment status of the account.</p>
@@ -3564,10 +3817,14 @@ export interface GetEnrollmentStatusResponse {
3564
3817
  */
3565
3818
  numberOfMemberAccountsOptedIn?: number;
3566
3819
  }
3820
+ /**
3821
+ * @public
3822
+ */
3567
3823
  export declare enum EnrollmentFilterName {
3568
3824
  STATUS = "Status"
3569
3825
  }
3570
3826
  /**
3827
+ * @public
3571
3828
  * <p>Describes a filter that returns a more specific list of account enrollment statuses.
3572
3829
  * Use this filter with the <a>GetEnrollmentStatusesForOrganization</a>
3573
3830
  * action.</p>
@@ -3586,6 +3843,9 @@ export interface EnrollmentFilter {
3586
3843
  */
3587
3844
  values?: string[];
3588
3845
  }
3846
+ /**
3847
+ * @public
3848
+ */
3589
3849
  export interface GetEnrollmentStatusesForOrganizationRequest {
3590
3850
  /**
3591
3851
  * <p>An array of objects to specify a filter that returns a more specific list of account
@@ -3604,6 +3864,9 @@ export interface GetEnrollmentStatusesForOrganizationRequest {
3604
3864
  */
3605
3865
  maxResults?: number;
3606
3866
  }
3867
+ /**
3868
+ * @public
3869
+ */
3607
3870
  export interface GetEnrollmentStatusesForOrganizationResponse {
3608
3871
  /**
3609
3872
  * <p>An array of objects that describe the enrollment statuses of organization member
@@ -3617,6 +3880,9 @@ export interface GetEnrollmentStatusesForOrganizationResponse {
3617
3880
  */
3618
3881
  nextToken?: string;
3619
3882
  }
3883
+ /**
3884
+ * @public
3885
+ */
3620
3886
  export interface GetLambdaFunctionRecommendationsRequest {
3621
3887
  /**
3622
3888
  * <p>The Amazon Resource Name (ARN) of the functions for which to return
@@ -3654,26 +3920,39 @@ export interface GetLambdaFunctionRecommendationsRequest {
3654
3920
  */
3655
3921
  maxResults?: number;
3656
3922
  }
3923
+ /**
3924
+ * @public
3925
+ */
3657
3926
  export declare enum LambdaFunctionRecommendationFinding {
3658
3927
  NOT_OPTIMIZED = "NotOptimized",
3659
3928
  OPTIMIZED = "Optimized",
3660
3929
  UNAVAILABLE = "Unavailable"
3661
3930
  }
3931
+ /**
3932
+ * @public
3933
+ */
3662
3934
  export declare enum LambdaFunctionRecommendationFindingReasonCode {
3663
3935
  INCONCLUSIVE = "Inconclusive",
3664
3936
  INSUFFICIENT_DATA = "InsufficientData",
3665
3937
  MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
3666
3938
  MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned"
3667
3939
  }
3940
+ /**
3941
+ * @public
3942
+ */
3668
3943
  export declare enum LambdaFunctionMemoryMetricName {
3669
3944
  DURATION = "Duration"
3670
3945
  }
3946
+ /**
3947
+ * @public
3948
+ */
3671
3949
  export declare enum LambdaFunctionMemoryMetricStatistic {
3672
3950
  EXPECTED = "Expected",
3673
3951
  LOWER_BOUND = "LowerBound",
3674
3952
  UPPER_BOUND = "UpperBound"
3675
3953
  }
3676
3954
  /**
3955
+ * @public
3677
3956
  * <p>Describes a projected utilization metric of an Lambda function
3678
3957
  * recommendation option.</p>
3679
3958
  */
@@ -3692,6 +3971,7 @@ export interface LambdaFunctionMemoryProjectedMetric {
3692
3971
  value?: number;
3693
3972
  }
3694
3973
  /**
3974
+ * @public
3695
3975
  * <p>Describes a recommendation option for an Lambda function.</p>
3696
3976
  */
3697
3977
  export interface LambdaFunctionMemoryRecommendationOption {
@@ -3716,15 +3996,22 @@ export interface LambdaFunctionMemoryRecommendationOption {
3716
3996
  */
3717
3997
  savingsOpportunity?: SavingsOpportunity;
3718
3998
  }
3999
+ /**
4000
+ * @public
4001
+ */
3719
4002
  export declare enum LambdaFunctionMetricName {
3720
4003
  DURATION = "Duration",
3721
4004
  MEMORY = "Memory"
3722
4005
  }
4006
+ /**
4007
+ * @public
4008
+ */
3723
4009
  export declare enum LambdaFunctionMetricStatistic {
3724
4010
  AVERAGE = "Average",
3725
4011
  MAXIMUM = "Maximum"
3726
4012
  }
3727
4013
  /**
4014
+ * @public
3728
4015
  * <p>Describes a utilization metric of an Lambda function.</p>
3729
4016
  */
3730
4017
  export interface LambdaFunctionUtilizationMetric {
@@ -3765,6 +4052,7 @@ export interface LambdaFunctionUtilizationMetric {
3765
4052
  value?: number;
3766
4053
  }
3767
4054
  /**
4055
+ * @public
3768
4056
  * <p>Describes an Lambda function recommendation.</p>
3769
4057
  */
3770
4058
  export interface LambdaFunctionRecommendation {
@@ -3911,6 +4199,9 @@ export interface LambdaFunctionRecommendation {
3911
4199
  */
3912
4200
  currentPerformanceRisk?: CurrentPerformanceRisk | string;
3913
4201
  }
4202
+ /**
4203
+ * @public
4204
+ */
3914
4205
  export interface GetLambdaFunctionRecommendationsResponse {
3915
4206
  /**
3916
4207
  * <p>The token to use to advance to the next page of function recommendations.</p>
@@ -3923,6 +4214,9 @@ export interface GetLambdaFunctionRecommendationsResponse {
3923
4214
  */
3924
4215
  lambdaFunctionRecommendations?: LambdaFunctionRecommendation[];
3925
4216
  }
4217
+ /**
4218
+ * @public
4219
+ */
3926
4220
  export interface GetRecommendationPreferencesRequest {
3927
4221
  /**
3928
4222
  * <p>The target resource type of the recommendation preference for which to return
@@ -3958,6 +4252,7 @@ export interface GetRecommendationPreferencesRequest {
3958
4252
  maxResults?: number;
3959
4253
  }
3960
4254
  /**
4255
+ * @public
3961
4256
  * <p>Describes a recommendation preference.</p>
3962
4257
  */
3963
4258
  export interface RecommendationPreferencesDetail {
@@ -4004,6 +4299,9 @@ export interface RecommendationPreferencesDetail {
4004
4299
  */
4005
4300
  externalMetricsPreference?: ExternalMetricsPreference;
4006
4301
  }
4302
+ /**
4303
+ * @public
4304
+ */
4007
4305
  export interface GetRecommendationPreferencesResponse {
4008
4306
  /**
4009
4307
  * <p>The token to use to advance to the next page of recommendation preferences.</p>
@@ -4016,6 +4314,9 @@ export interface GetRecommendationPreferencesResponse {
4016
4314
  */
4017
4315
  recommendationPreferencesDetails?: RecommendationPreferencesDetail[];
4018
4316
  }
4317
+ /**
4318
+ * @public
4319
+ */
4019
4320
  export interface GetRecommendationSummariesRequest {
4020
4321
  /**
4021
4322
  * <p>The ID of the Amazon Web Services account for which to return recommendation
@@ -4037,6 +4338,7 @@ export interface GetRecommendationSummariesRequest {
4037
4338
  maxResults?: number;
4038
4339
  }
4039
4340
  /**
4341
+ * @public
4040
4342
  * <p>Describes the performance risk ratings for a given resource type.</p>
4041
4343
  * <p>Resources with a <code>high</code> or <code>medium</code> rating are at risk of not
4042
4344
  * meeting the performance needs of their workloads, while resources with a
@@ -4061,11 +4363,15 @@ export interface CurrentPerformanceRiskRatings {
4061
4363
  */
4062
4364
  veryLow?: number;
4063
4365
  }
4366
+ /**
4367
+ * @public
4368
+ */
4064
4369
  export declare enum FindingReasonCode {
4065
4370
  MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
4066
4371
  MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned"
4067
4372
  }
4068
4373
  /**
4374
+ * @public
4069
4375
  * <p>A summary of a finding reason code.</p>
4070
4376
  */
4071
4377
  export interface ReasonCodeSummary {
@@ -4079,6 +4385,7 @@ export interface ReasonCodeSummary {
4079
4385
  value?: number;
4080
4386
  }
4081
4387
  /**
4388
+ * @public
4082
4389
  * <p>The summary of a recommendation.</p>
4083
4390
  */
4084
4391
  export interface Summary {
@@ -4096,6 +4403,7 @@ export interface Summary {
4096
4403
  reasonCodeSummaries?: ReasonCodeSummary[];
4097
4404
  }
4098
4405
  /**
4406
+ * @public
4099
4407
  * <p>A summary of a recommendation.</p>
4100
4408
  */
4101
4409
  export interface RecommendationSummary {
@@ -4122,6 +4430,9 @@ export interface RecommendationSummary {
4122
4430
  */
4123
4431
  currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings;
4124
4432
  }
4433
+ /**
4434
+ * @public
4435
+ */
4125
4436
  export interface GetRecommendationSummariesResponse {
4126
4437
  /**
4127
4438
  * <p>The token to use to advance to the next page of recommendation summaries.</p>
@@ -4134,6 +4445,9 @@ export interface GetRecommendationSummariesResponse {
4134
4445
  */
4135
4446
  recommendationSummaries?: RecommendationSummary[];
4136
4447
  }
4448
+ /**
4449
+ * @public
4450
+ */
4137
4451
  export interface PutRecommendationPreferencesRequest {
4138
4452
  /**
4139
4453
  * <p>The target resource type of the recommendation preference to create.</p>
@@ -4201,8 +4515,14 @@ export interface PutRecommendationPreferencesRequest {
4201
4515
  */
4202
4516
  externalMetricsPreference?: ExternalMetricsPreference;
4203
4517
  }
4518
+ /**
4519
+ * @public
4520
+ */
4204
4521
  export interface PutRecommendationPreferencesResponse {
4205
4522
  }
4523
+ /**
4524
+ * @public
4525
+ */
4206
4526
  export interface UpdateEnrollmentStatusRequest {
4207
4527
  /**
4208
4528
  * <p>The new enrollment status of the account.</p>
@@ -4235,6 +4555,9 @@ export interface UpdateEnrollmentStatusRequest {
4235
4555
  */
4236
4556
  includeMemberAccounts?: boolean;
4237
4557
  }
4558
+ /**
4559
+ * @public
4560
+ */
4238
4561
  export interface UpdateEnrollmentStatusResponse {
4239
4562
  /**
4240
4563
  * <p>The enrollment status of the account.</p>