@aws-sdk/client-cost-explorer 3.301.0 → 3.303.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.
@@ -2,11 +2,16 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum AccountScope {
7
- LINKED = "LINKED",
8
- PAYER = "PAYER"
9
- }
7
+ export declare const AccountScope: {
8
+ readonly LINKED: "LINKED";
9
+ readonly PAYER: "PAYER";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
10
15
  /**
11
16
  * @public
12
17
  * <p>Quantifies the anomaly. The higher score means that it's more anomalous. </p>
@@ -23,12 +28,17 @@ export interface AnomalyScore {
23
28
  }
24
29
  /**
25
30
  * @public
31
+ * @enum
26
32
  */
27
- export declare enum AnomalyFeedbackType {
28
- NO = "NO",
29
- PLANNED_ACTIVITY = "PLANNED_ACTIVITY",
30
- YES = "YES"
31
- }
33
+ export declare const AnomalyFeedbackType: {
34
+ readonly NO: "NO";
35
+ readonly PLANNED_ACTIVITY: "PLANNED_ACTIVITY";
36
+ readonly YES: "YES";
37
+ };
38
+ /**
39
+ * @public
40
+ */
41
+ export type AnomalyFeedbackType = (typeof AnomalyFeedbackType)[keyof typeof AnomalyFeedbackType];
32
42
  /**
33
43
  * @public
34
44
  * <p>The dollar value of the anomaly. </p>
@@ -150,23 +160,33 @@ export interface AnomalyDateInterval {
150
160
  }
151
161
  /**
152
162
  * @public
163
+ * @enum
153
164
  */
154
- export declare enum MonitorDimension {
155
- SERVICE = "SERVICE"
156
- }
165
+ export declare const MonitorDimension: {
166
+ readonly SERVICE: "SERVICE";
167
+ };
157
168
  /**
158
169
  * @public
159
170
  */
160
- export declare enum MatchOption {
161
- ABSENT = "ABSENT",
162
- CASE_INSENSITIVE = "CASE_INSENSITIVE",
163
- CASE_SENSITIVE = "CASE_SENSITIVE",
164
- CONTAINS = "CONTAINS",
165
- ENDS_WITH = "ENDS_WITH",
166
- EQUALS = "EQUALS",
167
- GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
168
- STARTS_WITH = "STARTS_WITH"
169
- }
171
+ export type MonitorDimension = (typeof MonitorDimension)[keyof typeof MonitorDimension];
172
+ /**
173
+ * @public
174
+ * @enum
175
+ */
176
+ export declare const MatchOption: {
177
+ readonly ABSENT: "ABSENT";
178
+ readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
179
+ readonly CASE_SENSITIVE: "CASE_SENSITIVE";
180
+ readonly CONTAINS: "CONTAINS";
181
+ readonly ENDS_WITH: "ENDS_WITH";
182
+ readonly EQUALS: "EQUALS";
183
+ readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
184
+ readonly STARTS_WITH: "STARTS_WITH";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
170
190
  /**
171
191
  * @public
172
192
  * <p>The Cost Categories values used for filtering the costs.</p>
@@ -197,43 +217,48 @@ export interface CostCategoryValues {
197
217
  }
198
218
  /**
199
219
  * @public
200
- */
201
- export declare enum Dimension {
202
- AGREEMENT_END_DATE_TIME_AFTER = "AGREEMENT_END_DATE_TIME_AFTER",
203
- AGREEMENT_END_DATE_TIME_BEFORE = "AGREEMENT_END_DATE_TIME_BEFORE",
204
- ANOMALY_TOTAL_IMPACT_ABSOLUTE = "ANOMALY_TOTAL_IMPACT_ABSOLUTE",
205
- ANOMALY_TOTAL_IMPACT_PERCENTAGE = "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
206
- AZ = "AZ",
207
- BILLING_ENTITY = "BILLING_ENTITY",
208
- CACHE_ENGINE = "CACHE_ENGINE",
209
- DATABASE_ENGINE = "DATABASE_ENGINE",
210
- DEPLOYMENT_OPTION = "DEPLOYMENT_OPTION",
211
- INSTANCE_TYPE = "INSTANCE_TYPE",
212
- INSTANCE_TYPE_FAMILY = "INSTANCE_TYPE_FAMILY",
213
- INVOICING_ENTITY = "INVOICING_ENTITY",
214
- LEGAL_ENTITY_NAME = "LEGAL_ENTITY_NAME",
215
- LINKED_ACCOUNT = "LINKED_ACCOUNT",
216
- LINKED_ACCOUNT_NAME = "LINKED_ACCOUNT_NAME",
217
- OPERATING_SYSTEM = "OPERATING_SYSTEM",
218
- OPERATION = "OPERATION",
219
- PAYMENT_OPTION = "PAYMENT_OPTION",
220
- PLATFORM = "PLATFORM",
221
- PURCHASE_TYPE = "PURCHASE_TYPE",
222
- RECORD_TYPE = "RECORD_TYPE",
223
- REGION = "REGION",
224
- RESERVATION_ID = "RESERVATION_ID",
225
- RESOURCE_ID = "RESOURCE_ID",
226
- RIGHTSIZING_TYPE = "RIGHTSIZING_TYPE",
227
- SAVINGS_PLANS_TYPE = "SAVINGS_PLANS_TYPE",
228
- SAVINGS_PLAN_ARN = "SAVINGS_PLAN_ARN",
229
- SCOPE = "SCOPE",
230
- SERVICE = "SERVICE",
231
- SERVICE_CODE = "SERVICE_CODE",
232
- SUBSCRIPTION_ID = "SUBSCRIPTION_ID",
233
- TENANCY = "TENANCY",
234
- USAGE_TYPE = "USAGE_TYPE",
235
- USAGE_TYPE_GROUP = "USAGE_TYPE_GROUP"
236
- }
220
+ * @enum
221
+ */
222
+ export declare const Dimension: {
223
+ readonly AGREEMENT_END_DATE_TIME_AFTER: "AGREEMENT_END_DATE_TIME_AFTER";
224
+ readonly AGREEMENT_END_DATE_TIME_BEFORE: "AGREEMENT_END_DATE_TIME_BEFORE";
225
+ readonly ANOMALY_TOTAL_IMPACT_ABSOLUTE: "ANOMALY_TOTAL_IMPACT_ABSOLUTE";
226
+ readonly ANOMALY_TOTAL_IMPACT_PERCENTAGE: "ANOMALY_TOTAL_IMPACT_PERCENTAGE";
227
+ readonly AZ: "AZ";
228
+ readonly BILLING_ENTITY: "BILLING_ENTITY";
229
+ readonly CACHE_ENGINE: "CACHE_ENGINE";
230
+ readonly DATABASE_ENGINE: "DATABASE_ENGINE";
231
+ readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
232
+ readonly INSTANCE_TYPE: "INSTANCE_TYPE";
233
+ readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
234
+ readonly INVOICING_ENTITY: "INVOICING_ENTITY";
235
+ readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
236
+ readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
237
+ readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
238
+ readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
239
+ readonly OPERATION: "OPERATION";
240
+ readonly PAYMENT_OPTION: "PAYMENT_OPTION";
241
+ readonly PLATFORM: "PLATFORM";
242
+ readonly PURCHASE_TYPE: "PURCHASE_TYPE";
243
+ readonly RECORD_TYPE: "RECORD_TYPE";
244
+ readonly REGION: "REGION";
245
+ readonly RESERVATION_ID: "RESERVATION_ID";
246
+ readonly RESOURCE_ID: "RESOURCE_ID";
247
+ readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
248
+ readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
249
+ readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
250
+ readonly SCOPE: "SCOPE";
251
+ readonly SERVICE: "SERVICE";
252
+ readonly SERVICE_CODE: "SERVICE_CODE";
253
+ readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
254
+ readonly TENANCY: "TENANCY";
255
+ readonly USAGE_TYPE: "USAGE_TYPE";
256
+ readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
257
+ };
258
+ /**
259
+ * @public
260
+ */
261
+ export type Dimension = (typeof Dimension)[keyof typeof Dimension];
237
262
  /**
238
263
  * @public
239
264
  * <p>The metadata that you can use to filter and group your results. You can use
@@ -299,33 +324,53 @@ export interface TagValues {
299
324
  }
300
325
  /**
301
326
  * @public
327
+ * @enum
302
328
  */
303
- export declare enum MonitorType {
304
- CUSTOM = "CUSTOM",
305
- DIMENSIONAL = "DIMENSIONAL"
306
- }
329
+ export declare const MonitorType: {
330
+ readonly CUSTOM: "CUSTOM";
331
+ readonly DIMENSIONAL: "DIMENSIONAL";
332
+ };
307
333
  /**
308
334
  * @public
309
335
  */
310
- export declare enum AnomalySubscriptionFrequency {
311
- DAILY = "DAILY",
312
- IMMEDIATE = "IMMEDIATE",
313
- WEEKLY = "WEEKLY"
314
- }
336
+ export type MonitorType = (typeof MonitorType)[keyof typeof MonitorType];
315
337
  /**
316
338
  * @public
339
+ * @enum
317
340
  */
318
- export declare enum SubscriberStatus {
319
- CONFIRMED = "CONFIRMED",
320
- DECLINED = "DECLINED"
321
- }
341
+ export declare const AnomalySubscriptionFrequency: {
342
+ readonly DAILY: "DAILY";
343
+ readonly IMMEDIATE: "IMMEDIATE";
344
+ readonly WEEKLY: "WEEKLY";
345
+ };
322
346
  /**
323
347
  * @public
324
348
  */
325
- export declare enum SubscriberType {
326
- EMAIL = "EMAIL",
327
- SNS = "SNS"
328
- }
349
+ export type AnomalySubscriptionFrequency = (typeof AnomalySubscriptionFrequency)[keyof typeof AnomalySubscriptionFrequency];
350
+ /**
351
+ * @public
352
+ * @enum
353
+ */
354
+ export declare const SubscriberStatus: {
355
+ readonly CONFIRMED: "CONFIRMED";
356
+ readonly DECLINED: "DECLINED";
357
+ };
358
+ /**
359
+ * @public
360
+ */
361
+ export type SubscriberStatus = (typeof SubscriberStatus)[keyof typeof SubscriberStatus];
362
+ /**
363
+ * @public
364
+ * @enum
365
+ */
366
+ export declare const SubscriberType: {
367
+ readonly EMAIL: "EMAIL";
368
+ readonly SNS: "SNS";
369
+ };
370
+ /**
371
+ * @public
372
+ */
373
+ export type SubscriberType = (typeof SubscriberType)[keyof typeof SubscriberType];
329
374
  /**
330
375
  * @public
331
376
  * <p>The recipient of <code>AnomalySubscription</code> notifications. </p>
@@ -415,11 +460,16 @@ export declare class UnknownMonitorException extends __BaseException {
415
460
  }
416
461
  /**
417
462
  * @public
463
+ * @enum
418
464
  */
419
- export declare enum CostCategoryInheritedValueDimensionName {
420
- LINKED_ACCOUNT_NAME = "LINKED_ACCOUNT_NAME",
421
- TAG = "TAG"
422
- }
465
+ export declare const CostCategoryInheritedValueDimensionName: {
466
+ readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
467
+ readonly TAG: "TAG";
468
+ };
469
+ /**
470
+ * @public
471
+ */
472
+ export type CostCategoryInheritedValueDimensionName = (typeof CostCategoryInheritedValueDimensionName)[keyof typeof CostCategoryInheritedValueDimensionName];
423
473
  /**
424
474
  * @public
425
475
  * <p>When you create or update a cost category, you can define the
@@ -446,31 +496,51 @@ export interface CostCategoryInheritedValueDimension {
446
496
  }
447
497
  /**
448
498
  * @public
499
+ * @enum
449
500
  */
450
- export declare enum CostCategoryRuleType {
451
- INHERITED_VALUE = "INHERITED_VALUE",
452
- REGULAR = "REGULAR"
453
- }
501
+ export declare const CostCategoryRuleType: {
502
+ readonly INHERITED_VALUE: "INHERITED_VALUE";
503
+ readonly REGULAR: "REGULAR";
504
+ };
454
505
  /**
455
506
  * @public
456
507
  */
457
- export declare enum CostCategoryRuleVersion {
458
- CostCategoryExpressionV1 = "CostCategoryExpression.v1"
459
- }
508
+ export type CostCategoryRuleType = (typeof CostCategoryRuleType)[keyof typeof CostCategoryRuleType];
460
509
  /**
461
510
  * @public
511
+ * @enum
462
512
  */
463
- export declare enum CostCategorySplitChargeMethod {
464
- EVEN = "EVEN",
465
- FIXED = "FIXED",
466
- PROPORTIONAL = "PROPORTIONAL"
467
- }
513
+ export declare const CostCategoryRuleVersion: {
514
+ readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
515
+ };
468
516
  /**
469
517
  * @public
470
518
  */
471
- export declare enum CostCategorySplitChargeRuleParameterType {
472
- ALLOCATION_PERCENTAGES = "ALLOCATION_PERCENTAGES"
473
- }
519
+ export type CostCategoryRuleVersion = (typeof CostCategoryRuleVersion)[keyof typeof CostCategoryRuleVersion];
520
+ /**
521
+ * @public
522
+ * @enum
523
+ */
524
+ export declare const CostCategorySplitChargeMethod: {
525
+ readonly EVEN: "EVEN";
526
+ readonly FIXED: "FIXED";
527
+ readonly PROPORTIONAL: "PROPORTIONAL";
528
+ };
529
+ /**
530
+ * @public
531
+ */
532
+ export type CostCategorySplitChargeMethod = (typeof CostCategorySplitChargeMethod)[keyof typeof CostCategorySplitChargeMethod];
533
+ /**
534
+ * @public
535
+ * @enum
536
+ */
537
+ export declare const CostCategorySplitChargeRuleParameterType: {
538
+ readonly ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES";
539
+ };
540
+ /**
541
+ * @public
542
+ */
543
+ export type CostCategorySplitChargeRuleParameterType = (typeof CostCategorySplitChargeRuleParameterType)[keyof typeof CostCategorySplitChargeRuleParameterType];
474
544
  /**
475
545
  * @public
476
546
  * <p>The parameters for a split charge method. </p>
@@ -639,17 +709,27 @@ export interface DescribeCostCategoryDefinitionRequest {
639
709
  }
640
710
  /**
641
711
  * @public
712
+ * @enum
642
713
  */
643
- export declare enum CostCategoryStatusComponent {
644
- COST_EXPLORER = "COST_EXPLORER"
645
- }
714
+ export declare const CostCategoryStatusComponent: {
715
+ readonly COST_EXPLORER: "COST_EXPLORER";
716
+ };
646
717
  /**
647
718
  * @public
648
719
  */
649
- export declare enum CostCategoryStatus {
650
- APPLIED = "APPLIED",
651
- PROCESSING = "PROCESSING"
652
- }
720
+ export type CostCategoryStatusComponent = (typeof CostCategoryStatusComponent)[keyof typeof CostCategoryStatusComponent];
721
+ /**
722
+ * @public
723
+ * @enum
724
+ */
725
+ export declare const CostCategoryStatus: {
726
+ readonly APPLIED: "APPLIED";
727
+ readonly PROCESSING: "PROCESSING";
728
+ };
729
+ /**
730
+ * @public
731
+ */
732
+ export type CostCategoryStatus = (typeof CostCategoryStatus)[keyof typeof CostCategoryStatus];
653
733
  /**
654
734
  * @public
655
735
  * <p>The list of processing statuses for Cost Management products for a specific cost
@@ -667,15 +747,20 @@ export interface CostCategoryProcessingStatus {
667
747
  }
668
748
  /**
669
749
  * @public
750
+ * @enum
670
751
  */
671
- export declare enum NumericOperator {
672
- BETWEEN = "BETWEEN",
673
- EQUAL = "EQUAL",
674
- GREATER_THAN = "GREATER_THAN",
675
- GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
676
- LESS_THAN = "LESS_THAN",
677
- LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL"
678
- }
752
+ export declare const NumericOperator: {
753
+ readonly BETWEEN: "BETWEEN";
754
+ readonly EQUAL: "EQUAL";
755
+ readonly GREATER_THAN: "GREATER_THAN";
756
+ readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
757
+ readonly LESS_THAN: "LESS_THAN";
758
+ readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
759
+ };
760
+ /**
761
+ * @public
762
+ */
763
+ export type NumericOperator = (typeof NumericOperator)[keyof typeof NumericOperator];
679
764
  /**
680
765
  * @public
681
766
  * <p>Filters cost anomalies based on the total impact. </p>
@@ -823,20 +908,30 @@ export declare class DataUnavailableException extends __BaseException {
823
908
  }
824
909
  /**
825
910
  * @public
911
+ * @enum
826
912
  */
827
- export declare enum Granularity {
828
- DAILY = "DAILY",
829
- HOURLY = "HOURLY",
830
- MONTHLY = "MONTHLY"
831
- }
913
+ export declare const Granularity: {
914
+ readonly DAILY: "DAILY";
915
+ readonly HOURLY: "HOURLY";
916
+ readonly MONTHLY: "MONTHLY";
917
+ };
832
918
  /**
833
919
  * @public
834
920
  */
835
- export declare enum GroupDefinitionType {
836
- COST_CATEGORY = "COST_CATEGORY",
837
- DIMENSION = "DIMENSION",
838
- TAG = "TAG"
839
- }
921
+ export type Granularity = (typeof Granularity)[keyof typeof Granularity];
922
+ /**
923
+ * @public
924
+ * @enum
925
+ */
926
+ export declare const GroupDefinitionType: {
927
+ readonly COST_CATEGORY: "COST_CATEGORY";
928
+ readonly DIMENSION: "DIMENSION";
929
+ readonly TAG: "TAG";
930
+ };
931
+ /**
932
+ * @public
933
+ */
934
+ export type GroupDefinitionType = (typeof GroupDefinitionType)[keyof typeof GroupDefinitionType];
840
935
  /**
841
936
  * @public
842
937
  * <p>Represents a group when you specify a group by criteria or in the response to a query
@@ -1000,11 +1095,16 @@ export interface GetCostAndUsageWithResourcesResponse {
1000
1095
  }
1001
1096
  /**
1002
1097
  * @public
1098
+ * @enum
1003
1099
  */
1004
- export declare enum SortOrder {
1005
- ASCENDING = "ASCENDING",
1006
- DESCENDING = "DESCENDING"
1007
- }
1100
+ export declare const SortOrder: {
1101
+ readonly ASCENDING: "ASCENDING";
1102
+ readonly DESCENDING: "DESCENDING";
1103
+ };
1104
+ /**
1105
+ * @public
1106
+ */
1107
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1008
1108
  /**
1009
1109
  * @public
1010
1110
  * <p>The details for how to sort the data.</p>
@@ -1049,16 +1149,21 @@ export interface GetCostCategoriesResponse {
1049
1149
  }
1050
1150
  /**
1051
1151
  * @public
1152
+ * @enum
1052
1153
  */
1053
- export declare enum Metric {
1054
- AMORTIZED_COST = "AMORTIZED_COST",
1055
- BLENDED_COST = "BLENDED_COST",
1056
- NET_AMORTIZED_COST = "NET_AMORTIZED_COST",
1057
- NET_UNBLENDED_COST = "NET_UNBLENDED_COST",
1058
- NORMALIZED_USAGE_AMOUNT = "NORMALIZED_USAGE_AMOUNT",
1059
- UNBLENDED_COST = "UNBLENDED_COST",
1060
- USAGE_QUANTITY = "USAGE_QUANTITY"
1061
- }
1154
+ export declare const Metric: {
1155
+ readonly AMORTIZED_COST: "AMORTIZED_COST";
1156
+ readonly BLENDED_COST: "BLENDED_COST";
1157
+ readonly NET_AMORTIZED_COST: "NET_AMORTIZED_COST";
1158
+ readonly NET_UNBLENDED_COST: "NET_UNBLENDED_COST";
1159
+ readonly NORMALIZED_USAGE_AMOUNT: "NORMALIZED_USAGE_AMOUNT";
1160
+ readonly UNBLENDED_COST: "UNBLENDED_COST";
1161
+ readonly USAGE_QUANTITY: "USAGE_QUANTITY";
1162
+ };
1163
+ /**
1164
+ * @public
1165
+ */
1166
+ export type Metric = (typeof Metric)[keyof typeof Metric];
1062
1167
  /**
1063
1168
  * @public
1064
1169
  * <p>The forecast that's created for your query.</p>
@@ -1097,12 +1202,17 @@ export interface GetCostForecastResponse {
1097
1202
  }
1098
1203
  /**
1099
1204
  * @public
1205
+ * @enum
1100
1206
  */
1101
- export declare enum Context {
1102
- COST_AND_USAGE = "COST_AND_USAGE",
1103
- RESERVATIONS = "RESERVATIONS",
1104
- SAVINGS_PLANS = "SAVINGS_PLANS"
1105
- }
1207
+ export declare const Context: {
1208
+ readonly COST_AND_USAGE: "COST_AND_USAGE";
1209
+ readonly RESERVATIONS: "RESERVATIONS";
1210
+ readonly SAVINGS_PLANS: "SAVINGS_PLANS";
1211
+ };
1212
+ /**
1213
+ * @public
1214
+ */
1215
+ export type Context = (typeof Context)[keyof typeof Context];
1106
1216
  /**
1107
1217
  * @public
1108
1218
  */
@@ -1389,30 +1499,45 @@ export interface GetReservationCoverageResponse {
1389
1499
  }
1390
1500
  /**
1391
1501
  * @public
1502
+ * @enum
1392
1503
  */
1393
- export declare enum LookbackPeriodInDays {
1394
- SEVEN_DAYS = "SEVEN_DAYS",
1395
- SIXTY_DAYS = "SIXTY_DAYS",
1396
- THIRTY_DAYS = "THIRTY_DAYS"
1397
- }
1504
+ export declare const LookbackPeriodInDays: {
1505
+ readonly SEVEN_DAYS: "SEVEN_DAYS";
1506
+ readonly SIXTY_DAYS: "SIXTY_DAYS";
1507
+ readonly THIRTY_DAYS: "THIRTY_DAYS";
1508
+ };
1398
1509
  /**
1399
1510
  * @public
1400
1511
  */
1401
- export declare enum PaymentOption {
1402
- ALL_UPFRONT = "ALL_UPFRONT",
1403
- HEAVY_UTILIZATION = "HEAVY_UTILIZATION",
1404
- LIGHT_UTILIZATION = "LIGHT_UTILIZATION",
1405
- MEDIUM_UTILIZATION = "MEDIUM_UTILIZATION",
1406
- NO_UPFRONT = "NO_UPFRONT",
1407
- PARTIAL_UPFRONT = "PARTIAL_UPFRONT"
1408
- }
1512
+ export type LookbackPeriodInDays = (typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
1409
1513
  /**
1410
1514
  * @public
1515
+ * @enum
1411
1516
  */
1412
- export declare enum OfferingClass {
1413
- CONVERTIBLE = "CONVERTIBLE",
1414
- STANDARD = "STANDARD"
1415
- }
1517
+ export declare const PaymentOption: {
1518
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
1519
+ readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
1520
+ readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
1521
+ readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
1522
+ readonly NO_UPFRONT: "NO_UPFRONT";
1523
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
1524
+ };
1525
+ /**
1526
+ * @public
1527
+ */
1528
+ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
1529
+ /**
1530
+ * @public
1531
+ * @enum
1532
+ */
1533
+ export declare const OfferingClass: {
1534
+ readonly CONVERTIBLE: "CONVERTIBLE";
1535
+ readonly STANDARD: "STANDARD";
1536
+ };
1537
+ /**
1538
+ * @public
1539
+ */
1540
+ export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
1416
1541
  /**
1417
1542
  * @public
1418
1543
  * <p>The Amazon EC2 hardware specifications that you want Amazon Web Services to provide
@@ -1438,11 +1563,16 @@ export interface ServiceSpecification {
1438
1563
  }
1439
1564
  /**
1440
1565
  * @public
1566
+ * @enum
1441
1567
  */
1442
- export declare enum TermInYears {
1443
- ONE_YEAR = "ONE_YEAR",
1444
- THREE_YEARS = "THREE_YEARS"
1445
- }
1568
+ export declare const TermInYears: {
1569
+ readonly ONE_YEAR: "ONE_YEAR";
1570
+ readonly THREE_YEARS: "THREE_YEARS";
1571
+ };
1572
+ /**
1573
+ * @public
1574
+ */
1575
+ export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
1446
1576
  /**
1447
1577
  * @public
1448
1578
  * <p>Information about this specific recommendation, such as the timestamp for when Amazon Web Services made a specific recommendation.</p>
@@ -1982,11 +2112,16 @@ export interface GetReservationUtilizationResponse {
1982
2112
  }
1983
2113
  /**
1984
2114
  * @public
2115
+ * @enum
1985
2116
  */
1986
- export declare enum RecommendationTarget {
1987
- CROSS_INSTANCE_FAMILY = "CROSS_INSTANCE_FAMILY",
1988
- SAME_INSTANCE_FAMILY = "SAME_INSTANCE_FAMILY"
1989
- }
2117
+ export declare const RecommendationTarget: {
2118
+ readonly CROSS_INSTANCE_FAMILY: "CROSS_INSTANCE_FAMILY";
2119
+ readonly SAME_INSTANCE_FAMILY: "SAME_INSTANCE_FAMILY";
2120
+ };
2121
+ /**
2122
+ * @public
2123
+ */
2124
+ export type RecommendationTarget = (typeof RecommendationTarget)[keyof typeof RecommendationTarget];
1990
2125
  /**
1991
2126
  * @public
1992
2127
  * <p>You can use <code>RightsizingRecommendationConfiguration</code> to customize
@@ -2255,35 +2390,45 @@ export interface CurrentInstance {
2255
2390
  }
2256
2391
  /**
2257
2392
  * @public
2393
+ * @enum
2258
2394
  */
2259
- export declare enum FindingReasonCode {
2260
- CPU_OVER_PROVISIONED = "CPU_OVER_PROVISIONED",
2261
- CPU_UNDER_PROVISIONED = "CPU_UNDER_PROVISIONED",
2262
- DISK_IOPS_OVER_PROVISIONED = "DISK_IOPS_OVER_PROVISIONED",
2263
- DISK_IOPS_UNDER_PROVISIONED = "DISK_IOPS_UNDER_PROVISIONED",
2264
- DISK_THROUGHPUT_OVER_PROVISIONED = "DISK_THROUGHPUT_OVER_PROVISIONED",
2265
- DISK_THROUGHPUT_UNDER_PROVISIONED = "DISK_THROUGHPUT_UNDER_PROVISIONED",
2266
- EBS_IOPS_OVER_PROVISIONED = "EBS_IOPS_OVER_PROVISIONED",
2267
- EBS_IOPS_UNDER_PROVISIONED = "EBS_IOPS_UNDER_PROVISIONED",
2268
- EBS_THROUGHPUT_OVER_PROVISIONED = "EBS_THROUGHPUT_OVER_PROVISIONED",
2269
- EBS_THROUGHPUT_UNDER_PROVISIONED = "EBS_THROUGHPUT_UNDER_PROVISIONED",
2270
- MEMORY_OVER_PROVISIONED = "MEMORY_OVER_PROVISIONED",
2271
- MEMORY_UNDER_PROVISIONED = "MEMORY_UNDER_PROVISIONED",
2272
- NETWORK_BANDWIDTH_OVER_PROVISIONED = "NETWORK_BANDWIDTH_OVER_PROVISIONED",
2273
- NETWORK_BANDWIDTH_UNDER_PROVISIONED = "NETWORK_BANDWIDTH_UNDER_PROVISIONED",
2274
- NETWORK_PPS_OVER_PROVISIONED = "NETWORK_PPS_OVER_PROVISIONED",
2275
- NETWORK_PPS_UNDER_PROVISIONED = "NETWORK_PPS_UNDER_PROVISIONED"
2276
- }
2395
+ export declare const FindingReasonCode: {
2396
+ readonly CPU_OVER_PROVISIONED: "CPU_OVER_PROVISIONED";
2397
+ readonly CPU_UNDER_PROVISIONED: "CPU_UNDER_PROVISIONED";
2398
+ readonly DISK_IOPS_OVER_PROVISIONED: "DISK_IOPS_OVER_PROVISIONED";
2399
+ readonly DISK_IOPS_UNDER_PROVISIONED: "DISK_IOPS_UNDER_PROVISIONED";
2400
+ readonly DISK_THROUGHPUT_OVER_PROVISIONED: "DISK_THROUGHPUT_OVER_PROVISIONED";
2401
+ readonly DISK_THROUGHPUT_UNDER_PROVISIONED: "DISK_THROUGHPUT_UNDER_PROVISIONED";
2402
+ readonly EBS_IOPS_OVER_PROVISIONED: "EBS_IOPS_OVER_PROVISIONED";
2403
+ readonly EBS_IOPS_UNDER_PROVISIONED: "EBS_IOPS_UNDER_PROVISIONED";
2404
+ readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBS_THROUGHPUT_OVER_PROVISIONED";
2405
+ readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBS_THROUGHPUT_UNDER_PROVISIONED";
2406
+ readonly MEMORY_OVER_PROVISIONED: "MEMORY_OVER_PROVISIONED";
2407
+ readonly MEMORY_UNDER_PROVISIONED: "MEMORY_UNDER_PROVISIONED";
2408
+ readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NETWORK_BANDWIDTH_OVER_PROVISIONED";
2409
+ readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NETWORK_BANDWIDTH_UNDER_PROVISIONED";
2410
+ readonly NETWORK_PPS_OVER_PROVISIONED: "NETWORK_PPS_OVER_PROVISIONED";
2411
+ readonly NETWORK_PPS_UNDER_PROVISIONED: "NETWORK_PPS_UNDER_PROVISIONED";
2412
+ };
2277
2413
  /**
2278
2414
  * @public
2279
2415
  */
2280
- export declare enum PlatformDifference {
2281
- HYPERVISOR = "HYPERVISOR",
2282
- INSTANCE_STORE_AVAILABILITY = "INSTANCE_STORE_AVAILABILITY",
2283
- NETWORK_INTERFACE = "NETWORK_INTERFACE",
2284
- STORAGE_INTERFACE = "STORAGE_INTERFACE",
2285
- VIRTUALIZATION_TYPE = "VIRTUALIZATION_TYPE"
2286
- }
2416
+ export type FindingReasonCode = (typeof FindingReasonCode)[keyof typeof FindingReasonCode];
2417
+ /**
2418
+ * @public
2419
+ * @enum
2420
+ */
2421
+ export declare const PlatformDifference: {
2422
+ readonly HYPERVISOR: "HYPERVISOR";
2423
+ readonly INSTANCE_STORE_AVAILABILITY: "INSTANCE_STORE_AVAILABILITY";
2424
+ readonly NETWORK_INTERFACE: "NETWORK_INTERFACE";
2425
+ readonly STORAGE_INTERFACE: "STORAGE_INTERFACE";
2426
+ readonly VIRTUALIZATION_TYPE: "VIRTUALIZATION_TYPE";
2427
+ };
2428
+ /**
2429
+ * @public
2430
+ */
2431
+ export type PlatformDifference = (typeof PlatformDifference)[keyof typeof PlatformDifference];
2287
2432
  /**
2288
2433
  * @public
2289
2434
  * <p>Details on recommended instance.</p>
@@ -2334,11 +2479,16 @@ export interface ModifyRecommendationDetail {
2334
2479
  }
2335
2480
  /**
2336
2481
  * @public
2482
+ * @enum
2337
2483
  */
2338
- export declare enum RightsizingType {
2339
- MODIFY = "MODIFY",
2340
- TERMINATE = "TERMINATE"
2341
- }
2484
+ export declare const RightsizingType: {
2485
+ readonly MODIFY: "MODIFY";
2486
+ readonly TERMINATE: "TERMINATE";
2487
+ };
2488
+ /**
2489
+ * @public
2490
+ */
2491
+ export type RightsizingType = (typeof RightsizingType)[keyof typeof RightsizingType];
2342
2492
  /**
2343
2493
  * @public
2344
2494
  * <p>Details on termination recommendation. </p>
@@ -2498,12 +2648,17 @@ export interface GetSavingsPlansCoverageResponse {
2498
2648
  }
2499
2649
  /**
2500
2650
  * @public
2651
+ * @enum
2501
2652
  */
2502
- export declare enum SupportedSavingsPlansType {
2503
- COMPUTE_SP = "COMPUTE_SP",
2504
- EC2_INSTANCE_SP = "EC2_INSTANCE_SP",
2505
- SAGEMAKER_SP = "SAGEMAKER_SP"
2506
- }
2653
+ export declare const SupportedSavingsPlansType: {
2654
+ readonly COMPUTE_SP: "COMPUTE_SP";
2655
+ readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
2656
+ readonly SAGEMAKER_SP: "SAGEMAKER_SP";
2657
+ };
2658
+ /**
2659
+ * @public
2660
+ */
2661
+ export type SupportedSavingsPlansType = (typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
2507
2662
  /**
2508
2663
  * @public
2509
2664
  * <p>Metadata about your Savings Plans Purchase Recommendations.</p>
@@ -2874,13 +3029,18 @@ export interface GetSavingsPlansUtilizationResponse {
2874
3029
  }
2875
3030
  /**
2876
3031
  * @public
3032
+ * @enum
2877
3033
  */
2878
- export declare enum SavingsPlansDataType {
2879
- AMORTIZED_COMMITMENT = "AMORTIZED_COMMITMENT",
2880
- ATTRIBUTES = "ATTRIBUTES",
2881
- SAVINGS = "SAVINGS",
2882
- UTILIZATION = "UTILIZATION"
2883
- }
3034
+ export declare const SavingsPlansDataType: {
3035
+ readonly AMORTIZED_COMMITMENT: "AMORTIZED_COMMITMENT";
3036
+ readonly ATTRIBUTES: "ATTRIBUTES";
3037
+ readonly SAVINGS: "SAVINGS";
3038
+ readonly UTILIZATION: "UTILIZATION";
3039
+ };
3040
+ /**
3041
+ * @public
3042
+ */
3043
+ export type SavingsPlansDataType = (typeof SavingsPlansDataType)[keyof typeof SavingsPlansDataType];
2884
3044
  /**
2885
3045
  * @public
2886
3046
  * <p>A single daily or monthly Savings Plans utilization rate and details for your account.
@@ -2989,18 +3149,28 @@ export declare class UnresolvableUsageUnitException extends __BaseException {
2989
3149
  }
2990
3150
  /**
2991
3151
  * @public
3152
+ * @enum
2992
3153
  */
2993
- export declare enum CostAllocationTagStatus {
2994
- ACTIVE = "Active",
2995
- INACTIVE = "Inactive"
2996
- }
3154
+ export declare const CostAllocationTagStatus: {
3155
+ readonly ACTIVE: "Active";
3156
+ readonly INACTIVE: "Inactive";
3157
+ };
2997
3158
  /**
2998
3159
  * @public
2999
3160
  */
3000
- export declare enum CostAllocationTagType {
3001
- AWS_GENERATED = "AWSGenerated",
3002
- USER_DEFINED = "UserDefined"
3003
- }
3161
+ export type CostAllocationTagStatus = (typeof CostAllocationTagStatus)[keyof typeof CostAllocationTagStatus];
3162
+ /**
3163
+ * @public
3164
+ * @enum
3165
+ */
3166
+ export declare const CostAllocationTagType: {
3167
+ readonly AWS_GENERATED: "AWSGenerated";
3168
+ readonly USER_DEFINED: "UserDefined";
3169
+ };
3170
+ /**
3171
+ * @public
3172
+ */
3173
+ export type CostAllocationTagType = (typeof CostAllocationTagType)[keyof typeof CostAllocationTagType];
3004
3174
  /**
3005
3175
  * @public
3006
3176
  */
@@ -3147,12 +3317,17 @@ export interface ListCostCategoryDefinitionsResponse {
3147
3317
  }
3148
3318
  /**
3149
3319
  * @public
3320
+ * @enum
3150
3321
  */
3151
- export declare enum GenerationStatus {
3152
- FAILED = "FAILED",
3153
- PROCESSING = "PROCESSING",
3154
- SUCCEEDED = "SUCCEEDED"
3155
- }
3322
+ export declare const GenerationStatus: {
3323
+ readonly FAILED: "FAILED";
3324
+ readonly PROCESSING: "PROCESSING";
3325
+ readonly SUCCEEDED: "SUCCEEDED";
3326
+ };
3327
+ /**
3328
+ * @public
3329
+ */
3330
+ export type GenerationStatus = (typeof GenerationStatus)[keyof typeof GenerationStatus];
3156
3331
  /**
3157
3332
  * @public
3158
3333
  */