@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.
@@ -1,18 +1,21 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
3
- export declare enum AccountScope {
4
- LINKED = "LINKED",
5
- PAYER = "PAYER",
6
- }
3
+ export declare const AccountScope: {
4
+ readonly LINKED: "LINKED";
5
+ readonly PAYER: "PAYER";
6
+ };
7
+ export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
7
8
  export interface AnomalyScore {
8
9
  MaxScore: number | undefined;
9
10
  CurrentScore: number | undefined;
10
11
  }
11
- export declare enum AnomalyFeedbackType {
12
- NO = "NO",
13
- PLANNED_ACTIVITY = "PLANNED_ACTIVITY",
14
- YES = "YES",
15
- }
12
+ export declare const AnomalyFeedbackType: {
13
+ readonly NO: "NO";
14
+ readonly PLANNED_ACTIVITY: "PLANNED_ACTIVITY";
15
+ readonly YES: "YES";
16
+ };
17
+ export type AnomalyFeedbackType =
18
+ (typeof AnomalyFeedbackType)[keyof typeof AnomalyFeedbackType];
16
19
  export interface Impact {
17
20
  MaxImpact: number | undefined;
18
21
  TotalImpact?: number;
@@ -42,60 +45,64 @@ export interface AnomalyDateInterval {
42
45
  StartDate: string | undefined;
43
46
  EndDate?: string;
44
47
  }
45
- export declare enum MonitorDimension {
46
- SERVICE = "SERVICE",
47
- }
48
- export declare enum MatchOption {
49
- ABSENT = "ABSENT",
50
- CASE_INSENSITIVE = "CASE_INSENSITIVE",
51
- CASE_SENSITIVE = "CASE_SENSITIVE",
52
- CONTAINS = "CONTAINS",
53
- ENDS_WITH = "ENDS_WITH",
54
- EQUALS = "EQUALS",
55
- GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
56
- STARTS_WITH = "STARTS_WITH",
57
- }
48
+ export declare const MonitorDimension: {
49
+ readonly SERVICE: "SERVICE";
50
+ };
51
+ export type MonitorDimension =
52
+ (typeof MonitorDimension)[keyof typeof MonitorDimension];
53
+ export declare const MatchOption: {
54
+ readonly ABSENT: "ABSENT";
55
+ readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
56
+ readonly CASE_SENSITIVE: "CASE_SENSITIVE";
57
+ readonly CONTAINS: "CONTAINS";
58
+ readonly ENDS_WITH: "ENDS_WITH";
59
+ readonly EQUALS: "EQUALS";
60
+ readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
61
+ readonly STARTS_WITH: "STARTS_WITH";
62
+ };
63
+ export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
58
64
  export interface CostCategoryValues {
59
65
  Key?: string;
60
66
  Values?: string[];
61
67
  MatchOptions?: (MatchOption | string)[];
62
68
  }
63
- export declare enum Dimension {
64
- AGREEMENT_END_DATE_TIME_AFTER = "AGREEMENT_END_DATE_TIME_AFTER",
65
- AGREEMENT_END_DATE_TIME_BEFORE = "AGREEMENT_END_DATE_TIME_BEFORE",
66
- ANOMALY_TOTAL_IMPACT_ABSOLUTE = "ANOMALY_TOTAL_IMPACT_ABSOLUTE",
67
- ANOMALY_TOTAL_IMPACT_PERCENTAGE = "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
68
- AZ = "AZ",
69
- BILLING_ENTITY = "BILLING_ENTITY",
70
- CACHE_ENGINE = "CACHE_ENGINE",
71
- DATABASE_ENGINE = "DATABASE_ENGINE",
72
- DEPLOYMENT_OPTION = "DEPLOYMENT_OPTION",
73
- INSTANCE_TYPE = "INSTANCE_TYPE",
74
- INSTANCE_TYPE_FAMILY = "INSTANCE_TYPE_FAMILY",
75
- INVOICING_ENTITY = "INVOICING_ENTITY",
76
- LEGAL_ENTITY_NAME = "LEGAL_ENTITY_NAME",
77
- LINKED_ACCOUNT = "LINKED_ACCOUNT",
78
- LINKED_ACCOUNT_NAME = "LINKED_ACCOUNT_NAME",
79
- OPERATING_SYSTEM = "OPERATING_SYSTEM",
80
- OPERATION = "OPERATION",
81
- PAYMENT_OPTION = "PAYMENT_OPTION",
82
- PLATFORM = "PLATFORM",
83
- PURCHASE_TYPE = "PURCHASE_TYPE",
84
- RECORD_TYPE = "RECORD_TYPE",
85
- REGION = "REGION",
86
- RESERVATION_ID = "RESERVATION_ID",
87
- RESOURCE_ID = "RESOURCE_ID",
88
- RIGHTSIZING_TYPE = "RIGHTSIZING_TYPE",
89
- SAVINGS_PLANS_TYPE = "SAVINGS_PLANS_TYPE",
90
- SAVINGS_PLAN_ARN = "SAVINGS_PLAN_ARN",
91
- SCOPE = "SCOPE",
92
- SERVICE = "SERVICE",
93
- SERVICE_CODE = "SERVICE_CODE",
94
- SUBSCRIPTION_ID = "SUBSCRIPTION_ID",
95
- TENANCY = "TENANCY",
96
- USAGE_TYPE = "USAGE_TYPE",
97
- USAGE_TYPE_GROUP = "USAGE_TYPE_GROUP",
98
- }
69
+ export declare const Dimension: {
70
+ readonly AGREEMENT_END_DATE_TIME_AFTER: "AGREEMENT_END_DATE_TIME_AFTER";
71
+ readonly AGREEMENT_END_DATE_TIME_BEFORE: "AGREEMENT_END_DATE_TIME_BEFORE";
72
+ readonly ANOMALY_TOTAL_IMPACT_ABSOLUTE: "ANOMALY_TOTAL_IMPACT_ABSOLUTE";
73
+ readonly ANOMALY_TOTAL_IMPACT_PERCENTAGE: "ANOMALY_TOTAL_IMPACT_PERCENTAGE";
74
+ readonly AZ: "AZ";
75
+ readonly BILLING_ENTITY: "BILLING_ENTITY";
76
+ readonly CACHE_ENGINE: "CACHE_ENGINE";
77
+ readonly DATABASE_ENGINE: "DATABASE_ENGINE";
78
+ readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
79
+ readonly INSTANCE_TYPE: "INSTANCE_TYPE";
80
+ readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
81
+ readonly INVOICING_ENTITY: "INVOICING_ENTITY";
82
+ readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
83
+ readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
84
+ readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
85
+ readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
86
+ readonly OPERATION: "OPERATION";
87
+ readonly PAYMENT_OPTION: "PAYMENT_OPTION";
88
+ readonly PLATFORM: "PLATFORM";
89
+ readonly PURCHASE_TYPE: "PURCHASE_TYPE";
90
+ readonly RECORD_TYPE: "RECORD_TYPE";
91
+ readonly REGION: "REGION";
92
+ readonly RESERVATION_ID: "RESERVATION_ID";
93
+ readonly RESOURCE_ID: "RESOURCE_ID";
94
+ readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
95
+ readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
96
+ readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
97
+ readonly SCOPE: "SCOPE";
98
+ readonly SERVICE: "SERVICE";
99
+ readonly SERVICE_CODE: "SERVICE_CODE";
100
+ readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
101
+ readonly TENANCY: "TENANCY";
102
+ readonly USAGE_TYPE: "USAGE_TYPE";
103
+ readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
104
+ };
105
+ export type Dimension = (typeof Dimension)[keyof typeof Dimension];
99
106
  export interface DimensionValues {
100
107
  Key?: Dimension | string;
101
108
  Values?: string[];
@@ -106,23 +113,30 @@ export interface TagValues {
106
113
  Values?: string[];
107
114
  MatchOptions?: (MatchOption | string)[];
108
115
  }
109
- export declare enum MonitorType {
110
- CUSTOM = "CUSTOM",
111
- DIMENSIONAL = "DIMENSIONAL",
112
- }
113
- export declare enum AnomalySubscriptionFrequency {
114
- DAILY = "DAILY",
115
- IMMEDIATE = "IMMEDIATE",
116
- WEEKLY = "WEEKLY",
117
- }
118
- export declare enum SubscriberStatus {
119
- CONFIRMED = "CONFIRMED",
120
- DECLINED = "DECLINED",
121
- }
122
- export declare enum SubscriberType {
123
- EMAIL = "EMAIL",
124
- SNS = "SNS",
125
- }
116
+ export declare const MonitorType: {
117
+ readonly CUSTOM: "CUSTOM";
118
+ readonly DIMENSIONAL: "DIMENSIONAL";
119
+ };
120
+ export type MonitorType = (typeof MonitorType)[keyof typeof MonitorType];
121
+ export declare const AnomalySubscriptionFrequency: {
122
+ readonly DAILY: "DAILY";
123
+ readonly IMMEDIATE: "IMMEDIATE";
124
+ readonly WEEKLY: "WEEKLY";
125
+ };
126
+ export type AnomalySubscriptionFrequency =
127
+ (typeof AnomalySubscriptionFrequency)[keyof typeof AnomalySubscriptionFrequency];
128
+ export declare const SubscriberStatus: {
129
+ readonly CONFIRMED: "CONFIRMED";
130
+ readonly DECLINED: "DECLINED";
131
+ };
132
+ export type SubscriberStatus =
133
+ (typeof SubscriberStatus)[keyof typeof SubscriberStatus];
134
+ export declare const SubscriberType: {
135
+ readonly EMAIL: "EMAIL";
136
+ readonly SNS: "SNS";
137
+ };
138
+ export type SubscriberType =
139
+ (typeof SubscriberType)[keyof typeof SubscriberType];
126
140
  export interface Subscriber {
127
141
  Address?: string;
128
142
  Type?: SubscriberType | string;
@@ -154,29 +168,39 @@ export declare class UnknownMonitorException extends __BaseException {
154
168
  opts: __ExceptionOptionType<UnknownMonitorException, __BaseException>
155
169
  );
156
170
  }
157
- export declare enum CostCategoryInheritedValueDimensionName {
158
- LINKED_ACCOUNT_NAME = "LINKED_ACCOUNT_NAME",
159
- TAG = "TAG",
160
- }
171
+ export declare const CostCategoryInheritedValueDimensionName: {
172
+ readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
173
+ readonly TAG: "TAG";
174
+ };
175
+ export type CostCategoryInheritedValueDimensionName =
176
+ (typeof CostCategoryInheritedValueDimensionName)[keyof typeof CostCategoryInheritedValueDimensionName];
161
177
  export interface CostCategoryInheritedValueDimension {
162
178
  DimensionName?: CostCategoryInheritedValueDimensionName | string;
163
179
  DimensionKey?: string;
164
180
  }
165
- export declare enum CostCategoryRuleType {
166
- INHERITED_VALUE = "INHERITED_VALUE",
167
- REGULAR = "REGULAR",
168
- }
169
- export declare enum CostCategoryRuleVersion {
170
- CostCategoryExpressionV1 = "CostCategoryExpression.v1",
171
- }
172
- export declare enum CostCategorySplitChargeMethod {
173
- EVEN = "EVEN",
174
- FIXED = "FIXED",
175
- PROPORTIONAL = "PROPORTIONAL",
176
- }
177
- export declare enum CostCategorySplitChargeRuleParameterType {
178
- ALLOCATION_PERCENTAGES = "ALLOCATION_PERCENTAGES",
179
- }
181
+ export declare const CostCategoryRuleType: {
182
+ readonly INHERITED_VALUE: "INHERITED_VALUE";
183
+ readonly REGULAR: "REGULAR";
184
+ };
185
+ export type CostCategoryRuleType =
186
+ (typeof CostCategoryRuleType)[keyof typeof CostCategoryRuleType];
187
+ export declare const CostCategoryRuleVersion: {
188
+ readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
189
+ };
190
+ export type CostCategoryRuleVersion =
191
+ (typeof CostCategoryRuleVersion)[keyof typeof CostCategoryRuleVersion];
192
+ export declare const CostCategorySplitChargeMethod: {
193
+ readonly EVEN: "EVEN";
194
+ readonly FIXED: "FIXED";
195
+ readonly PROPORTIONAL: "PROPORTIONAL";
196
+ };
197
+ export type CostCategorySplitChargeMethod =
198
+ (typeof CostCategorySplitChargeMethod)[keyof typeof CostCategorySplitChargeMethod];
199
+ export declare const CostCategorySplitChargeRuleParameterType: {
200
+ readonly ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES";
201
+ };
202
+ export type CostCategorySplitChargeRuleParameterType =
203
+ (typeof CostCategorySplitChargeRuleParameterType)[keyof typeof CostCategorySplitChargeRuleParameterType];
180
204
  export interface CostCategorySplitChargeRuleParameter {
181
205
  Type: CostCategorySplitChargeRuleParameterType | string | undefined;
182
206
  Values: string[] | undefined;
@@ -235,25 +259,31 @@ export interface DescribeCostCategoryDefinitionRequest {
235
259
  CostCategoryArn: string | undefined;
236
260
  EffectiveOn?: string;
237
261
  }
238
- export declare enum CostCategoryStatusComponent {
239
- COST_EXPLORER = "COST_EXPLORER",
240
- }
241
- export declare enum CostCategoryStatus {
242
- APPLIED = "APPLIED",
243
- PROCESSING = "PROCESSING",
244
- }
262
+ export declare const CostCategoryStatusComponent: {
263
+ readonly COST_EXPLORER: "COST_EXPLORER";
264
+ };
265
+ export type CostCategoryStatusComponent =
266
+ (typeof CostCategoryStatusComponent)[keyof typeof CostCategoryStatusComponent];
267
+ export declare const CostCategoryStatus: {
268
+ readonly APPLIED: "APPLIED";
269
+ readonly PROCESSING: "PROCESSING";
270
+ };
271
+ export type CostCategoryStatus =
272
+ (typeof CostCategoryStatus)[keyof typeof CostCategoryStatus];
245
273
  export interface CostCategoryProcessingStatus {
246
274
  Component?: CostCategoryStatusComponent | string;
247
275
  Status?: CostCategoryStatus | string;
248
276
  }
249
- export declare enum NumericOperator {
250
- BETWEEN = "BETWEEN",
251
- EQUAL = "EQUAL",
252
- GREATER_THAN = "GREATER_THAN",
253
- GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
254
- LESS_THAN = "LESS_THAN",
255
- LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
256
- }
277
+ export declare const NumericOperator: {
278
+ readonly BETWEEN: "BETWEEN";
279
+ readonly EQUAL: "EQUAL";
280
+ readonly GREATER_THAN: "GREATER_THAN";
281
+ readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
282
+ readonly LESS_THAN: "LESS_THAN";
283
+ readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
284
+ };
285
+ export type NumericOperator =
286
+ (typeof NumericOperator)[keyof typeof NumericOperator];
257
287
  export interface TotalImpactFilter {
258
288
  NumericOperator: NumericOperator | string | undefined;
259
289
  StartValue: number | undefined;
@@ -306,16 +336,19 @@ export declare class DataUnavailableException extends __BaseException {
306
336
  opts: __ExceptionOptionType<DataUnavailableException, __BaseException>
307
337
  );
308
338
  }
309
- export declare enum Granularity {
310
- DAILY = "DAILY",
311
- HOURLY = "HOURLY",
312
- MONTHLY = "MONTHLY",
313
- }
314
- export declare enum GroupDefinitionType {
315
- COST_CATEGORY = "COST_CATEGORY",
316
- DIMENSION = "DIMENSION",
317
- TAG = "TAG",
318
- }
339
+ export declare const Granularity: {
340
+ readonly DAILY: "DAILY";
341
+ readonly HOURLY: "HOURLY";
342
+ readonly MONTHLY: "MONTHLY";
343
+ };
344
+ export type Granularity = (typeof Granularity)[keyof typeof Granularity];
345
+ export declare const GroupDefinitionType: {
346
+ readonly COST_CATEGORY: "COST_CATEGORY";
347
+ readonly DIMENSION: "DIMENSION";
348
+ readonly TAG: "TAG";
349
+ };
350
+ export type GroupDefinitionType =
351
+ (typeof GroupDefinitionType)[keyof typeof GroupDefinitionType];
319
352
  export interface GroupDefinition {
320
353
  Type?: GroupDefinitionType | string;
321
354
  Key?: string;
@@ -362,10 +395,11 @@ export interface GetCostAndUsageWithResourcesResponse {
362
395
  ResultsByTime?: ResultByTime[];
363
396
  DimensionValueAttributes?: DimensionValuesWithAttributes[];
364
397
  }
365
- export declare enum SortOrder {
366
- ASCENDING = "ASCENDING",
367
- DESCENDING = "DESCENDING",
368
- }
398
+ export declare const SortOrder: {
399
+ readonly ASCENDING: "ASCENDING";
400
+ readonly DESCENDING: "DESCENDING";
401
+ };
402
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
369
403
  export interface SortDefinition {
370
404
  Key: string | undefined;
371
405
  SortOrder?: SortOrder | string;
@@ -377,15 +411,16 @@ export interface GetCostCategoriesResponse {
377
411
  ReturnSize: number | undefined;
378
412
  TotalSize: number | undefined;
379
413
  }
380
- export declare enum Metric {
381
- AMORTIZED_COST = "AMORTIZED_COST",
382
- BLENDED_COST = "BLENDED_COST",
383
- NET_AMORTIZED_COST = "NET_AMORTIZED_COST",
384
- NET_UNBLENDED_COST = "NET_UNBLENDED_COST",
385
- NORMALIZED_USAGE_AMOUNT = "NORMALIZED_USAGE_AMOUNT",
386
- UNBLENDED_COST = "UNBLENDED_COST",
387
- USAGE_QUANTITY = "USAGE_QUANTITY",
388
- }
414
+ export declare const Metric: {
415
+ readonly AMORTIZED_COST: "AMORTIZED_COST";
416
+ readonly BLENDED_COST: "BLENDED_COST";
417
+ readonly NET_AMORTIZED_COST: "NET_AMORTIZED_COST";
418
+ readonly NET_UNBLENDED_COST: "NET_UNBLENDED_COST";
419
+ readonly NORMALIZED_USAGE_AMOUNT: "NORMALIZED_USAGE_AMOUNT";
420
+ readonly UNBLENDED_COST: "UNBLENDED_COST";
421
+ readonly USAGE_QUANTITY: "USAGE_QUANTITY";
422
+ };
423
+ export type Metric = (typeof Metric)[keyof typeof Metric];
389
424
  export interface ForecastResult {
390
425
  TimePeriod?: DateInterval;
391
426
  MeanValue?: string;
@@ -396,11 +431,12 @@ export interface GetCostForecastResponse {
396
431
  Total?: MetricValue;
397
432
  ForecastResultsByTime?: ForecastResult[];
398
433
  }
399
- export declare enum Context {
400
- COST_AND_USAGE = "COST_AND_USAGE",
401
- RESERVATIONS = "RESERVATIONS",
402
- SAVINGS_PLANS = "SAVINGS_PLANS",
403
- }
434
+ export declare const Context: {
435
+ readonly COST_AND_USAGE: "COST_AND_USAGE";
436
+ readonly RESERVATIONS: "RESERVATIONS";
437
+ readonly SAVINGS_PLANS: "SAVINGS_PLANS";
438
+ };
439
+ export type Context = (typeof Context)[keyof typeof Context];
404
440
  export interface GetDimensionValuesResponse {
405
441
  DimensionValues: DimensionValuesWithAttributes[] | undefined;
406
442
  ReturnSize: number | undefined;
@@ -441,33 +477,38 @@ export interface GetReservationCoverageResponse {
441
477
  Total?: Coverage;
442
478
  NextPageToken?: string;
443
479
  }
444
- export declare enum LookbackPeriodInDays {
445
- SEVEN_DAYS = "SEVEN_DAYS",
446
- SIXTY_DAYS = "SIXTY_DAYS",
447
- THIRTY_DAYS = "THIRTY_DAYS",
448
- }
449
- export declare enum PaymentOption {
450
- ALL_UPFRONT = "ALL_UPFRONT",
451
- HEAVY_UTILIZATION = "HEAVY_UTILIZATION",
452
- LIGHT_UTILIZATION = "LIGHT_UTILIZATION",
453
- MEDIUM_UTILIZATION = "MEDIUM_UTILIZATION",
454
- NO_UPFRONT = "NO_UPFRONT",
455
- PARTIAL_UPFRONT = "PARTIAL_UPFRONT",
456
- }
457
- export declare enum OfferingClass {
458
- CONVERTIBLE = "CONVERTIBLE",
459
- STANDARD = "STANDARD",
460
- }
480
+ export declare const LookbackPeriodInDays: {
481
+ readonly SEVEN_DAYS: "SEVEN_DAYS";
482
+ readonly SIXTY_DAYS: "SIXTY_DAYS";
483
+ readonly THIRTY_DAYS: "THIRTY_DAYS";
484
+ };
485
+ export type LookbackPeriodInDays =
486
+ (typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
487
+ export declare const PaymentOption: {
488
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
489
+ readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
490
+ readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
491
+ readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
492
+ readonly NO_UPFRONT: "NO_UPFRONT";
493
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
494
+ };
495
+ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
496
+ export declare const OfferingClass: {
497
+ readonly CONVERTIBLE: "CONVERTIBLE";
498
+ readonly STANDARD: "STANDARD";
499
+ };
500
+ export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
461
501
  export interface EC2Specification {
462
502
  OfferingClass?: OfferingClass | string;
463
503
  }
464
504
  export interface ServiceSpecification {
465
505
  EC2Specification?: EC2Specification;
466
506
  }
467
- export declare enum TermInYears {
468
- ONE_YEAR = "ONE_YEAR",
469
- THREE_YEARS = "THREE_YEARS",
470
- }
507
+ export declare const TermInYears: {
508
+ readonly ONE_YEAR: "ONE_YEAR";
509
+ readonly THREE_YEARS: "THREE_YEARS";
510
+ };
511
+ export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
471
512
  export interface ReservationPurchaseRecommendationMetadata {
472
513
  RecommendationId?: string;
473
514
  GenerationTimestamp?: string;
@@ -597,10 +638,12 @@ export interface GetReservationUtilizationResponse {
597
638
  Total?: ReservationAggregates;
598
639
  NextPageToken?: string;
599
640
  }
600
- export declare enum RecommendationTarget {
601
- CROSS_INSTANCE_FAMILY = "CROSS_INSTANCE_FAMILY",
602
- SAME_INSTANCE_FAMILY = "SAME_INSTANCE_FAMILY",
603
- }
641
+ export declare const RecommendationTarget: {
642
+ readonly CROSS_INSTANCE_FAMILY: "CROSS_INSTANCE_FAMILY";
643
+ readonly SAME_INSTANCE_FAMILY: "SAME_INSTANCE_FAMILY";
644
+ };
645
+ export type RecommendationTarget =
646
+ (typeof RecommendationTarget)[keyof typeof RecommendationTarget];
604
647
  export interface RightsizingRecommendationConfiguration {
605
648
  RecommendationTarget: RecommendationTarget | string | undefined;
606
649
  BenefitsConsidered: boolean | undefined;
@@ -667,31 +710,35 @@ export interface CurrentInstance {
667
710
  MonthlyCost?: string;
668
711
  CurrencyCode?: string;
669
712
  }
670
- export declare enum FindingReasonCode {
671
- CPU_OVER_PROVISIONED = "CPU_OVER_PROVISIONED",
672
- CPU_UNDER_PROVISIONED = "CPU_UNDER_PROVISIONED",
673
- DISK_IOPS_OVER_PROVISIONED = "DISK_IOPS_OVER_PROVISIONED",
674
- DISK_IOPS_UNDER_PROVISIONED = "DISK_IOPS_UNDER_PROVISIONED",
675
- DISK_THROUGHPUT_OVER_PROVISIONED = "DISK_THROUGHPUT_OVER_PROVISIONED",
676
- DISK_THROUGHPUT_UNDER_PROVISIONED = "DISK_THROUGHPUT_UNDER_PROVISIONED",
677
- EBS_IOPS_OVER_PROVISIONED = "EBS_IOPS_OVER_PROVISIONED",
678
- EBS_IOPS_UNDER_PROVISIONED = "EBS_IOPS_UNDER_PROVISIONED",
679
- EBS_THROUGHPUT_OVER_PROVISIONED = "EBS_THROUGHPUT_OVER_PROVISIONED",
680
- EBS_THROUGHPUT_UNDER_PROVISIONED = "EBS_THROUGHPUT_UNDER_PROVISIONED",
681
- MEMORY_OVER_PROVISIONED = "MEMORY_OVER_PROVISIONED",
682
- MEMORY_UNDER_PROVISIONED = "MEMORY_UNDER_PROVISIONED",
683
- NETWORK_BANDWIDTH_OVER_PROVISIONED = "NETWORK_BANDWIDTH_OVER_PROVISIONED",
684
- NETWORK_BANDWIDTH_UNDER_PROVISIONED = "NETWORK_BANDWIDTH_UNDER_PROVISIONED",
685
- NETWORK_PPS_OVER_PROVISIONED = "NETWORK_PPS_OVER_PROVISIONED",
686
- NETWORK_PPS_UNDER_PROVISIONED = "NETWORK_PPS_UNDER_PROVISIONED",
687
- }
688
- export declare enum PlatformDifference {
689
- HYPERVISOR = "HYPERVISOR",
690
- INSTANCE_STORE_AVAILABILITY = "INSTANCE_STORE_AVAILABILITY",
691
- NETWORK_INTERFACE = "NETWORK_INTERFACE",
692
- STORAGE_INTERFACE = "STORAGE_INTERFACE",
693
- VIRTUALIZATION_TYPE = "VIRTUALIZATION_TYPE",
694
- }
713
+ export declare const FindingReasonCode: {
714
+ readonly CPU_OVER_PROVISIONED: "CPU_OVER_PROVISIONED";
715
+ readonly CPU_UNDER_PROVISIONED: "CPU_UNDER_PROVISIONED";
716
+ readonly DISK_IOPS_OVER_PROVISIONED: "DISK_IOPS_OVER_PROVISIONED";
717
+ readonly DISK_IOPS_UNDER_PROVISIONED: "DISK_IOPS_UNDER_PROVISIONED";
718
+ readonly DISK_THROUGHPUT_OVER_PROVISIONED: "DISK_THROUGHPUT_OVER_PROVISIONED";
719
+ readonly DISK_THROUGHPUT_UNDER_PROVISIONED: "DISK_THROUGHPUT_UNDER_PROVISIONED";
720
+ readonly EBS_IOPS_OVER_PROVISIONED: "EBS_IOPS_OVER_PROVISIONED";
721
+ readonly EBS_IOPS_UNDER_PROVISIONED: "EBS_IOPS_UNDER_PROVISIONED";
722
+ readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBS_THROUGHPUT_OVER_PROVISIONED";
723
+ readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBS_THROUGHPUT_UNDER_PROVISIONED";
724
+ readonly MEMORY_OVER_PROVISIONED: "MEMORY_OVER_PROVISIONED";
725
+ readonly MEMORY_UNDER_PROVISIONED: "MEMORY_UNDER_PROVISIONED";
726
+ readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NETWORK_BANDWIDTH_OVER_PROVISIONED";
727
+ readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NETWORK_BANDWIDTH_UNDER_PROVISIONED";
728
+ readonly NETWORK_PPS_OVER_PROVISIONED: "NETWORK_PPS_OVER_PROVISIONED";
729
+ readonly NETWORK_PPS_UNDER_PROVISIONED: "NETWORK_PPS_UNDER_PROVISIONED";
730
+ };
731
+ export type FindingReasonCode =
732
+ (typeof FindingReasonCode)[keyof typeof FindingReasonCode];
733
+ export declare const PlatformDifference: {
734
+ readonly HYPERVISOR: "HYPERVISOR";
735
+ readonly INSTANCE_STORE_AVAILABILITY: "INSTANCE_STORE_AVAILABILITY";
736
+ readonly NETWORK_INTERFACE: "NETWORK_INTERFACE";
737
+ readonly STORAGE_INTERFACE: "STORAGE_INTERFACE";
738
+ readonly VIRTUALIZATION_TYPE: "VIRTUALIZATION_TYPE";
739
+ };
740
+ export type PlatformDifference =
741
+ (typeof PlatformDifference)[keyof typeof PlatformDifference];
695
742
  export interface TargetInstance {
696
743
  EstimatedMonthlyCost?: string;
697
744
  EstimatedMonthlySavings?: string;
@@ -704,10 +751,12 @@ export interface TargetInstance {
704
751
  export interface ModifyRecommendationDetail {
705
752
  TargetInstances?: TargetInstance[];
706
753
  }
707
- export declare enum RightsizingType {
708
- MODIFY = "MODIFY",
709
- TERMINATE = "TERMINATE",
710
- }
754
+ export declare const RightsizingType: {
755
+ readonly MODIFY: "MODIFY";
756
+ readonly TERMINATE: "TERMINATE";
757
+ };
758
+ export type RightsizingType =
759
+ (typeof RightsizingType)[keyof typeof RightsizingType];
711
760
  export interface TerminateRecommendationDetail {
712
761
  EstimatedMonthlySavings?: string;
713
762
  CurrencyCode?: string;
@@ -748,11 +797,13 @@ export interface GetSavingsPlansCoverageResponse {
748
797
  SavingsPlansCoverages: SavingsPlansCoverage[] | undefined;
749
798
  NextToken?: string;
750
799
  }
751
- export declare enum SupportedSavingsPlansType {
752
- COMPUTE_SP = "COMPUTE_SP",
753
- EC2_INSTANCE_SP = "EC2_INSTANCE_SP",
754
- SAGEMAKER_SP = "SAGEMAKER_SP",
755
- }
800
+ export declare const SupportedSavingsPlansType: {
801
+ readonly COMPUTE_SP: "COMPUTE_SP";
802
+ readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
803
+ readonly SAGEMAKER_SP: "SAGEMAKER_SP";
804
+ };
805
+ export type SupportedSavingsPlansType =
806
+ (typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
756
807
  export interface SavingsPlansPurchaseRecommendationMetadata {
757
808
  RecommendationId?: string;
758
809
  GenerationTimestamp?: string;
@@ -838,12 +889,14 @@ export interface GetSavingsPlansUtilizationResponse {
838
889
  SavingsPlansUtilizationsByTime?: SavingsPlansUtilizationByTime[];
839
890
  Total: SavingsPlansUtilizationAggregates | undefined;
840
891
  }
841
- export declare enum SavingsPlansDataType {
842
- AMORTIZED_COMMITMENT = "AMORTIZED_COMMITMENT",
843
- ATTRIBUTES = "ATTRIBUTES",
844
- SAVINGS = "SAVINGS",
845
- UTILIZATION = "UTILIZATION",
846
- }
892
+ export declare const SavingsPlansDataType: {
893
+ readonly AMORTIZED_COMMITMENT: "AMORTIZED_COMMITMENT";
894
+ readonly ATTRIBUTES: "ATTRIBUTES";
895
+ readonly SAVINGS: "SAVINGS";
896
+ readonly UTILIZATION: "UTILIZATION";
897
+ };
898
+ export type SavingsPlansDataType =
899
+ (typeof SavingsPlansDataType)[keyof typeof SavingsPlansDataType];
847
900
  export interface SavingsPlansUtilizationDetail {
848
901
  SavingsPlanArn?: string;
849
902
  Attributes?: Record<string, string>;
@@ -875,14 +928,18 @@ export declare class UnresolvableUsageUnitException extends __BaseException {
875
928
  opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>
876
929
  );
877
930
  }
878
- export declare enum CostAllocationTagStatus {
879
- ACTIVE = "Active",
880
- INACTIVE = "Inactive",
881
- }
882
- export declare enum CostAllocationTagType {
883
- AWS_GENERATED = "AWSGenerated",
884
- USER_DEFINED = "UserDefined",
885
- }
931
+ export declare const CostAllocationTagStatus: {
932
+ readonly ACTIVE: "Active";
933
+ readonly INACTIVE: "Inactive";
934
+ };
935
+ export type CostAllocationTagStatus =
936
+ (typeof CostAllocationTagStatus)[keyof typeof CostAllocationTagStatus];
937
+ export declare const CostAllocationTagType: {
938
+ readonly AWS_GENERATED: "AWSGenerated";
939
+ readonly USER_DEFINED: "UserDefined";
940
+ };
941
+ export type CostAllocationTagType =
942
+ (typeof CostAllocationTagType)[keyof typeof CostAllocationTagType];
886
943
  export interface ListCostAllocationTagsRequest {
887
944
  Status?: CostAllocationTagStatus | string;
888
945
  TagKeys?: string[];
@@ -918,11 +975,13 @@ export interface ListCostCategoryDefinitionsResponse {
918
975
  CostCategoryReferences?: CostCategoryReference[];
919
976
  NextToken?: string;
920
977
  }
921
- export declare enum GenerationStatus {
922
- FAILED = "FAILED",
923
- PROCESSING = "PROCESSING",
924
- SUCCEEDED = "SUCCEEDED",
925
- }
978
+ export declare const GenerationStatus: {
979
+ readonly FAILED: "FAILED";
980
+ readonly PROCESSING: "PROCESSING";
981
+ readonly SUCCEEDED: "SUCCEEDED";
982
+ };
983
+ export type GenerationStatus =
984
+ (typeof GenerationStatus)[keyof typeof GenerationStatus];
926
985
  export interface ListSavingsPlansPurchaseRecommendationGenerationRequest {
927
986
  GenerationStatus?: GenerationStatus | string;
928
987
  RecommendationIds?: string[];