@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.
- package/dist-cjs/models/models_0.js +215 -250
- package/dist-es/models/models_0.js +215 -250
- package/dist-types/models/models_0.d.ts +391 -216
- package/dist-types/ts3.4/models/models_0.d.ts +274 -215
- package/package.json +34 -34
|
@@ -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
|
|
7
|
-
LINKED
|
|
8
|
-
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
|
|
28
|
-
NO
|
|
29
|
-
PLANNED_ACTIVITY
|
|
30
|
-
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
|
|
155
|
-
SERVICE
|
|
156
|
-
}
|
|
165
|
+
export declare const MonitorDimension: {
|
|
166
|
+
readonly SERVICE: "SERVICE";
|
|
167
|
+
};
|
|
157
168
|
/**
|
|
158
169
|
* @public
|
|
159
170
|
*/
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
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
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
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
|
|
304
|
-
CUSTOM
|
|
305
|
-
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
|
|
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
|
|
319
|
-
|
|
320
|
-
|
|
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
|
|
326
|
-
|
|
327
|
-
|
|
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
|
|
420
|
-
LINKED_ACCOUNT_NAME
|
|
421
|
-
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
|
|
451
|
-
INHERITED_VALUE
|
|
452
|
-
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
|
|
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
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
PROPORTIONAL = "PROPORTIONAL"
|
|
467
|
-
}
|
|
513
|
+
export declare const CostCategoryRuleVersion: {
|
|
514
|
+
readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
|
|
515
|
+
};
|
|
468
516
|
/**
|
|
469
517
|
* @public
|
|
470
518
|
*/
|
|
471
|
-
export
|
|
472
|
-
|
|
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
|
|
644
|
-
COST_EXPLORER
|
|
645
|
-
}
|
|
714
|
+
export declare const CostCategoryStatusComponent: {
|
|
715
|
+
readonly COST_EXPLORER: "COST_EXPLORER";
|
|
716
|
+
};
|
|
646
717
|
/**
|
|
647
718
|
* @public
|
|
648
719
|
*/
|
|
649
|
-
export
|
|
650
|
-
|
|
651
|
-
|
|
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
|
|
672
|
-
BETWEEN
|
|
673
|
-
EQUAL
|
|
674
|
-
GREATER_THAN
|
|
675
|
-
GREATER_THAN_OR_EQUAL
|
|
676
|
-
LESS_THAN
|
|
677
|
-
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
|
|
828
|
-
DAILY
|
|
829
|
-
HOURLY
|
|
830
|
-
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
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
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
|
|
1005
|
-
ASCENDING
|
|
1006
|
-
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
|
|
1054
|
-
AMORTIZED_COST
|
|
1055
|
-
BLENDED_COST
|
|
1056
|
-
NET_AMORTIZED_COST
|
|
1057
|
-
NET_UNBLENDED_COST
|
|
1058
|
-
NORMALIZED_USAGE_AMOUNT
|
|
1059
|
-
UNBLENDED_COST
|
|
1060
|
-
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
|
|
1102
|
-
COST_AND_USAGE
|
|
1103
|
-
RESERVATIONS
|
|
1104
|
-
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
|
|
1394
|
-
SEVEN_DAYS
|
|
1395
|
-
SIXTY_DAYS
|
|
1396
|
-
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
|
|
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
|
|
1413
|
-
|
|
1414
|
-
|
|
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
|
|
1443
|
-
ONE_YEAR
|
|
1444
|
-
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
|
|
1987
|
-
CROSS_INSTANCE_FAMILY
|
|
1988
|
-
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
|
|
2260
|
-
CPU_OVER_PROVISIONED
|
|
2261
|
-
CPU_UNDER_PROVISIONED
|
|
2262
|
-
DISK_IOPS_OVER_PROVISIONED
|
|
2263
|
-
DISK_IOPS_UNDER_PROVISIONED
|
|
2264
|
-
DISK_THROUGHPUT_OVER_PROVISIONED
|
|
2265
|
-
DISK_THROUGHPUT_UNDER_PROVISIONED
|
|
2266
|
-
EBS_IOPS_OVER_PROVISIONED
|
|
2267
|
-
EBS_IOPS_UNDER_PROVISIONED
|
|
2268
|
-
EBS_THROUGHPUT_OVER_PROVISIONED
|
|
2269
|
-
EBS_THROUGHPUT_UNDER_PROVISIONED
|
|
2270
|
-
MEMORY_OVER_PROVISIONED
|
|
2271
|
-
MEMORY_UNDER_PROVISIONED
|
|
2272
|
-
NETWORK_BANDWIDTH_OVER_PROVISIONED
|
|
2273
|
-
NETWORK_BANDWIDTH_UNDER_PROVISIONED
|
|
2274
|
-
NETWORK_PPS_OVER_PROVISIONED
|
|
2275
|
-
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
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
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
|
|
2339
|
-
MODIFY
|
|
2340
|
-
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
|
|
2503
|
-
COMPUTE_SP
|
|
2504
|
-
EC2_INSTANCE_SP
|
|
2505
|
-
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
|
|
2879
|
-
AMORTIZED_COMMITMENT
|
|
2880
|
-
ATTRIBUTES
|
|
2881
|
-
SAVINGS
|
|
2882
|
-
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
|
|
2994
|
-
ACTIVE
|
|
2995
|
-
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
|
|
3001
|
-
|
|
3002
|
-
|
|
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
|
|
3152
|
-
FAILED
|
|
3153
|
-
PROCESSING
|
|
3154
|
-
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
|
*/
|