@aws-sdk/client-cost-explorer 3.933.0 → 3.935.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/index.js +245 -241
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +244 -0
- package/dist-es/models/errors.js +215 -0
- package/dist-es/models/models_0.js +1 -456
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/CreateAnomalyMonitorCommand.d.ts +1 -1
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/errors.d.ts +208 -0
- package/dist-types/models/models_0.d.ts +51 -887
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +311 -0
- package/dist-types/ts3.4/models/errors.d.ts +127 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -435
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { CostExplorerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { CostExplorerServiceException } from "./models/CostExplorerServiceException";
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
export declare const AccountScope: {
|
|
2
|
+
readonly LINKED: "LINKED";
|
|
3
|
+
readonly PAYER: "PAYER";
|
|
4
|
+
};
|
|
5
|
+
export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
|
|
6
|
+
export declare const AnalysisStatus: {
|
|
7
|
+
readonly FAILED: "FAILED";
|
|
8
|
+
readonly PROCESSING: "PROCESSING";
|
|
9
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
10
|
+
};
|
|
11
|
+
export type AnalysisStatus =
|
|
12
|
+
(typeof AnalysisStatus)[keyof typeof AnalysisStatus];
|
|
13
|
+
export declare const AnalysisType: {
|
|
14
|
+
readonly CUSTOM_COMMITMENT: "CUSTOM_COMMITMENT";
|
|
15
|
+
readonly MAX_SAVINGS: "MAX_SAVINGS";
|
|
16
|
+
};
|
|
17
|
+
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
18
|
+
export declare const PaymentOption: {
|
|
19
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
20
|
+
readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
|
|
21
|
+
readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
|
|
22
|
+
readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
|
|
23
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
24
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
25
|
+
};
|
|
26
|
+
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
27
|
+
export declare const SupportedSavingsPlansType: {
|
|
28
|
+
readonly COMPUTE_SP: "COMPUTE_SP";
|
|
29
|
+
readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
|
|
30
|
+
readonly SAGEMAKER_SP: "SAGEMAKER_SP";
|
|
31
|
+
};
|
|
32
|
+
export type SupportedSavingsPlansType =
|
|
33
|
+
(typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
|
|
34
|
+
export declare const TermInYears: {
|
|
35
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
36
|
+
readonly THREE_YEARS: "THREE_YEARS";
|
|
37
|
+
};
|
|
38
|
+
export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
|
|
39
|
+
export declare const ErrorCode: {
|
|
40
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
41
|
+
readonly INVALID_ACCOUNT_ID: "INVALID_ACCOUNT_ID";
|
|
42
|
+
readonly INVALID_SAVINGS_PLANS_TO_ADD: "INVALID_SAVINGS_PLANS_TO_ADD";
|
|
43
|
+
readonly INVALID_SAVINGS_PLANS_TO_EXCLUDE: "INVALID_SAVINGS_PLANS_TO_EXCLUDE";
|
|
44
|
+
readonly NO_USAGE_FOUND: "NO_USAGE_FOUND";
|
|
45
|
+
};
|
|
46
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
47
|
+
export declare const AnomalyFeedbackType: {
|
|
48
|
+
readonly NO: "NO";
|
|
49
|
+
readonly PLANNED_ACTIVITY: "PLANNED_ACTIVITY";
|
|
50
|
+
readonly YES: "YES";
|
|
51
|
+
};
|
|
52
|
+
export type AnomalyFeedbackType =
|
|
53
|
+
(typeof AnomalyFeedbackType)[keyof typeof AnomalyFeedbackType];
|
|
54
|
+
export declare const MonitorDimension: {
|
|
55
|
+
readonly COST_CATEGORY: "COST_CATEGORY";
|
|
56
|
+
readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
|
|
57
|
+
readonly SERVICE: "SERVICE";
|
|
58
|
+
readonly TAG: "TAG";
|
|
59
|
+
};
|
|
60
|
+
export type MonitorDimension =
|
|
61
|
+
(typeof MonitorDimension)[keyof typeof MonitorDimension];
|
|
62
|
+
export declare const MatchOption: {
|
|
63
|
+
readonly ABSENT: "ABSENT";
|
|
64
|
+
readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
|
|
65
|
+
readonly CASE_SENSITIVE: "CASE_SENSITIVE";
|
|
66
|
+
readonly CONTAINS: "CONTAINS";
|
|
67
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
68
|
+
readonly EQUALS: "EQUALS";
|
|
69
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
70
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
71
|
+
};
|
|
72
|
+
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
73
|
+
export declare const Dimension: {
|
|
74
|
+
readonly AGREEMENT_END_DATE_TIME_AFTER: "AGREEMENT_END_DATE_TIME_AFTER";
|
|
75
|
+
readonly AGREEMENT_END_DATE_TIME_BEFORE: "AGREEMENT_END_DATE_TIME_BEFORE";
|
|
76
|
+
readonly ANOMALY_TOTAL_IMPACT_ABSOLUTE: "ANOMALY_TOTAL_IMPACT_ABSOLUTE";
|
|
77
|
+
readonly ANOMALY_TOTAL_IMPACT_PERCENTAGE: "ANOMALY_TOTAL_IMPACT_PERCENTAGE";
|
|
78
|
+
readonly AZ: "AZ";
|
|
79
|
+
readonly BILLING_ENTITY: "BILLING_ENTITY";
|
|
80
|
+
readonly CACHE_ENGINE: "CACHE_ENGINE";
|
|
81
|
+
readonly DATABASE_ENGINE: "DATABASE_ENGINE";
|
|
82
|
+
readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
|
|
83
|
+
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
84
|
+
readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
|
|
85
|
+
readonly INVOICING_ENTITY: "INVOICING_ENTITY";
|
|
86
|
+
readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
|
|
87
|
+
readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
|
|
88
|
+
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
89
|
+
readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
|
|
90
|
+
readonly OPERATION: "OPERATION";
|
|
91
|
+
readonly PAYER_ACCOUNT: "PAYER_ACCOUNT";
|
|
92
|
+
readonly PAYMENT_OPTION: "PAYMENT_OPTION";
|
|
93
|
+
readonly PLATFORM: "PLATFORM";
|
|
94
|
+
readonly PURCHASE_TYPE: "PURCHASE_TYPE";
|
|
95
|
+
readonly RECORD_TYPE: "RECORD_TYPE";
|
|
96
|
+
readonly REGION: "REGION";
|
|
97
|
+
readonly RESERVATION_ID: "RESERVATION_ID";
|
|
98
|
+
readonly RESOURCE_ID: "RESOURCE_ID";
|
|
99
|
+
readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
|
|
100
|
+
readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
|
|
101
|
+
readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
|
|
102
|
+
readonly SCOPE: "SCOPE";
|
|
103
|
+
readonly SERVICE: "SERVICE";
|
|
104
|
+
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
105
|
+
readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
|
|
106
|
+
readonly TENANCY: "TENANCY";
|
|
107
|
+
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
108
|
+
readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
|
|
109
|
+
};
|
|
110
|
+
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
111
|
+
export declare const MonitorType: {
|
|
112
|
+
readonly CUSTOM: "CUSTOM";
|
|
113
|
+
readonly DIMENSIONAL: "DIMENSIONAL";
|
|
114
|
+
};
|
|
115
|
+
export type MonitorType = (typeof MonitorType)[keyof typeof MonitorType];
|
|
116
|
+
export declare const AnomalySubscriptionFrequency: {
|
|
117
|
+
readonly DAILY: "DAILY";
|
|
118
|
+
readonly IMMEDIATE: "IMMEDIATE";
|
|
119
|
+
readonly WEEKLY: "WEEKLY";
|
|
120
|
+
};
|
|
121
|
+
export type AnomalySubscriptionFrequency =
|
|
122
|
+
(typeof AnomalySubscriptionFrequency)[keyof typeof AnomalySubscriptionFrequency];
|
|
123
|
+
export declare const SubscriberStatus: {
|
|
124
|
+
readonly CONFIRMED: "CONFIRMED";
|
|
125
|
+
readonly DECLINED: "DECLINED";
|
|
126
|
+
};
|
|
127
|
+
export type SubscriberStatus =
|
|
128
|
+
(typeof SubscriberStatus)[keyof typeof SubscriberStatus];
|
|
129
|
+
export declare const SubscriberType: {
|
|
130
|
+
readonly EMAIL: "EMAIL";
|
|
131
|
+
readonly SNS: "SNS";
|
|
132
|
+
};
|
|
133
|
+
export type SubscriberType =
|
|
134
|
+
(typeof SubscriberType)[keyof typeof SubscriberType];
|
|
135
|
+
export declare const ApproximationDimension: {
|
|
136
|
+
readonly RESOURCE: "RESOURCE";
|
|
137
|
+
readonly SERVICE: "SERVICE";
|
|
138
|
+
};
|
|
139
|
+
export type ApproximationDimension =
|
|
140
|
+
(typeof ApproximationDimension)[keyof typeof ApproximationDimension];
|
|
141
|
+
export declare const CostCategoryInheritedValueDimensionName: {
|
|
142
|
+
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
143
|
+
readonly TAG: "TAG";
|
|
144
|
+
};
|
|
145
|
+
export type CostCategoryInheritedValueDimensionName =
|
|
146
|
+
(typeof CostCategoryInheritedValueDimensionName)[keyof typeof CostCategoryInheritedValueDimensionName];
|
|
147
|
+
export declare const CostCategoryRuleType: {
|
|
148
|
+
readonly INHERITED_VALUE: "INHERITED_VALUE";
|
|
149
|
+
readonly REGULAR: "REGULAR";
|
|
150
|
+
};
|
|
151
|
+
export type CostCategoryRuleType =
|
|
152
|
+
(typeof CostCategoryRuleType)[keyof typeof CostCategoryRuleType];
|
|
153
|
+
export declare const CostCategoryRuleVersion: {
|
|
154
|
+
readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
|
|
155
|
+
};
|
|
156
|
+
export type CostCategoryRuleVersion =
|
|
157
|
+
(typeof CostCategoryRuleVersion)[keyof typeof CostCategoryRuleVersion];
|
|
158
|
+
export declare const CostCategorySplitChargeMethod: {
|
|
159
|
+
readonly EVEN: "EVEN";
|
|
160
|
+
readonly FIXED: "FIXED";
|
|
161
|
+
readonly PROPORTIONAL: "PROPORTIONAL";
|
|
162
|
+
};
|
|
163
|
+
export type CostCategorySplitChargeMethod =
|
|
164
|
+
(typeof CostCategorySplitChargeMethod)[keyof typeof CostCategorySplitChargeMethod];
|
|
165
|
+
export declare const CostCategorySplitChargeRuleParameterType: {
|
|
166
|
+
readonly ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES";
|
|
167
|
+
};
|
|
168
|
+
export type CostCategorySplitChargeRuleParameterType =
|
|
169
|
+
(typeof CostCategorySplitChargeRuleParameterType)[keyof typeof CostCategorySplitChargeRuleParameterType];
|
|
170
|
+
export declare const CostCategoryStatusComponent: {
|
|
171
|
+
readonly COST_EXPLORER: "COST_EXPLORER";
|
|
172
|
+
};
|
|
173
|
+
export type CostCategoryStatusComponent =
|
|
174
|
+
(typeof CostCategoryStatusComponent)[keyof typeof CostCategoryStatusComponent];
|
|
175
|
+
export declare const CostCategoryStatus: {
|
|
176
|
+
readonly APPLIED: "APPLIED";
|
|
177
|
+
readonly PROCESSING: "PROCESSING";
|
|
178
|
+
};
|
|
179
|
+
export type CostCategoryStatus =
|
|
180
|
+
(typeof CostCategoryStatus)[keyof typeof CostCategoryStatus];
|
|
181
|
+
export declare const NumericOperator: {
|
|
182
|
+
readonly BETWEEN: "BETWEEN";
|
|
183
|
+
readonly EQUAL: "EQUAL";
|
|
184
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
185
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
186
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
187
|
+
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
188
|
+
};
|
|
189
|
+
export type NumericOperator =
|
|
190
|
+
(typeof NumericOperator)[keyof typeof NumericOperator];
|
|
191
|
+
export declare const Granularity: {
|
|
192
|
+
readonly DAILY: "DAILY";
|
|
193
|
+
readonly HOURLY: "HOURLY";
|
|
194
|
+
readonly MONTHLY: "MONTHLY";
|
|
195
|
+
};
|
|
196
|
+
export type Granularity = (typeof Granularity)[keyof typeof Granularity];
|
|
197
|
+
export declare const GroupDefinitionType: {
|
|
198
|
+
readonly COST_CATEGORY: "COST_CATEGORY";
|
|
199
|
+
readonly DIMENSION: "DIMENSION";
|
|
200
|
+
readonly TAG: "TAG";
|
|
201
|
+
};
|
|
202
|
+
export type GroupDefinitionType =
|
|
203
|
+
(typeof GroupDefinitionType)[keyof typeof GroupDefinitionType];
|
|
204
|
+
export declare const SortOrder: {
|
|
205
|
+
readonly ASCENDING: "ASCENDING";
|
|
206
|
+
readonly DESCENDING: "DESCENDING";
|
|
207
|
+
};
|
|
208
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
209
|
+
export declare const Metric: {
|
|
210
|
+
readonly AMORTIZED_COST: "AMORTIZED_COST";
|
|
211
|
+
readonly BLENDED_COST: "BLENDED_COST";
|
|
212
|
+
readonly NET_AMORTIZED_COST: "NET_AMORTIZED_COST";
|
|
213
|
+
readonly NET_UNBLENDED_COST: "NET_UNBLENDED_COST";
|
|
214
|
+
readonly NORMALIZED_USAGE_AMOUNT: "NORMALIZED_USAGE_AMOUNT";
|
|
215
|
+
readonly UNBLENDED_COST: "UNBLENDED_COST";
|
|
216
|
+
readonly USAGE_QUANTITY: "USAGE_QUANTITY";
|
|
217
|
+
};
|
|
218
|
+
export type Metric = (typeof Metric)[keyof typeof Metric];
|
|
219
|
+
export declare const Context: {
|
|
220
|
+
readonly COST_AND_USAGE: "COST_AND_USAGE";
|
|
221
|
+
readonly RESERVATIONS: "RESERVATIONS";
|
|
222
|
+
readonly SAVINGS_PLANS: "SAVINGS_PLANS";
|
|
223
|
+
};
|
|
224
|
+
export type Context = (typeof Context)[keyof typeof Context];
|
|
225
|
+
export declare const LookbackPeriodInDays: {
|
|
226
|
+
readonly SEVEN_DAYS: "SEVEN_DAYS";
|
|
227
|
+
readonly SIXTY_DAYS: "SIXTY_DAYS";
|
|
228
|
+
readonly THIRTY_DAYS: "THIRTY_DAYS";
|
|
229
|
+
};
|
|
230
|
+
export type LookbackPeriodInDays =
|
|
231
|
+
(typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
|
|
232
|
+
export declare const OfferingClass: {
|
|
233
|
+
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
234
|
+
readonly STANDARD: "STANDARD";
|
|
235
|
+
};
|
|
236
|
+
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
237
|
+
export declare const RecommendationTarget: {
|
|
238
|
+
readonly CROSS_INSTANCE_FAMILY: "CROSS_INSTANCE_FAMILY";
|
|
239
|
+
readonly SAME_INSTANCE_FAMILY: "SAME_INSTANCE_FAMILY";
|
|
240
|
+
};
|
|
241
|
+
export type RecommendationTarget =
|
|
242
|
+
(typeof RecommendationTarget)[keyof typeof RecommendationTarget];
|
|
243
|
+
export declare const FindingReasonCode: {
|
|
244
|
+
readonly CPU_OVER_PROVISIONED: "CPU_OVER_PROVISIONED";
|
|
245
|
+
readonly CPU_UNDER_PROVISIONED: "CPU_UNDER_PROVISIONED";
|
|
246
|
+
readonly DISK_IOPS_OVER_PROVISIONED: "DISK_IOPS_OVER_PROVISIONED";
|
|
247
|
+
readonly DISK_IOPS_UNDER_PROVISIONED: "DISK_IOPS_UNDER_PROVISIONED";
|
|
248
|
+
readonly DISK_THROUGHPUT_OVER_PROVISIONED: "DISK_THROUGHPUT_OVER_PROVISIONED";
|
|
249
|
+
readonly DISK_THROUGHPUT_UNDER_PROVISIONED: "DISK_THROUGHPUT_UNDER_PROVISIONED";
|
|
250
|
+
readonly EBS_IOPS_OVER_PROVISIONED: "EBS_IOPS_OVER_PROVISIONED";
|
|
251
|
+
readonly EBS_IOPS_UNDER_PROVISIONED: "EBS_IOPS_UNDER_PROVISIONED";
|
|
252
|
+
readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBS_THROUGHPUT_OVER_PROVISIONED";
|
|
253
|
+
readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBS_THROUGHPUT_UNDER_PROVISIONED";
|
|
254
|
+
readonly MEMORY_OVER_PROVISIONED: "MEMORY_OVER_PROVISIONED";
|
|
255
|
+
readonly MEMORY_UNDER_PROVISIONED: "MEMORY_UNDER_PROVISIONED";
|
|
256
|
+
readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NETWORK_BANDWIDTH_OVER_PROVISIONED";
|
|
257
|
+
readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NETWORK_BANDWIDTH_UNDER_PROVISIONED";
|
|
258
|
+
readonly NETWORK_PPS_OVER_PROVISIONED: "NETWORK_PPS_OVER_PROVISIONED";
|
|
259
|
+
readonly NETWORK_PPS_UNDER_PROVISIONED: "NETWORK_PPS_UNDER_PROVISIONED";
|
|
260
|
+
};
|
|
261
|
+
export type FindingReasonCode =
|
|
262
|
+
(typeof FindingReasonCode)[keyof typeof FindingReasonCode];
|
|
263
|
+
export declare const PlatformDifference: {
|
|
264
|
+
readonly HYPERVISOR: "HYPERVISOR";
|
|
265
|
+
readonly INSTANCE_STORE_AVAILABILITY: "INSTANCE_STORE_AVAILABILITY";
|
|
266
|
+
readonly NETWORK_INTERFACE: "NETWORK_INTERFACE";
|
|
267
|
+
readonly STORAGE_INTERFACE: "STORAGE_INTERFACE";
|
|
268
|
+
readonly VIRTUALIZATION_TYPE: "VIRTUALIZATION_TYPE";
|
|
269
|
+
};
|
|
270
|
+
export type PlatformDifference =
|
|
271
|
+
(typeof PlatformDifference)[keyof typeof PlatformDifference];
|
|
272
|
+
export declare const RightsizingType: {
|
|
273
|
+
readonly MODIFY: "MODIFY";
|
|
274
|
+
readonly TERMINATE: "TERMINATE";
|
|
275
|
+
};
|
|
276
|
+
export type RightsizingType =
|
|
277
|
+
(typeof RightsizingType)[keyof typeof RightsizingType];
|
|
278
|
+
export declare const SavingsPlansDataType: {
|
|
279
|
+
readonly AMORTIZED_COMMITMENT: "AMORTIZED_COMMITMENT";
|
|
280
|
+
readonly ATTRIBUTES: "ATTRIBUTES";
|
|
281
|
+
readonly SAVINGS: "SAVINGS";
|
|
282
|
+
readonly UTILIZATION: "UTILIZATION";
|
|
283
|
+
};
|
|
284
|
+
export type SavingsPlansDataType =
|
|
285
|
+
(typeof SavingsPlansDataType)[keyof typeof SavingsPlansDataType];
|
|
286
|
+
export declare const CostAllocationTagBackfillStatus: {
|
|
287
|
+
readonly FAILED: "FAILED";
|
|
288
|
+
readonly PROCESSING: "PROCESSING";
|
|
289
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
290
|
+
};
|
|
291
|
+
export type CostAllocationTagBackfillStatus =
|
|
292
|
+
(typeof CostAllocationTagBackfillStatus)[keyof typeof CostAllocationTagBackfillStatus];
|
|
293
|
+
export declare const CostAllocationTagStatus: {
|
|
294
|
+
readonly ACTIVE: "Active";
|
|
295
|
+
readonly INACTIVE: "Inactive";
|
|
296
|
+
};
|
|
297
|
+
export type CostAllocationTagStatus =
|
|
298
|
+
(typeof CostAllocationTagStatus)[keyof typeof CostAllocationTagStatus];
|
|
299
|
+
export declare const CostAllocationTagType: {
|
|
300
|
+
readonly AWS_GENERATED: "AWSGenerated";
|
|
301
|
+
readonly USER_DEFINED: "UserDefined";
|
|
302
|
+
};
|
|
303
|
+
export type CostAllocationTagType =
|
|
304
|
+
(typeof CostAllocationTagType)[keyof typeof CostAllocationTagType];
|
|
305
|
+
export declare const GenerationStatus: {
|
|
306
|
+
readonly FAILED: "FAILED";
|
|
307
|
+
readonly PROCESSING: "PROCESSING";
|
|
308
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
309
|
+
};
|
|
310
|
+
export type GenerationStatus =
|
|
311
|
+
(typeof GenerationStatus)[keyof typeof GenerationStatus];
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
|
|
3
|
+
export declare class AnalysisNotFoundException extends __BaseException {
|
|
4
|
+
readonly name: "AnalysisNotFoundException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class LimitExceededException extends __BaseException {
|
|
12
|
+
readonly name: "LimitExceededException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class UnknownMonitorException extends __BaseException {
|
|
20
|
+
readonly name: "UnknownMonitorException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<UnknownMonitorException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
28
|
+
readonly name: "ServiceQuotaExceededException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Message?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class UnknownSubscriptionException extends __BaseException {
|
|
36
|
+
readonly name: "UnknownSubscriptionException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<UnknownSubscriptionException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceNotFoundException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
ResourceName?: string | undefined;
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
53
|
+
readonly name: "InvalidNextTokenException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
Message?: string | undefined;
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class DataUnavailableException extends __BaseException {
|
|
61
|
+
readonly name: "DataUnavailableException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Message?: string | undefined;
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<DataUnavailableException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class BillExpirationException extends __BaseException {
|
|
69
|
+
readonly name: "BillExpirationException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<BillExpirationException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
export declare class BillingViewHealthStatusException extends __BaseException {
|
|
77
|
+
readonly name: "BillingViewHealthStatusException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message?: string | undefined;
|
|
80
|
+
constructor(
|
|
81
|
+
opts: __ExceptionOptionType<
|
|
82
|
+
BillingViewHealthStatusException,
|
|
83
|
+
__BaseException
|
|
84
|
+
>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
export declare class RequestChangedException extends __BaseException {
|
|
88
|
+
readonly name: "RequestChangedException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string | undefined;
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<RequestChangedException, __BaseException>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
96
|
+
readonly name: "UnresolvableUsageUnitException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
Message?: string | undefined;
|
|
99
|
+
constructor(
|
|
100
|
+
opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>
|
|
101
|
+
);
|
|
102
|
+
}
|
|
103
|
+
export declare class GenerationExistsException extends __BaseException {
|
|
104
|
+
readonly name: "GenerationExistsException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
Message?: string | undefined;
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare class BackfillLimitExceededException extends __BaseException {
|
|
112
|
+
readonly name: "BackfillLimitExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
constructor(
|
|
116
|
+
opts: __ExceptionOptionType<BackfillLimitExceededException, __BaseException>
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
120
|
+
readonly name: "TooManyTagsException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
Message?: string | undefined;
|
|
123
|
+
ResourceName?: string | undefined;
|
|
124
|
+
constructor(
|
|
125
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
126
|
+
);
|
|
127
|
+
}
|