@aws-sdk/client-compute-optimizer 3.454.0 → 3.460.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.
- package/README.md +23 -23
- package/dist-cjs/models/models_0.js +79 -6
- package/dist-cjs/protocols/Aws_json1_0.js +68 -0
- package/dist-es/models/models_0.js +77 -4
- package/dist-es/protocols/Aws_json1_0.js +68 -0
- package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +1 -1
- package/dist-types/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/ExportEBSVolumeRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/ExportEC2InstanceRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/ExportECSServiceRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +34 -0
- package/dist-types/commands/GetEBSVolumeRecommendationsCommand.d.ts +12 -0
- package/dist-types/commands/GetEC2InstanceRecommendationsCommand.d.ts +34 -0
- package/dist-types/commands/GetECSServiceRecommendationsCommand.d.ts +12 -0
- package/dist-types/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +24 -0
- package/dist-types/commands/GetLambdaFunctionRecommendationsCommand.d.ts +12 -0
- package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +25 -0
- package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +874 -14
- package/dist-types/ts3.4/models/models_0.d.ts +201 -5
- package/package.json +12 -12
|
@@ -1503,6 +1503,12 @@ const de_AccountEnrollmentStatuses = (output, context) => {
|
|
|
1503
1503
|
});
|
|
1504
1504
|
return retVal;
|
|
1505
1505
|
};
|
|
1506
|
+
const de_AutoScalingGroupEstimatedMonthlySavings = (output, context) => {
|
|
1507
|
+
return (0, smithy_client_1.take)(output, {
|
|
1508
|
+
currency: smithy_client_1.expectString,
|
|
1509
|
+
value: smithy_client_1.limitedParseDouble,
|
|
1510
|
+
});
|
|
1511
|
+
};
|
|
1506
1512
|
const de_AutoScalingGroupRecommendation = (output, context) => {
|
|
1507
1513
|
return (0, smithy_client_1.take)(output, {
|
|
1508
1514
|
accountId: smithy_client_1.expectString,
|
|
@@ -1529,6 +1535,7 @@ const de_AutoScalingGroupRecommendationOption = (output, context) => {
|
|
|
1529
1535
|
projectedUtilizationMetrics: (_) => de_ProjectedUtilizationMetrics(_, context),
|
|
1530
1536
|
rank: smithy_client_1.expectInt32,
|
|
1531
1537
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1538
|
+
savingsOpportunityAfterDiscounts: (_) => de_AutoScalingGroupSavingsOpportunityAfterDiscounts(_, context),
|
|
1532
1539
|
});
|
|
1533
1540
|
};
|
|
1534
1541
|
const de_AutoScalingGroupRecommendationOptions = (output, context) => {
|
|
@@ -1547,12 +1554,30 @@ const de_AutoScalingGroupRecommendations = (output, context) => {
|
|
|
1547
1554
|
});
|
|
1548
1555
|
return retVal;
|
|
1549
1556
|
};
|
|
1557
|
+
const de_AutoScalingGroupSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1558
|
+
return (0, smithy_client_1.take)(output, {
|
|
1559
|
+
estimatedMonthlySavings: (_) => de_AutoScalingGroupEstimatedMonthlySavings(_, context),
|
|
1560
|
+
savingsOpportunityPercentage: smithy_client_1.limitedParseDouble,
|
|
1561
|
+
});
|
|
1562
|
+
};
|
|
1550
1563
|
const de_DescribeRecommendationExportJobsResponse = (output, context) => {
|
|
1551
1564
|
return (0, smithy_client_1.take)(output, {
|
|
1552
1565
|
nextToken: smithy_client_1.expectString,
|
|
1553
1566
|
recommendationExportJobs: (_) => de_RecommendationExportJobs(_, context),
|
|
1554
1567
|
});
|
|
1555
1568
|
};
|
|
1569
|
+
const de_EBSEstimatedMonthlySavings = (output, context) => {
|
|
1570
|
+
return (0, smithy_client_1.take)(output, {
|
|
1571
|
+
currency: smithy_client_1.expectString,
|
|
1572
|
+
value: smithy_client_1.limitedParseDouble,
|
|
1573
|
+
});
|
|
1574
|
+
};
|
|
1575
|
+
const de_EBSSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1576
|
+
return (0, smithy_client_1.take)(output, {
|
|
1577
|
+
estimatedMonthlySavings: (_) => de_EBSEstimatedMonthlySavings(_, context),
|
|
1578
|
+
savingsOpportunityPercentage: smithy_client_1.limitedParseDouble,
|
|
1579
|
+
});
|
|
1580
|
+
};
|
|
1556
1581
|
const de_EBSUtilizationMetric = (output, context) => {
|
|
1557
1582
|
return (0, smithy_client_1.take)(output, {
|
|
1558
1583
|
name: smithy_client_1.expectString,
|
|
@@ -1568,6 +1593,18 @@ const de_EBSUtilizationMetrics = (output, context) => {
|
|
|
1568
1593
|
});
|
|
1569
1594
|
return retVal;
|
|
1570
1595
|
};
|
|
1596
|
+
const de_ECSEstimatedMonthlySavings = (output, context) => {
|
|
1597
|
+
return (0, smithy_client_1.take)(output, {
|
|
1598
|
+
currency: smithy_client_1.expectString,
|
|
1599
|
+
value: smithy_client_1.limitedParseDouble,
|
|
1600
|
+
});
|
|
1601
|
+
};
|
|
1602
|
+
const de_ECSSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1603
|
+
return (0, smithy_client_1.take)(output, {
|
|
1604
|
+
estimatedMonthlySavings: (_) => de_ECSEstimatedMonthlySavings(_, context),
|
|
1605
|
+
savingsOpportunityPercentage: smithy_client_1.limitedParseDouble,
|
|
1606
|
+
});
|
|
1607
|
+
};
|
|
1571
1608
|
const de_ECSServiceProjectedMetric = (output, context) => {
|
|
1572
1609
|
return (0, smithy_client_1.take)(output, {
|
|
1573
1610
|
lowerBoundValues: (_) => de_MetricValues(_, context),
|
|
@@ -1605,6 +1642,7 @@ const de_ECSServiceRecommendation = (output, context) => {
|
|
|
1605
1642
|
accountId: smithy_client_1.expectString,
|
|
1606
1643
|
currentPerformanceRisk: smithy_client_1.expectString,
|
|
1607
1644
|
currentServiceConfiguration: smithy_client_1._json,
|
|
1645
|
+
effectiveRecommendationPreferences: smithy_client_1._json,
|
|
1608
1646
|
finding: smithy_client_1.expectString,
|
|
1609
1647
|
findingReasonCodes: smithy_client_1._json,
|
|
1610
1648
|
lastRefreshTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
@@ -1623,6 +1661,7 @@ const de_ECSServiceRecommendationOption = (output, context) => {
|
|
|
1623
1661
|
memory: smithy_client_1.expectInt32,
|
|
1624
1662
|
projectedUtilizationMetrics: (_) => de_ECSServiceProjectedUtilizationMetrics(_, context),
|
|
1625
1663
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1664
|
+
savingsOpportunityAfterDiscounts: (_) => de_ECSSavingsOpportunityAfterDiscounts(_, context),
|
|
1626
1665
|
});
|
|
1627
1666
|
};
|
|
1628
1667
|
const de_ECSServiceRecommendationOptions = (output, context) => {
|
|
@@ -1763,6 +1802,12 @@ const de_InferredWorkloadSavings = (output, context) => {
|
|
|
1763
1802
|
});
|
|
1764
1803
|
return retVal;
|
|
1765
1804
|
};
|
|
1805
|
+
const de_InstanceEstimatedMonthlySavings = (output, context) => {
|
|
1806
|
+
return (0, smithy_client_1.take)(output, {
|
|
1807
|
+
currency: smithy_client_1.expectString,
|
|
1808
|
+
value: smithy_client_1.limitedParseDouble,
|
|
1809
|
+
});
|
|
1810
|
+
};
|
|
1766
1811
|
const de_InstanceRecommendation = (output, context) => {
|
|
1767
1812
|
return (0, smithy_client_1.take)(output, {
|
|
1768
1813
|
accountId: smithy_client_1.expectString,
|
|
@@ -1796,6 +1841,7 @@ const de_InstanceRecommendationOption = (output, context) => {
|
|
|
1796
1841
|
projectedUtilizationMetrics: (_) => de_ProjectedUtilizationMetrics(_, context),
|
|
1797
1842
|
rank: smithy_client_1.expectInt32,
|
|
1798
1843
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1844
|
+
savingsOpportunityAfterDiscounts: (_) => de_InstanceSavingsOpportunityAfterDiscounts(_, context),
|
|
1799
1845
|
});
|
|
1800
1846
|
};
|
|
1801
1847
|
const de_InstanceRecommendations = (output, context) => {
|
|
@@ -1806,6 +1852,18 @@ const de_InstanceRecommendations = (output, context) => {
|
|
|
1806
1852
|
});
|
|
1807
1853
|
return retVal;
|
|
1808
1854
|
};
|
|
1855
|
+
const de_InstanceSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1856
|
+
return (0, smithy_client_1.take)(output, {
|
|
1857
|
+
estimatedMonthlySavings: (_) => de_InstanceEstimatedMonthlySavings(_, context),
|
|
1858
|
+
savingsOpportunityPercentage: smithy_client_1.limitedParseDouble,
|
|
1859
|
+
});
|
|
1860
|
+
};
|
|
1861
|
+
const de_LambdaEstimatedMonthlySavings = (output, context) => {
|
|
1862
|
+
return (0, smithy_client_1.take)(output, {
|
|
1863
|
+
currency: smithy_client_1.expectString,
|
|
1864
|
+
value: smithy_client_1.limitedParseDouble,
|
|
1865
|
+
});
|
|
1866
|
+
};
|
|
1809
1867
|
const de_LambdaFunctionMemoryProjectedMetric = (output, context) => {
|
|
1810
1868
|
return (0, smithy_client_1.take)(output, {
|
|
1811
1869
|
name: smithy_client_1.expectString,
|
|
@@ -1827,6 +1885,7 @@ const de_LambdaFunctionMemoryRecommendationOption = (output, context) => {
|
|
|
1827
1885
|
projectedUtilizationMetrics: (_) => de_LambdaFunctionMemoryProjectedMetrics(_, context),
|
|
1828
1886
|
rank: smithy_client_1.expectInt32,
|
|
1829
1887
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1888
|
+
savingsOpportunityAfterDiscounts: (_) => de_LambdaSavingsOpportunityAfterDiscounts(_, context),
|
|
1830
1889
|
});
|
|
1831
1890
|
};
|
|
1832
1891
|
const de_LambdaFunctionMemoryRecommendationOptions = (output, context) => {
|
|
@@ -1842,6 +1901,7 @@ const de_LambdaFunctionRecommendation = (output, context) => {
|
|
|
1842
1901
|
accountId: smithy_client_1.expectString,
|
|
1843
1902
|
currentMemorySize: smithy_client_1.expectInt32,
|
|
1844
1903
|
currentPerformanceRisk: smithy_client_1.expectString,
|
|
1904
|
+
effectiveRecommendationPreferences: smithy_client_1._json,
|
|
1845
1905
|
finding: smithy_client_1.expectString,
|
|
1846
1906
|
findingReasonCodes: smithy_client_1._json,
|
|
1847
1907
|
functionArn: smithy_client_1.expectString,
|
|
@@ -1877,6 +1937,12 @@ const de_LambdaFunctionUtilizationMetrics = (output, context) => {
|
|
|
1877
1937
|
});
|
|
1878
1938
|
return retVal;
|
|
1879
1939
|
};
|
|
1940
|
+
const de_LambdaSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1941
|
+
return (0, smithy_client_1.take)(output, {
|
|
1942
|
+
estimatedMonthlySavings: (_) => de_LambdaEstimatedMonthlySavings(_, context),
|
|
1943
|
+
savingsOpportunityPercentage: smithy_client_1.limitedParseDouble,
|
|
1944
|
+
});
|
|
1945
|
+
};
|
|
1880
1946
|
const de_LicenseRecommendation = (output, context) => {
|
|
1881
1947
|
return (0, smithy_client_1.take)(output, {
|
|
1882
1948
|
accountId: smithy_client_1.expectString,
|
|
@@ -2069,6 +2135,7 @@ const de_VolumeRecommendation = (output, context) => {
|
|
|
2069
2135
|
accountId: smithy_client_1.expectString,
|
|
2070
2136
|
currentConfiguration: smithy_client_1._json,
|
|
2071
2137
|
currentPerformanceRisk: smithy_client_1.expectString,
|
|
2138
|
+
effectiveRecommendationPreferences: smithy_client_1._json,
|
|
2072
2139
|
finding: smithy_client_1.expectString,
|
|
2073
2140
|
lastRefreshTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
2074
2141
|
lookBackPeriodInDays: smithy_client_1.limitedParseDouble,
|
|
@@ -2084,6 +2151,7 @@ const de_VolumeRecommendationOption = (output, context) => {
|
|
|
2084
2151
|
performanceRisk: smithy_client_1.limitedParseDouble,
|
|
2085
2152
|
rank: smithy_client_1.expectInt32,
|
|
2086
2153
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
2154
|
+
savingsOpportunityAfterDiscounts: (_) => de_EBSSavingsOpportunityAfterDiscounts(_, context),
|
|
2087
2155
|
});
|
|
2088
2156
|
};
|
|
2089
2157
|
const de_VolumeRecommendationOptions = (output, context) => {
|
|
@@ -21,6 +21,10 @@ export const AutoScalingConfiguration = {
|
|
|
21
21
|
TARGET_TRACKING_SCALING_CPU: "TargetTrackingScalingCpu",
|
|
22
22
|
TARGET_TRACKING_SCALING_MEMORY: "TargetTrackingScalingMemory",
|
|
23
23
|
};
|
|
24
|
+
export const Currency = {
|
|
25
|
+
CNY: "CNY",
|
|
26
|
+
USD: "USD",
|
|
27
|
+
};
|
|
24
28
|
export const CurrentPerformanceRisk = {
|
|
25
29
|
HIGH: "High",
|
|
26
30
|
LOW: "Low",
|
|
@@ -45,6 +49,32 @@ export const InferredWorkloadTypesPreference = {
|
|
|
45
49
|
ACTIVE: "Active",
|
|
46
50
|
INACTIVE: "Inactive",
|
|
47
51
|
};
|
|
52
|
+
export const LookBackPeriodPreference = {
|
|
53
|
+
DAYS_14: "DAYS_14",
|
|
54
|
+
DAYS_32: "DAYS_32",
|
|
55
|
+
DAYS_93: "DAYS_93",
|
|
56
|
+
};
|
|
57
|
+
export const PreferredResourceName = {
|
|
58
|
+
EC2_INSTANCE_TYPES: "Ec2InstanceTypes",
|
|
59
|
+
};
|
|
60
|
+
export const InstanceSavingsEstimationModeSource = {
|
|
61
|
+
COST_EXPLORER_RIGHTSIZING: "CostExplorerRightsizing",
|
|
62
|
+
COST_OPTIMIZATION_HUB: "CostOptimizationHub",
|
|
63
|
+
PUBLIC_PRICING: "PublicPricing",
|
|
64
|
+
};
|
|
65
|
+
export const CustomizableMetricName = {
|
|
66
|
+
CPU_UTILIZATION: "CpuUtilization",
|
|
67
|
+
};
|
|
68
|
+
export const CustomizableMetricHeadroom = {
|
|
69
|
+
PERCENT_0: "PERCENT_0",
|
|
70
|
+
PERCENT_20: "PERCENT_20",
|
|
71
|
+
PERCENT_30: "PERCENT_30",
|
|
72
|
+
};
|
|
73
|
+
export const CustomizableMetricThreshold = {
|
|
74
|
+
P90: "P90",
|
|
75
|
+
P95: "P95",
|
|
76
|
+
P99_5: "P99_5",
|
|
77
|
+
};
|
|
48
78
|
export const Finding = {
|
|
49
79
|
NOT_OPTIMIZED: "NotOptimized",
|
|
50
80
|
OPTIMIZED: "Optimized",
|
|
@@ -90,14 +120,13 @@ export const MetricStatistic = {
|
|
|
90
120
|
AVERAGE: "Average",
|
|
91
121
|
MAXIMUM: "Maximum",
|
|
92
122
|
};
|
|
93
|
-
export const Currency = {
|
|
94
|
-
CNY: "CNY",
|
|
95
|
-
USD: "USD",
|
|
96
|
-
};
|
|
97
123
|
export const RecommendationPreferenceName = {
|
|
98
124
|
ENHANCED_INFRASTRUCTURE_METRICS: "EnhancedInfrastructureMetrics",
|
|
99
125
|
EXTERNAL_METRICS_PREFERENCE: "ExternalMetricsPreference",
|
|
100
126
|
INFERRED_WORKLOAD_TYPES: "InferredWorkloadTypes",
|
|
127
|
+
LOOKBACK_PERIOD_PREFERENCE: "LookBackPeriodPreference",
|
|
128
|
+
PREFERRED_RESOURCES: "PreferredResources",
|
|
129
|
+
UTILIZATION_PREFERENCES: "UtilizationPreferences",
|
|
101
130
|
};
|
|
102
131
|
export const ResourceType = {
|
|
103
132
|
AUTO_SCALING_GROUP: "AutoScalingGroup",
|
|
@@ -227,6 +256,9 @@ export const ExportableAutoScalingGroupField = {
|
|
|
227
256
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_CPU_VENDOR_ARCHITECTURES: "EffectiveRecommendationPreferencesCpuVendorArchitectures",
|
|
228
257
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_ENHANCED_INFRASTRUCTURE_METRICS: "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
|
|
229
258
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_INFERRED_WORKLOAD_TYPES: "EffectiveRecommendationPreferencesInferredWorkloadTypes",
|
|
259
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_LOOKBACK_PERIOD: "EffectiveRecommendationPreferencesLookBackPeriod",
|
|
260
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_PREFERRED_RESOURCES: "EffectiveRecommendationPreferencesPreferredResources",
|
|
261
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE: "EffectiveRecommendationPreferencesSavingsEstimationMode",
|
|
230
262
|
FINDING: "Finding",
|
|
231
263
|
INFERRED_WORKLOAD_TYPES: "InferredWorkloadTypes",
|
|
232
264
|
LAST_REFRESH_TIMESTAMP: "LastRefreshTimestamp",
|
|
@@ -236,7 +268,9 @@ export const ExportableAutoScalingGroupField = {
|
|
|
236
268
|
RECOMMENDATION_OPTIONS_CONFIGURATION_MAX_SIZE: "RecommendationOptionsConfigurationMaxSize",
|
|
237
269
|
RECOMMENDATION_OPTIONS_CONFIGURATION_MIN_SIZE: "RecommendationOptionsConfigurationMinSize",
|
|
238
270
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY: "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
271
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts",
|
|
239
272
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE: "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
273
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
240
274
|
RECOMMENDATION_OPTIONS_INSTANCE_GPU_INFO: "RecommendationOptionsInstanceGpuInfo",
|
|
241
275
|
RECOMMENDATION_OPTIONS_MEMORY: "RecommendationOptionsMemory",
|
|
242
276
|
RECOMMENDATION_OPTIONS_MIGRATION_EFFORT: "RecommendationOptionsMigrationEffort",
|
|
@@ -247,6 +281,7 @@ export const ExportableAutoScalingGroupField = {
|
|
|
247
281
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_GPU_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum",
|
|
248
282
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_GPU_MEMORY_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum",
|
|
249
283
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum",
|
|
284
|
+
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE: "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage",
|
|
250
285
|
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE: "RecommendationOptionsSavingsOpportunityPercentage",
|
|
251
286
|
RECOMMENDATION_OPTIONS_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE: "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice",
|
|
252
287
|
RECOMMENDATION_OPTIONS_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE: "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice",
|
|
@@ -301,6 +336,7 @@ export const ExportableVolumeField = {
|
|
|
301
336
|
CURRENT_CONFIGURATION_VOLUME_TYPE: "CurrentConfigurationVolumeType",
|
|
302
337
|
CURRENT_MONTHLY_PRICE: "CurrentMonthlyPrice",
|
|
303
338
|
CURRENT_PERFORMANCE_RISK: "CurrentPerformanceRisk",
|
|
339
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE: "EffectiveRecommendationPreferencesSavingsEstimationMode",
|
|
304
340
|
FINDING: "Finding",
|
|
305
341
|
LAST_REFRESH_TIMESTAMP: "LastRefreshTimestamp",
|
|
306
342
|
LOOKBACK_PERIOD_IN_DAYS: "LookbackPeriodInDays",
|
|
@@ -311,9 +347,12 @@ export const ExportableVolumeField = {
|
|
|
311
347
|
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_SIZE: "RecommendationOptionsConfigurationVolumeSize",
|
|
312
348
|
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_TYPE: "RecommendationOptionsConfigurationVolumeType",
|
|
313
349
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY: "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
350
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts",
|
|
314
351
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE: "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
352
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
315
353
|
RECOMMENDATION_OPTIONS_MONTHLY_PRICE: "RecommendationOptionsMonthlyPrice",
|
|
316
354
|
RECOMMENDATION_OPTIONS_PERFORMANCE_RISK: "RecommendationOptionsPerformanceRisk",
|
|
355
|
+
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE: "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage",
|
|
317
356
|
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE: "RecommendationOptionsSavingsOpportunityPercentage",
|
|
318
357
|
ROOT_VOLUME: "RootVolume",
|
|
319
358
|
TAGS: "Tags",
|
|
@@ -342,6 +381,10 @@ export const ExportableInstanceField = {
|
|
|
342
381
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_ENHANCED_INFRASTRUCTURE_METRICS: "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
|
|
343
382
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_EXTERNAL_METRICS_SOURCE: "EffectiveRecommendationPreferencesExternalMetricsSource",
|
|
344
383
|
EFFECTIVE_RECOMMENDATION_PREFERENCES_INFERRED_WORKLOAD_TYPES: "EffectiveRecommendationPreferencesInferredWorkloadTypes",
|
|
384
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_LOOKBACK_PERIOD: "EffectiveRecommendationPreferencesLookBackPeriod",
|
|
385
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_PREFERRED_RESOURCES: "EffectiveRecommendationPreferencesPreferredResources",
|
|
386
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE: "EffectiveRecommendationPreferencesSavingsEstimationMode",
|
|
387
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_UTILIZATION_PREFERENCES: "EffectiveRecommendationPreferencesUtilizationPreferences",
|
|
345
388
|
EXTERNAL_METRIC_STATUS_CODE: "ExternalMetricStatusCode",
|
|
346
389
|
EXTERNAL_METRIC_STATUS_REASON: "ExternalMetricStatusReason",
|
|
347
390
|
FINDING: "Finding",
|
|
@@ -356,7 +399,9 @@ export const ExportableInstanceField = {
|
|
|
356
399
|
RECOMMENDATIONS_SOURCES_RECOMMENDATION_SOURCE_ARN: "RecommendationsSourcesRecommendationSourceArn",
|
|
357
400
|
RECOMMENDATIONS_SOURCES_RECOMMENDATION_SOURCE_TYPE: "RecommendationsSourcesRecommendationSourceType",
|
|
358
401
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY: "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
402
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts",
|
|
359
403
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE: "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
404
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
360
405
|
RECOMMENDATION_OPTIONS_INSTANCE_GPU_INFO: "RecommendationOptionsInstanceGpuInfo",
|
|
361
406
|
RECOMMENDATION_OPTIONS_INSTANCE_TYPE: "RecommendationOptionsInstanceType",
|
|
362
407
|
RECOMMENDATION_OPTIONS_MEMORY: "RecommendationOptionsMemory",
|
|
@@ -369,6 +414,7 @@ export const ExportableInstanceField = {
|
|
|
369
414
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_GPU_MEMORY_PERCENTAGE_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum",
|
|
370
415
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_GPU_PERCENTAGE_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum",
|
|
371
416
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum",
|
|
417
|
+
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE: "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage",
|
|
372
418
|
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE: "RecommendationOptionsSavingsOpportunityPercentage",
|
|
373
419
|
RECOMMENDATION_OPTIONS_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE: "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice",
|
|
374
420
|
RECOMMENDATION_OPTIONS_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE: "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice",
|
|
@@ -400,6 +446,7 @@ export const ExportableECSServiceField = {
|
|
|
400
446
|
CURRENT_SERVICE_CONFIGURATION_MEMORY: "CurrentServiceConfigurationMemory",
|
|
401
447
|
CURRENT_SERVICE_CONFIGURATION_TASK_DEFINITION_ARN: "CurrentServiceConfigurationTaskDefinitionArn",
|
|
402
448
|
CURRENT_SERVICE_CONTAINER_CONFIGURATIONS: "CurrentServiceContainerConfigurations",
|
|
449
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE: "EffectiveRecommendationPreferencesSavingsEstimationMode",
|
|
403
450
|
FINDING: "Finding",
|
|
404
451
|
FINDING_REASON_CODES: "FindingReasonCodes",
|
|
405
452
|
LAST_REFRESH_TIMESTAMP: "LastRefreshTimestamp",
|
|
@@ -408,10 +455,13 @@ export const ExportableECSServiceField = {
|
|
|
408
455
|
RECOMMENDATION_OPTIONS_CONTAINER_RECOMMENDATIONS: "RecommendationOptionsContainerRecommendations",
|
|
409
456
|
RECOMMENDATION_OPTIONS_CPU: "RecommendationOptionsCpu",
|
|
410
457
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY: "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
458
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts",
|
|
411
459
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE: "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
460
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
412
461
|
RECOMMENDATION_OPTIONS_MEMORY: "RecommendationOptionsMemory",
|
|
413
462
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_CPU_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum",
|
|
414
463
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM: "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum",
|
|
464
|
+
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE: "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage",
|
|
415
465
|
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE: "RecommendationOptionsSavingsOpportunityPercentage",
|
|
416
466
|
SERVICE_ARN: "ServiceArn",
|
|
417
467
|
TAGS: "Tags",
|
|
@@ -429,6 +479,7 @@ export const ExportableLambdaFunctionField = {
|
|
|
429
479
|
CURRENT_COST_AVERAGE: "CurrentCostAverage",
|
|
430
480
|
CURRENT_COST_TOTAL: "CurrentCostTotal",
|
|
431
481
|
CURRENT_PERFORMANCE_RISK: "CurrentPerformanceRisk",
|
|
482
|
+
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE: "EffectiveRecommendationPreferencesSavingsEstimationMode",
|
|
432
483
|
FINDING: "Finding",
|
|
433
484
|
FINDING_REASON_CODES: "FindingReasonCodes",
|
|
434
485
|
FUNCTION_ARN: "FunctionArn",
|
|
@@ -440,10 +491,13 @@ export const ExportableLambdaFunctionField = {
|
|
|
440
491
|
RECOMMENDATION_OPTIONS_COST_HIGH: "RecommendationOptionsCostHigh",
|
|
441
492
|
RECOMMENDATION_OPTIONS_COST_LOW: "RecommendationOptionsCostLow",
|
|
442
493
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY: "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
494
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts",
|
|
443
495
|
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE: "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
496
|
+
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS: "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
444
497
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_EXPECTED: "RecommendationOptionsProjectedUtilizationMetricsDurationExpected",
|
|
445
498
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_LOWER_BOUND: "RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound",
|
|
446
499
|
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_UPPER_BOUND: "RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound",
|
|
500
|
+
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE: "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage",
|
|
447
501
|
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE: "RecommendationOptionsSavingsOpportunityPercentage",
|
|
448
502
|
TAGS: "Tags",
|
|
449
503
|
UTILIZATION_METRICS_DURATION_AVERAGE: "UtilizationMetricsDurationAverage",
|
|
@@ -483,6 +537,11 @@ export const LicenseRecommendationFilterName = {
|
|
|
483
537
|
LICENSE_FINDING_REASON_CODE: "FindingReasonCode",
|
|
484
538
|
LICENSE_NAME: "LicenseName",
|
|
485
539
|
};
|
|
540
|
+
export const EBSSavingsEstimationModeSource = {
|
|
541
|
+
COST_EXPLORER_RIGHTSIZING: "CostExplorerRightsizing",
|
|
542
|
+
COST_OPTIMIZATION_HUB: "CostOptimizationHub",
|
|
543
|
+
PUBLIC_PRICING: "PublicPricing",
|
|
544
|
+
};
|
|
486
545
|
export const EBSFinding = {
|
|
487
546
|
NOT_OPTIMIZED: "NotOptimized",
|
|
488
547
|
OPTIMIZED: "Optimized",
|
|
@@ -559,6 +618,11 @@ export const ECSServiceMetricName = {
|
|
|
559
618
|
CPU: "Cpu",
|
|
560
619
|
MEMORY: "Memory",
|
|
561
620
|
};
|
|
621
|
+
export const ECSSavingsEstimationModeSource = {
|
|
622
|
+
COST_EXPLORER_RIGHTSIZING: "CostExplorerRightsizing",
|
|
623
|
+
COST_OPTIMIZATION_HUB: "CostOptimizationHub",
|
|
624
|
+
PUBLIC_PRICING: "PublicPricing",
|
|
625
|
+
};
|
|
562
626
|
export const ECSServiceRecommendationFinding = {
|
|
563
627
|
OPTIMIZED: "Optimized",
|
|
564
628
|
OVER_PROVISIONED: "Overprovisioned",
|
|
@@ -581,6 +645,11 @@ export const ECSServiceMetricStatistic = {
|
|
|
581
645
|
export const EnrollmentFilterName = {
|
|
582
646
|
STATUS: "Status",
|
|
583
647
|
};
|
|
648
|
+
export const LambdaSavingsEstimationModeSource = {
|
|
649
|
+
COST_EXPLORER_RIGHTSIZING: "CostExplorerRightsizing",
|
|
650
|
+
COST_OPTIMIZATION_HUB: "CostOptimizationHub",
|
|
651
|
+
PUBLIC_PRICING: "PublicPricing",
|
|
652
|
+
};
|
|
584
653
|
export const LambdaFunctionRecommendationFinding = {
|
|
585
654
|
NOT_OPTIMIZED: "NotOptimized",
|
|
586
655
|
OPTIMIZED: "Optimized",
|
|
@@ -635,6 +704,10 @@ export const LicenseFindingReasonCode = {
|
|
|
635
704
|
LICENSE_OVER_PROVISIONED: "LicenseOverprovisioned",
|
|
636
705
|
OPTIMIZED: "Optimized",
|
|
637
706
|
};
|
|
707
|
+
export const SavingsEstimationMode = {
|
|
708
|
+
AFTER_DISCOUNTS: "AfterDiscounts",
|
|
709
|
+
BEFORE_DISCOUNTS: "BeforeDiscounts",
|
|
710
|
+
};
|
|
638
711
|
export const FindingReasonCode = {
|
|
639
712
|
MEMORY_OVER_PROVISIONED: "MemoryOverprovisioned",
|
|
640
713
|
MEMORY_UNDER_PROVISIONED: "MemoryUnderprovisioned",
|
|
@@ -1454,6 +1454,12 @@ const de_AccountEnrollmentStatuses = (output, context) => {
|
|
|
1454
1454
|
});
|
|
1455
1455
|
return retVal;
|
|
1456
1456
|
};
|
|
1457
|
+
const de_AutoScalingGroupEstimatedMonthlySavings = (output, context) => {
|
|
1458
|
+
return take(output, {
|
|
1459
|
+
currency: __expectString,
|
|
1460
|
+
value: __limitedParseDouble,
|
|
1461
|
+
});
|
|
1462
|
+
};
|
|
1457
1463
|
const de_AutoScalingGroupRecommendation = (output, context) => {
|
|
1458
1464
|
return take(output, {
|
|
1459
1465
|
accountId: __expectString,
|
|
@@ -1480,6 +1486,7 @@ const de_AutoScalingGroupRecommendationOption = (output, context) => {
|
|
|
1480
1486
|
projectedUtilizationMetrics: (_) => de_ProjectedUtilizationMetrics(_, context),
|
|
1481
1487
|
rank: __expectInt32,
|
|
1482
1488
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1489
|
+
savingsOpportunityAfterDiscounts: (_) => de_AutoScalingGroupSavingsOpportunityAfterDiscounts(_, context),
|
|
1483
1490
|
});
|
|
1484
1491
|
};
|
|
1485
1492
|
const de_AutoScalingGroupRecommendationOptions = (output, context) => {
|
|
@@ -1498,12 +1505,30 @@ const de_AutoScalingGroupRecommendations = (output, context) => {
|
|
|
1498
1505
|
});
|
|
1499
1506
|
return retVal;
|
|
1500
1507
|
};
|
|
1508
|
+
const de_AutoScalingGroupSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1509
|
+
return take(output, {
|
|
1510
|
+
estimatedMonthlySavings: (_) => de_AutoScalingGroupEstimatedMonthlySavings(_, context),
|
|
1511
|
+
savingsOpportunityPercentage: __limitedParseDouble,
|
|
1512
|
+
});
|
|
1513
|
+
};
|
|
1501
1514
|
const de_DescribeRecommendationExportJobsResponse = (output, context) => {
|
|
1502
1515
|
return take(output, {
|
|
1503
1516
|
nextToken: __expectString,
|
|
1504
1517
|
recommendationExportJobs: (_) => de_RecommendationExportJobs(_, context),
|
|
1505
1518
|
});
|
|
1506
1519
|
};
|
|
1520
|
+
const de_EBSEstimatedMonthlySavings = (output, context) => {
|
|
1521
|
+
return take(output, {
|
|
1522
|
+
currency: __expectString,
|
|
1523
|
+
value: __limitedParseDouble,
|
|
1524
|
+
});
|
|
1525
|
+
};
|
|
1526
|
+
const de_EBSSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1527
|
+
return take(output, {
|
|
1528
|
+
estimatedMonthlySavings: (_) => de_EBSEstimatedMonthlySavings(_, context),
|
|
1529
|
+
savingsOpportunityPercentage: __limitedParseDouble,
|
|
1530
|
+
});
|
|
1531
|
+
};
|
|
1507
1532
|
const de_EBSUtilizationMetric = (output, context) => {
|
|
1508
1533
|
return take(output, {
|
|
1509
1534
|
name: __expectString,
|
|
@@ -1519,6 +1544,18 @@ const de_EBSUtilizationMetrics = (output, context) => {
|
|
|
1519
1544
|
});
|
|
1520
1545
|
return retVal;
|
|
1521
1546
|
};
|
|
1547
|
+
const de_ECSEstimatedMonthlySavings = (output, context) => {
|
|
1548
|
+
return take(output, {
|
|
1549
|
+
currency: __expectString,
|
|
1550
|
+
value: __limitedParseDouble,
|
|
1551
|
+
});
|
|
1552
|
+
};
|
|
1553
|
+
const de_ECSSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1554
|
+
return take(output, {
|
|
1555
|
+
estimatedMonthlySavings: (_) => de_ECSEstimatedMonthlySavings(_, context),
|
|
1556
|
+
savingsOpportunityPercentage: __limitedParseDouble,
|
|
1557
|
+
});
|
|
1558
|
+
};
|
|
1522
1559
|
const de_ECSServiceProjectedMetric = (output, context) => {
|
|
1523
1560
|
return take(output, {
|
|
1524
1561
|
lowerBoundValues: (_) => de_MetricValues(_, context),
|
|
@@ -1556,6 +1593,7 @@ const de_ECSServiceRecommendation = (output, context) => {
|
|
|
1556
1593
|
accountId: __expectString,
|
|
1557
1594
|
currentPerformanceRisk: __expectString,
|
|
1558
1595
|
currentServiceConfiguration: _json,
|
|
1596
|
+
effectiveRecommendationPreferences: _json,
|
|
1559
1597
|
finding: __expectString,
|
|
1560
1598
|
findingReasonCodes: _json,
|
|
1561
1599
|
lastRefreshTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -1574,6 +1612,7 @@ const de_ECSServiceRecommendationOption = (output, context) => {
|
|
|
1574
1612
|
memory: __expectInt32,
|
|
1575
1613
|
projectedUtilizationMetrics: (_) => de_ECSServiceProjectedUtilizationMetrics(_, context),
|
|
1576
1614
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1615
|
+
savingsOpportunityAfterDiscounts: (_) => de_ECSSavingsOpportunityAfterDiscounts(_, context),
|
|
1577
1616
|
});
|
|
1578
1617
|
};
|
|
1579
1618
|
const de_ECSServiceRecommendationOptions = (output, context) => {
|
|
@@ -1714,6 +1753,12 @@ const de_InferredWorkloadSavings = (output, context) => {
|
|
|
1714
1753
|
});
|
|
1715
1754
|
return retVal;
|
|
1716
1755
|
};
|
|
1756
|
+
const de_InstanceEstimatedMonthlySavings = (output, context) => {
|
|
1757
|
+
return take(output, {
|
|
1758
|
+
currency: __expectString,
|
|
1759
|
+
value: __limitedParseDouble,
|
|
1760
|
+
});
|
|
1761
|
+
};
|
|
1717
1762
|
const de_InstanceRecommendation = (output, context) => {
|
|
1718
1763
|
return take(output, {
|
|
1719
1764
|
accountId: __expectString,
|
|
@@ -1747,6 +1792,7 @@ const de_InstanceRecommendationOption = (output, context) => {
|
|
|
1747
1792
|
projectedUtilizationMetrics: (_) => de_ProjectedUtilizationMetrics(_, context),
|
|
1748
1793
|
rank: __expectInt32,
|
|
1749
1794
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1795
|
+
savingsOpportunityAfterDiscounts: (_) => de_InstanceSavingsOpportunityAfterDiscounts(_, context),
|
|
1750
1796
|
});
|
|
1751
1797
|
};
|
|
1752
1798
|
const de_InstanceRecommendations = (output, context) => {
|
|
@@ -1757,6 +1803,18 @@ const de_InstanceRecommendations = (output, context) => {
|
|
|
1757
1803
|
});
|
|
1758
1804
|
return retVal;
|
|
1759
1805
|
};
|
|
1806
|
+
const de_InstanceSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1807
|
+
return take(output, {
|
|
1808
|
+
estimatedMonthlySavings: (_) => de_InstanceEstimatedMonthlySavings(_, context),
|
|
1809
|
+
savingsOpportunityPercentage: __limitedParseDouble,
|
|
1810
|
+
});
|
|
1811
|
+
};
|
|
1812
|
+
const de_LambdaEstimatedMonthlySavings = (output, context) => {
|
|
1813
|
+
return take(output, {
|
|
1814
|
+
currency: __expectString,
|
|
1815
|
+
value: __limitedParseDouble,
|
|
1816
|
+
});
|
|
1817
|
+
};
|
|
1760
1818
|
const de_LambdaFunctionMemoryProjectedMetric = (output, context) => {
|
|
1761
1819
|
return take(output, {
|
|
1762
1820
|
name: __expectString,
|
|
@@ -1778,6 +1836,7 @@ const de_LambdaFunctionMemoryRecommendationOption = (output, context) => {
|
|
|
1778
1836
|
projectedUtilizationMetrics: (_) => de_LambdaFunctionMemoryProjectedMetrics(_, context),
|
|
1779
1837
|
rank: __expectInt32,
|
|
1780
1838
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
1839
|
+
savingsOpportunityAfterDiscounts: (_) => de_LambdaSavingsOpportunityAfterDiscounts(_, context),
|
|
1781
1840
|
});
|
|
1782
1841
|
};
|
|
1783
1842
|
const de_LambdaFunctionMemoryRecommendationOptions = (output, context) => {
|
|
@@ -1793,6 +1852,7 @@ const de_LambdaFunctionRecommendation = (output, context) => {
|
|
|
1793
1852
|
accountId: __expectString,
|
|
1794
1853
|
currentMemorySize: __expectInt32,
|
|
1795
1854
|
currentPerformanceRisk: __expectString,
|
|
1855
|
+
effectiveRecommendationPreferences: _json,
|
|
1796
1856
|
finding: __expectString,
|
|
1797
1857
|
findingReasonCodes: _json,
|
|
1798
1858
|
functionArn: __expectString,
|
|
@@ -1828,6 +1888,12 @@ const de_LambdaFunctionUtilizationMetrics = (output, context) => {
|
|
|
1828
1888
|
});
|
|
1829
1889
|
return retVal;
|
|
1830
1890
|
};
|
|
1891
|
+
const de_LambdaSavingsOpportunityAfterDiscounts = (output, context) => {
|
|
1892
|
+
return take(output, {
|
|
1893
|
+
estimatedMonthlySavings: (_) => de_LambdaEstimatedMonthlySavings(_, context),
|
|
1894
|
+
savingsOpportunityPercentage: __limitedParseDouble,
|
|
1895
|
+
});
|
|
1896
|
+
};
|
|
1831
1897
|
const de_LicenseRecommendation = (output, context) => {
|
|
1832
1898
|
return take(output, {
|
|
1833
1899
|
accountId: __expectString,
|
|
@@ -2020,6 +2086,7 @@ const de_VolumeRecommendation = (output, context) => {
|
|
|
2020
2086
|
accountId: __expectString,
|
|
2021
2087
|
currentConfiguration: _json,
|
|
2022
2088
|
currentPerformanceRisk: __expectString,
|
|
2089
|
+
effectiveRecommendationPreferences: _json,
|
|
2023
2090
|
finding: __expectString,
|
|
2024
2091
|
lastRefreshTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2025
2092
|
lookBackPeriodInDays: __limitedParseDouble,
|
|
@@ -2035,6 +2102,7 @@ const de_VolumeRecommendationOption = (output, context) => {
|
|
|
2035
2102
|
performanceRisk: __limitedParseDouble,
|
|
2036
2103
|
rank: __expectInt32,
|
|
2037
2104
|
savingsOpportunity: (_) => de_SavingsOpportunity(_, context),
|
|
2105
|
+
savingsOpportunityAfterDiscounts: (_) => de_EBSSavingsOpportunityAfterDiscounts(_, context),
|
|
2038
2106
|
});
|
|
2039
2107
|
};
|
|
2040
2108
|
const de_VolumeRecommendationOptions = (output, context) => {
|
|
@@ -40,7 +40,7 @@ export interface DeleteRecommendationPreferencesCommandOutput extends DeleteReco
|
|
|
40
40
|
* value: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* recommendationPreferenceNames: [ // RecommendationPreferenceNames // required
|
|
43
|
-
* "EnhancedInfrastructureMetrics" || "InferredWorkloadTypes" || "ExternalMetricsPreference",
|
|
43
|
+
* "EnhancedInfrastructureMetrics" || "InferredWorkloadTypes" || "ExternalMetricsPreference" || "LookBackPeriodPreference" || "PreferredResources" || "UtilizationPreferences",
|
|
44
44
|
* ],
|
|
45
45
|
* };
|
|
46
46
|
* const command = new DeleteRecommendationPreferencesCommand(input);
|
|
@@ -48,7 +48,7 @@ export interface ExportAutoScalingGroupRecommendationsCommandOutput extends Expo
|
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* fieldsToExport: [ // ExportableAutoScalingGroupFields
|
|
51
|
-
* "AccountId" || "AutoScalingGroupArn" || "AutoScalingGroupName" || "Finding" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "UtilizationMetricsEbsReadOpsPerSecondMaximum" || "UtilizationMetricsEbsWriteOpsPerSecondMaximum" || "UtilizationMetricsEbsReadBytesPerSecondMaximum" || "UtilizationMetricsEbsWriteBytesPerSecondMaximum" || "UtilizationMetricsDiskReadOpsPerSecondMaximum" || "UtilizationMetricsDiskWriteOpsPerSecondMaximum" || "UtilizationMetricsDiskReadBytesPerSecondMaximum" || "UtilizationMetricsDiskWriteBytesPerSecondMaximum" || "UtilizationMetricsNetworkInBytesPerSecondMaximum" || "UtilizationMetricsNetworkOutBytesPerSecondMaximum" || "UtilizationMetricsNetworkPacketsInPerSecondMaximum" || "UtilizationMetricsNetworkPacketsOutPerSecondMaximum" || "LookbackPeriodInDays" || "CurrentConfigurationInstanceType" || "CurrentConfigurationDesiredCapacity" || "CurrentConfigurationMinSize" || "CurrentConfigurationMaxSize" || "CurrentOnDemandPrice" || "CurrentStandardOneYearNoUpfrontReservedPrice" || "CurrentStandardThreeYearNoUpfrontReservedPrice" || "CurrentVCpus" || "CurrentMemory" || "CurrentStorage" || "CurrentNetwork" || "RecommendationOptionsConfigurationInstanceType" || "RecommendationOptionsConfigurationDesiredCapacity" || "RecommendationOptionsConfigurationMinSize" || "RecommendationOptionsConfigurationMaxSize" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "RecommendationOptionsPerformanceRisk" || "RecommendationOptionsOnDemandPrice" || "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice" || "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice" || "RecommendationOptionsVcpus" || "RecommendationOptionsMemory" || "RecommendationOptionsStorage" || "RecommendationOptionsNetwork" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "EffectiveRecommendationPreferencesCpuVendorArchitectures" || "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics" || "EffectiveRecommendationPreferencesInferredWorkloadTypes" || "InferredWorkloadTypes" || "RecommendationOptionsMigrationEffort" || "CurrentInstanceGpuInfo" || "RecommendationOptionsInstanceGpuInfo" || "UtilizationMetricsGpuPercentageMaximum" || "UtilizationMetricsGpuMemoryPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum",
|
|
51
|
+
* "AccountId" || "AutoScalingGroupArn" || "AutoScalingGroupName" || "Finding" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "UtilizationMetricsEbsReadOpsPerSecondMaximum" || "UtilizationMetricsEbsWriteOpsPerSecondMaximum" || "UtilizationMetricsEbsReadBytesPerSecondMaximum" || "UtilizationMetricsEbsWriteBytesPerSecondMaximum" || "UtilizationMetricsDiskReadOpsPerSecondMaximum" || "UtilizationMetricsDiskWriteOpsPerSecondMaximum" || "UtilizationMetricsDiskReadBytesPerSecondMaximum" || "UtilizationMetricsDiskWriteBytesPerSecondMaximum" || "UtilizationMetricsNetworkInBytesPerSecondMaximum" || "UtilizationMetricsNetworkOutBytesPerSecondMaximum" || "UtilizationMetricsNetworkPacketsInPerSecondMaximum" || "UtilizationMetricsNetworkPacketsOutPerSecondMaximum" || "LookbackPeriodInDays" || "CurrentConfigurationInstanceType" || "CurrentConfigurationDesiredCapacity" || "CurrentConfigurationMinSize" || "CurrentConfigurationMaxSize" || "CurrentOnDemandPrice" || "CurrentStandardOneYearNoUpfrontReservedPrice" || "CurrentStandardThreeYearNoUpfrontReservedPrice" || "CurrentVCpus" || "CurrentMemory" || "CurrentStorage" || "CurrentNetwork" || "RecommendationOptionsConfigurationInstanceType" || "RecommendationOptionsConfigurationDesiredCapacity" || "RecommendationOptionsConfigurationMinSize" || "RecommendationOptionsConfigurationMaxSize" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "RecommendationOptionsPerformanceRisk" || "RecommendationOptionsOnDemandPrice" || "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice" || "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice" || "RecommendationOptionsVcpus" || "RecommendationOptionsMemory" || "RecommendationOptionsStorage" || "RecommendationOptionsNetwork" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "EffectiveRecommendationPreferencesCpuVendorArchitectures" || "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics" || "EffectiveRecommendationPreferencesInferredWorkloadTypes" || "InferredWorkloadTypes" || "RecommendationOptionsMigrationEffort" || "CurrentInstanceGpuInfo" || "RecommendationOptionsInstanceGpuInfo" || "UtilizationMetricsGpuPercentageMaximum" || "UtilizationMetricsGpuMemoryPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum" || "EffectiveRecommendationPreferencesSavingsEstimationMode" || "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts" || "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts" || "EffectiveRecommendationPreferencesPreferredResources" || "EffectiveRecommendationPreferencesLookBackPeriod",
|
|
52
52
|
* ],
|
|
53
53
|
* s3DestinationConfig: { // S3DestinationConfig
|
|
54
54
|
* bucket: "STRING_VALUE",
|
|
@@ -48,7 +48,7 @@ export interface ExportEBSVolumeRecommendationsCommandOutput extends ExportEBSVo
|
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* fieldsToExport: [ // ExportableVolumeFields
|
|
51
|
-
* "AccountId" || "VolumeArn" || "Finding" || "UtilizationMetricsVolumeReadOpsPerSecondMaximum" || "UtilizationMetricsVolumeWriteOpsPerSecondMaximum" || "UtilizationMetricsVolumeReadBytesPerSecondMaximum" || "UtilizationMetricsVolumeWriteBytesPerSecondMaximum" || "LookbackPeriodInDays" || "CurrentConfigurationVolumeType" || "CurrentConfigurationVolumeBaselineIOPS" || "CurrentConfigurationVolumeBaselineThroughput" || "CurrentConfigurationVolumeBurstIOPS" || "CurrentConfigurationVolumeBurstThroughput" || "CurrentConfigurationVolumeSize" || "CurrentMonthlyPrice" || "RecommendationOptionsConfigurationVolumeType" || "RecommendationOptionsConfigurationVolumeBaselineIOPS" || "RecommendationOptionsConfigurationVolumeBaselineThroughput" || "RecommendationOptionsConfigurationVolumeBurstIOPS" || "RecommendationOptionsConfigurationVolumeBurstThroughput" || "RecommendationOptionsConfigurationVolumeSize" || "RecommendationOptionsMonthlyPrice" || "RecommendationOptionsPerformanceRisk" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "RootVolume" || "Tags" || "CurrentConfigurationRootVolume",
|
|
51
|
+
* "AccountId" || "VolumeArn" || "Finding" || "UtilizationMetricsVolumeReadOpsPerSecondMaximum" || "UtilizationMetricsVolumeWriteOpsPerSecondMaximum" || "UtilizationMetricsVolumeReadBytesPerSecondMaximum" || "UtilizationMetricsVolumeWriteBytesPerSecondMaximum" || "LookbackPeriodInDays" || "CurrentConfigurationVolumeType" || "CurrentConfigurationVolumeBaselineIOPS" || "CurrentConfigurationVolumeBaselineThroughput" || "CurrentConfigurationVolumeBurstIOPS" || "CurrentConfigurationVolumeBurstThroughput" || "CurrentConfigurationVolumeSize" || "CurrentMonthlyPrice" || "RecommendationOptionsConfigurationVolumeType" || "RecommendationOptionsConfigurationVolumeBaselineIOPS" || "RecommendationOptionsConfigurationVolumeBaselineThroughput" || "RecommendationOptionsConfigurationVolumeBurstIOPS" || "RecommendationOptionsConfigurationVolumeBurstThroughput" || "RecommendationOptionsConfigurationVolumeSize" || "RecommendationOptionsMonthlyPrice" || "RecommendationOptionsPerformanceRisk" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "RootVolume" || "Tags" || "CurrentConfigurationRootVolume" || "EffectiveRecommendationPreferencesSavingsEstimationMode" || "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts" || "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
52
52
|
* ],
|
|
53
53
|
* s3DestinationConfig: { // S3DestinationConfig
|
|
54
54
|
* bucket: "STRING_VALUE",
|
|
@@ -48,7 +48,7 @@ export interface ExportEC2InstanceRecommendationsCommandOutput extends ExportEC2
|
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* fieldsToExport: [ // ExportableInstanceFields
|
|
51
|
-
* "AccountId" || "InstanceArn" || "InstanceName" || "Finding" || "FindingReasonCodes" || "LookbackPeriodInDays" || "CurrentInstanceType" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "UtilizationMetricsEbsReadOpsPerSecondMaximum" || "UtilizationMetricsEbsWriteOpsPerSecondMaximum" || "UtilizationMetricsEbsReadBytesPerSecondMaximum" || "UtilizationMetricsEbsWriteBytesPerSecondMaximum" || "UtilizationMetricsDiskReadOpsPerSecondMaximum" || "UtilizationMetricsDiskWriteOpsPerSecondMaximum" || "UtilizationMetricsDiskReadBytesPerSecondMaximum" || "UtilizationMetricsDiskWriteBytesPerSecondMaximum" || "UtilizationMetricsNetworkInBytesPerSecondMaximum" || "UtilizationMetricsNetworkOutBytesPerSecondMaximum" || "UtilizationMetricsNetworkPacketsInPerSecondMaximum" || "UtilizationMetricsNetworkPacketsOutPerSecondMaximum" || "CurrentOnDemandPrice" || "CurrentStandardOneYearNoUpfrontReservedPrice" || "CurrentStandardThreeYearNoUpfrontReservedPrice" || "CurrentVCpus" || "CurrentMemory" || "CurrentStorage" || "CurrentNetwork" || "RecommendationOptionsInstanceType" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "RecommendationOptionsPlatformDifferences" || "RecommendationOptionsPerformanceRisk" || "RecommendationOptionsVcpus" || "RecommendationOptionsMemory" || "RecommendationOptionsStorage" || "RecommendationOptionsNetwork" || "RecommendationOptionsOnDemandPrice" || "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice" || "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice" || "RecommendationsSourcesRecommendationSourceArn" || "RecommendationsSourcesRecommendationSourceType" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "EffectiveRecommendationPreferencesCpuVendorArchitectures" || "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics" || "EffectiveRecommendationPreferencesInferredWorkloadTypes" || "InferredWorkloadTypes" || "RecommendationOptionsMigrationEffort" || "EffectiveRecommendationPreferencesExternalMetricsSource" || "InstanceState" || "Tags" || "ExternalMetricStatusCode" || "ExternalMetricStatusReason" || "CurrentInstanceGpuInfo" || "RecommendationOptionsInstanceGpuInfo" || "UtilizationMetricsGpuPercentageMaximum" || "UtilizationMetricsGpuMemoryPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum" || "Idle",
|
|
51
|
+
* "AccountId" || "InstanceArn" || "InstanceName" || "Finding" || "FindingReasonCodes" || "LookbackPeriodInDays" || "CurrentInstanceType" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "UtilizationMetricsEbsReadOpsPerSecondMaximum" || "UtilizationMetricsEbsWriteOpsPerSecondMaximum" || "UtilizationMetricsEbsReadBytesPerSecondMaximum" || "UtilizationMetricsEbsWriteBytesPerSecondMaximum" || "UtilizationMetricsDiskReadOpsPerSecondMaximum" || "UtilizationMetricsDiskWriteOpsPerSecondMaximum" || "UtilizationMetricsDiskReadBytesPerSecondMaximum" || "UtilizationMetricsDiskWriteBytesPerSecondMaximum" || "UtilizationMetricsNetworkInBytesPerSecondMaximum" || "UtilizationMetricsNetworkOutBytesPerSecondMaximum" || "UtilizationMetricsNetworkPacketsInPerSecondMaximum" || "UtilizationMetricsNetworkPacketsOutPerSecondMaximum" || "CurrentOnDemandPrice" || "CurrentStandardOneYearNoUpfrontReservedPrice" || "CurrentStandardThreeYearNoUpfrontReservedPrice" || "CurrentVCpus" || "CurrentMemory" || "CurrentStorage" || "CurrentNetwork" || "RecommendationOptionsInstanceType" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "RecommendationOptionsPlatformDifferences" || "RecommendationOptionsPerformanceRisk" || "RecommendationOptionsVcpus" || "RecommendationOptionsMemory" || "RecommendationOptionsStorage" || "RecommendationOptionsNetwork" || "RecommendationOptionsOnDemandPrice" || "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice" || "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice" || "RecommendationsSourcesRecommendationSourceArn" || "RecommendationsSourcesRecommendationSourceType" || "LastRefreshTimestamp" || "CurrentPerformanceRisk" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "EffectiveRecommendationPreferencesCpuVendorArchitectures" || "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics" || "EffectiveRecommendationPreferencesInferredWorkloadTypes" || "InferredWorkloadTypes" || "RecommendationOptionsMigrationEffort" || "EffectiveRecommendationPreferencesExternalMetricsSource" || "InstanceState" || "Tags" || "ExternalMetricStatusCode" || "ExternalMetricStatusReason" || "CurrentInstanceGpuInfo" || "RecommendationOptionsInstanceGpuInfo" || "UtilizationMetricsGpuPercentageMaximum" || "UtilizationMetricsGpuMemoryPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuPercentageMaximum" || "RecommendationOptionsProjectedUtilizationMetricsGpuMemoryPercentageMaximum" || "Idle" || "EffectiveRecommendationPreferencesPreferredResources" || "EffectiveRecommendationPreferencesLookBackPeriod" || "EffectiveRecommendationPreferencesUtilizationPreferences" || "EffectiveRecommendationPreferencesSavingsEstimationMode" || "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts" || "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
52
52
|
* ],
|
|
53
53
|
* s3DestinationConfig: { // S3DestinationConfig
|
|
54
54
|
* bucket: "STRING_VALUE",
|
|
@@ -50,7 +50,7 @@ export interface ExportECSServiceRecommendationsCommandOutput extends ExportECSS
|
|
|
50
50
|
* },
|
|
51
51
|
* ],
|
|
52
52
|
* fieldsToExport: [ // ExportableECSServiceFields
|
|
53
|
-
* "AccountId" || "ServiceArn" || "LookbackPeriodInDays" || "LastRefreshTimestamp" || "LaunchType" || "CurrentPerformanceRisk" || "CurrentServiceConfigurationMemory" || "CurrentServiceConfigurationCpu" || "CurrentServiceConfigurationTaskDefinitionArn" || "CurrentServiceConfigurationAutoScalingConfiguration" || "CurrentServiceContainerConfigurations" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "Finding" || "FindingReasonCodes" || "RecommendationOptionsMemory" || "RecommendationOptionsCpu" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "RecommendationOptionsContainerRecommendations" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "Tags",
|
|
53
|
+
* "AccountId" || "ServiceArn" || "LookbackPeriodInDays" || "LastRefreshTimestamp" || "LaunchType" || "CurrentPerformanceRisk" || "CurrentServiceConfigurationMemory" || "CurrentServiceConfigurationCpu" || "CurrentServiceConfigurationTaskDefinitionArn" || "CurrentServiceConfigurationAutoScalingConfiguration" || "CurrentServiceContainerConfigurations" || "UtilizationMetricsCpuMaximum" || "UtilizationMetricsMemoryMaximum" || "Finding" || "FindingReasonCodes" || "RecommendationOptionsMemory" || "RecommendationOptionsCpu" || "RecommendationOptionsSavingsOpportunityPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrency" || "RecommendationOptionsEstimatedMonthlySavingsValue" || "RecommendationOptionsContainerRecommendations" || "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum" || "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum" || "Tags" || "EffectiveRecommendationPreferencesSavingsEstimationMode" || "RecommendationOptionsSavingsOpportunityAfterDiscountsPercentage" || "RecommendationOptionsEstimatedMonthlySavingsCurrencyAfterDiscounts" || "RecommendationOptionsEstimatedMonthlySavingsValueAfterDiscounts",
|
|
54
54
|
* ],
|
|
55
55
|
* s3DestinationConfig: { // S3DestinationConfig
|
|
56
56
|
* bucket: "STRING_VALUE",
|