@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
|
@@ -1,10 +1,45 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccountScope,
|
|
3
|
+
AnalysisStatus,
|
|
4
|
+
AnalysisType,
|
|
5
|
+
AnomalyFeedbackType,
|
|
6
|
+
AnomalySubscriptionFrequency,
|
|
7
|
+
ApproximationDimension,
|
|
8
|
+
Context,
|
|
9
|
+
CostAllocationTagBackfillStatus,
|
|
10
|
+
CostAllocationTagStatus,
|
|
11
|
+
CostAllocationTagType,
|
|
12
|
+
CostCategoryInheritedValueDimensionName,
|
|
13
|
+
CostCategoryRuleType,
|
|
14
|
+
CostCategoryRuleVersion,
|
|
15
|
+
CostCategorySplitChargeMethod,
|
|
16
|
+
CostCategorySplitChargeRuleParameterType,
|
|
17
|
+
CostCategoryStatus,
|
|
18
|
+
CostCategoryStatusComponent,
|
|
19
|
+
Dimension,
|
|
20
|
+
ErrorCode,
|
|
21
|
+
FindingReasonCode,
|
|
22
|
+
GenerationStatus,
|
|
23
|
+
Granularity,
|
|
24
|
+
GroupDefinitionType,
|
|
25
|
+
LookbackPeriodInDays,
|
|
26
|
+
MatchOption,
|
|
27
|
+
Metric,
|
|
28
|
+
MonitorDimension,
|
|
29
|
+
MonitorType,
|
|
30
|
+
NumericOperator,
|
|
31
|
+
OfferingClass,
|
|
32
|
+
PaymentOption,
|
|
33
|
+
PlatformDifference,
|
|
34
|
+
RecommendationTarget,
|
|
35
|
+
RightsizingType,
|
|
36
|
+
SavingsPlansDataType,
|
|
37
|
+
SortOrder,
|
|
38
|
+
SubscriberStatus,
|
|
39
|
+
SubscriberType,
|
|
40
|
+
SupportedSavingsPlansType,
|
|
41
|
+
TermInYears,
|
|
42
|
+
} from "./enums";
|
|
8
43
|
export interface RecommendationDetailHourlyMetrics {
|
|
9
44
|
StartTime?: string | undefined;
|
|
10
45
|
EstimatedOnDemandCost?: string | undefined;
|
|
@@ -41,51 +76,10 @@ export interface AnalysisDetails {
|
|
|
41
76
|
| SavingsPlansPurchaseAnalysisDetails
|
|
42
77
|
| undefined;
|
|
43
78
|
}
|
|
44
|
-
export declare class AnalysisNotFoundException extends __BaseException {
|
|
45
|
-
readonly name: "AnalysisNotFoundException";
|
|
46
|
-
readonly $fault: "client";
|
|
47
|
-
Message?: string | undefined;
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>
|
|
50
|
-
);
|
|
51
|
-
}
|
|
52
|
-
export declare const AnalysisStatus: {
|
|
53
|
-
readonly FAILED: "FAILED";
|
|
54
|
-
readonly PROCESSING: "PROCESSING";
|
|
55
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
56
|
-
};
|
|
57
|
-
export type AnalysisStatus =
|
|
58
|
-
(typeof AnalysisStatus)[keyof typeof AnalysisStatus];
|
|
59
|
-
export declare const AnalysisType: {
|
|
60
|
-
readonly CUSTOM_COMMITMENT: "CUSTOM_COMMITMENT";
|
|
61
|
-
readonly MAX_SAVINGS: "MAX_SAVINGS";
|
|
62
|
-
};
|
|
63
|
-
export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
|
|
64
79
|
export interface DateInterval {
|
|
65
80
|
Start: string | undefined;
|
|
66
81
|
End: string | undefined;
|
|
67
82
|
}
|
|
68
|
-
export declare const PaymentOption: {
|
|
69
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
70
|
-
readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
|
|
71
|
-
readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
|
|
72
|
-
readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
|
|
73
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
74
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
75
|
-
};
|
|
76
|
-
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
77
|
-
export declare const SupportedSavingsPlansType: {
|
|
78
|
-
readonly COMPUTE_SP: "COMPUTE_SP";
|
|
79
|
-
readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
|
|
80
|
-
readonly SAGEMAKER_SP: "SAGEMAKER_SP";
|
|
81
|
-
};
|
|
82
|
-
export type SupportedSavingsPlansType =
|
|
83
|
-
(typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
|
|
84
|
-
export declare const TermInYears: {
|
|
85
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
86
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
87
|
-
};
|
|
88
|
-
export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
|
|
89
83
|
export interface SavingsPlans {
|
|
90
84
|
PaymentOption?: PaymentOption | undefined;
|
|
91
85
|
SavingsPlansType?: SupportedSavingsPlansType | undefined;
|
|
@@ -108,14 +102,6 @@ export interface CommitmentPurchaseAnalysisConfiguration {
|
|
|
108
102
|
| SavingsPlansPurchaseAnalysisConfiguration
|
|
109
103
|
| undefined;
|
|
110
104
|
}
|
|
111
|
-
export declare const ErrorCode: {
|
|
112
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
113
|
-
readonly INVALID_ACCOUNT_ID: "INVALID_ACCOUNT_ID";
|
|
114
|
-
readonly INVALID_SAVINGS_PLANS_TO_ADD: "INVALID_SAVINGS_PLANS_TO_ADD";
|
|
115
|
-
readonly INVALID_SAVINGS_PLANS_TO_EXCLUDE: "INVALID_SAVINGS_PLANS_TO_EXCLUDE";
|
|
116
|
-
readonly NO_USAGE_FOUND: "NO_USAGE_FOUND";
|
|
117
|
-
};
|
|
118
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
119
105
|
export interface AnalysisSummary {
|
|
120
106
|
EstimatedCompletionTime?: string | undefined;
|
|
121
107
|
AnalysisCompletionTime?: string | undefined;
|
|
@@ -131,13 +117,6 @@ export interface AnomalyScore {
|
|
|
131
117
|
MaxScore: number | undefined;
|
|
132
118
|
CurrentScore: number | undefined;
|
|
133
119
|
}
|
|
134
|
-
export declare const AnomalyFeedbackType: {
|
|
135
|
-
readonly NO: "NO";
|
|
136
|
-
readonly PLANNED_ACTIVITY: "PLANNED_ACTIVITY";
|
|
137
|
-
readonly YES: "YES";
|
|
138
|
-
};
|
|
139
|
-
export type AnomalyFeedbackType =
|
|
140
|
-
(typeof AnomalyFeedbackType)[keyof typeof AnomalyFeedbackType];
|
|
141
120
|
export interface Impact {
|
|
142
121
|
MaxImpact: number | undefined;
|
|
143
122
|
TotalImpact?: number | undefined;
|
|
@@ -171,65 +150,11 @@ export interface AnomalyDateInterval {
|
|
|
171
150
|
StartDate: string | undefined;
|
|
172
151
|
EndDate?: string | undefined;
|
|
173
152
|
}
|
|
174
|
-
export declare const MonitorDimension: {
|
|
175
|
-
readonly SERVICE: "SERVICE";
|
|
176
|
-
};
|
|
177
|
-
export type MonitorDimension =
|
|
178
|
-
(typeof MonitorDimension)[keyof typeof MonitorDimension];
|
|
179
|
-
export declare const MatchOption: {
|
|
180
|
-
readonly ABSENT: "ABSENT";
|
|
181
|
-
readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
|
|
182
|
-
readonly CASE_SENSITIVE: "CASE_SENSITIVE";
|
|
183
|
-
readonly CONTAINS: "CONTAINS";
|
|
184
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
185
|
-
readonly EQUALS: "EQUALS";
|
|
186
|
-
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
187
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
188
|
-
};
|
|
189
|
-
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
190
153
|
export interface CostCategoryValues {
|
|
191
154
|
Key?: string | undefined;
|
|
192
155
|
Values?: string[] | undefined;
|
|
193
156
|
MatchOptions?: MatchOption[] | undefined;
|
|
194
157
|
}
|
|
195
|
-
export declare const Dimension: {
|
|
196
|
-
readonly AGREEMENT_END_DATE_TIME_AFTER: "AGREEMENT_END_DATE_TIME_AFTER";
|
|
197
|
-
readonly AGREEMENT_END_DATE_TIME_BEFORE: "AGREEMENT_END_DATE_TIME_BEFORE";
|
|
198
|
-
readonly ANOMALY_TOTAL_IMPACT_ABSOLUTE: "ANOMALY_TOTAL_IMPACT_ABSOLUTE";
|
|
199
|
-
readonly ANOMALY_TOTAL_IMPACT_PERCENTAGE: "ANOMALY_TOTAL_IMPACT_PERCENTAGE";
|
|
200
|
-
readonly AZ: "AZ";
|
|
201
|
-
readonly BILLING_ENTITY: "BILLING_ENTITY";
|
|
202
|
-
readonly CACHE_ENGINE: "CACHE_ENGINE";
|
|
203
|
-
readonly DATABASE_ENGINE: "DATABASE_ENGINE";
|
|
204
|
-
readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
|
|
205
|
-
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
206
|
-
readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
|
|
207
|
-
readonly INVOICING_ENTITY: "INVOICING_ENTITY";
|
|
208
|
-
readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
|
|
209
|
-
readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
|
|
210
|
-
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
211
|
-
readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
|
|
212
|
-
readonly OPERATION: "OPERATION";
|
|
213
|
-
readonly PAYER_ACCOUNT: "PAYER_ACCOUNT";
|
|
214
|
-
readonly PAYMENT_OPTION: "PAYMENT_OPTION";
|
|
215
|
-
readonly PLATFORM: "PLATFORM";
|
|
216
|
-
readonly PURCHASE_TYPE: "PURCHASE_TYPE";
|
|
217
|
-
readonly RECORD_TYPE: "RECORD_TYPE";
|
|
218
|
-
readonly REGION: "REGION";
|
|
219
|
-
readonly RESERVATION_ID: "RESERVATION_ID";
|
|
220
|
-
readonly RESOURCE_ID: "RESOURCE_ID";
|
|
221
|
-
readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
|
|
222
|
-
readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
|
|
223
|
-
readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
|
|
224
|
-
readonly SCOPE: "SCOPE";
|
|
225
|
-
readonly SERVICE: "SERVICE";
|
|
226
|
-
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
227
|
-
readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
|
|
228
|
-
readonly TENANCY: "TENANCY";
|
|
229
|
-
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
230
|
-
readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
|
|
231
|
-
};
|
|
232
|
-
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
233
158
|
export interface DimensionValues {
|
|
234
159
|
Key?: Dimension | undefined;
|
|
235
160
|
Values?: string[] | undefined;
|
|
@@ -240,41 +165,11 @@ export interface TagValues {
|
|
|
240
165
|
Values?: string[] | undefined;
|
|
241
166
|
MatchOptions?: MatchOption[] | undefined;
|
|
242
167
|
}
|
|
243
|
-
export declare const MonitorType: {
|
|
244
|
-
readonly CUSTOM: "CUSTOM";
|
|
245
|
-
readonly DIMENSIONAL: "DIMENSIONAL";
|
|
246
|
-
};
|
|
247
|
-
export type MonitorType = (typeof MonitorType)[keyof typeof MonitorType];
|
|
248
|
-
export declare const AnomalySubscriptionFrequency: {
|
|
249
|
-
readonly DAILY: "DAILY";
|
|
250
|
-
readonly IMMEDIATE: "IMMEDIATE";
|
|
251
|
-
readonly WEEKLY: "WEEKLY";
|
|
252
|
-
};
|
|
253
|
-
export type AnomalySubscriptionFrequency =
|
|
254
|
-
(typeof AnomalySubscriptionFrequency)[keyof typeof AnomalySubscriptionFrequency];
|
|
255
|
-
export declare const SubscriberStatus: {
|
|
256
|
-
readonly CONFIRMED: "CONFIRMED";
|
|
257
|
-
readonly DECLINED: "DECLINED";
|
|
258
|
-
};
|
|
259
|
-
export type SubscriberStatus =
|
|
260
|
-
(typeof SubscriberStatus)[keyof typeof SubscriberStatus];
|
|
261
|
-
export declare const SubscriberType: {
|
|
262
|
-
readonly EMAIL: "EMAIL";
|
|
263
|
-
readonly SNS: "SNS";
|
|
264
|
-
};
|
|
265
|
-
export type SubscriberType =
|
|
266
|
-
(typeof SubscriberType)[keyof typeof SubscriberType];
|
|
267
168
|
export interface Subscriber {
|
|
268
169
|
Address?: string | undefined;
|
|
269
170
|
Type?: SubscriberType | undefined;
|
|
270
171
|
Status?: SubscriberStatus | undefined;
|
|
271
172
|
}
|
|
272
|
-
export declare const ApproximationDimension: {
|
|
273
|
-
readonly RESOURCE: "RESOURCE";
|
|
274
|
-
readonly SERVICE: "SERVICE";
|
|
275
|
-
};
|
|
276
|
-
export type ApproximationDimension =
|
|
277
|
-
(typeof ApproximationDimension)[keyof typeof ApproximationDimension];
|
|
278
173
|
export interface ResourceTag {
|
|
279
174
|
Key: string | undefined;
|
|
280
175
|
Value: string | undefined;
|
|
@@ -282,58 +177,13 @@ export interface ResourceTag {
|
|
|
282
177
|
export interface CreateAnomalyMonitorResponse {
|
|
283
178
|
MonitorArn: string | undefined;
|
|
284
179
|
}
|
|
285
|
-
export declare class LimitExceededException extends __BaseException {
|
|
286
|
-
readonly name: "LimitExceededException";
|
|
287
|
-
readonly $fault: "client";
|
|
288
|
-
Message?: string | undefined;
|
|
289
|
-
constructor(
|
|
290
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
291
|
-
);
|
|
292
|
-
}
|
|
293
180
|
export interface CreateAnomalySubscriptionResponse {
|
|
294
181
|
SubscriptionArn: string | undefined;
|
|
295
182
|
}
|
|
296
|
-
export declare class UnknownMonitorException extends __BaseException {
|
|
297
|
-
readonly name: "UnknownMonitorException";
|
|
298
|
-
readonly $fault: "client";
|
|
299
|
-
Message?: string | undefined;
|
|
300
|
-
constructor(
|
|
301
|
-
opts: __ExceptionOptionType<UnknownMonitorException, __BaseException>
|
|
302
|
-
);
|
|
303
|
-
}
|
|
304
|
-
export declare const CostCategoryInheritedValueDimensionName: {
|
|
305
|
-
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
306
|
-
readonly TAG: "TAG";
|
|
307
|
-
};
|
|
308
|
-
export type CostCategoryInheritedValueDimensionName =
|
|
309
|
-
(typeof CostCategoryInheritedValueDimensionName)[keyof typeof CostCategoryInheritedValueDimensionName];
|
|
310
183
|
export interface CostCategoryInheritedValueDimension {
|
|
311
184
|
DimensionName?: CostCategoryInheritedValueDimensionName | undefined;
|
|
312
185
|
DimensionKey?: string | undefined;
|
|
313
186
|
}
|
|
314
|
-
export declare const CostCategoryRuleType: {
|
|
315
|
-
readonly INHERITED_VALUE: "INHERITED_VALUE";
|
|
316
|
-
readonly REGULAR: "REGULAR";
|
|
317
|
-
};
|
|
318
|
-
export type CostCategoryRuleType =
|
|
319
|
-
(typeof CostCategoryRuleType)[keyof typeof CostCategoryRuleType];
|
|
320
|
-
export declare const CostCategoryRuleVersion: {
|
|
321
|
-
readonly CostCategoryExpressionV1: "CostCategoryExpression.v1";
|
|
322
|
-
};
|
|
323
|
-
export type CostCategoryRuleVersion =
|
|
324
|
-
(typeof CostCategoryRuleVersion)[keyof typeof CostCategoryRuleVersion];
|
|
325
|
-
export declare const CostCategorySplitChargeMethod: {
|
|
326
|
-
readonly EVEN: "EVEN";
|
|
327
|
-
readonly FIXED: "FIXED";
|
|
328
|
-
readonly PROPORTIONAL: "PROPORTIONAL";
|
|
329
|
-
};
|
|
330
|
-
export type CostCategorySplitChargeMethod =
|
|
331
|
-
(typeof CostCategorySplitChargeMethod)[keyof typeof CostCategorySplitChargeMethod];
|
|
332
|
-
export declare const CostCategorySplitChargeRuleParameterType: {
|
|
333
|
-
readonly ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES";
|
|
334
|
-
};
|
|
335
|
-
export type CostCategorySplitChargeRuleParameterType =
|
|
336
|
-
(typeof CostCategorySplitChargeRuleParameterType)[keyof typeof CostCategorySplitChargeRuleParameterType];
|
|
337
187
|
export interface CostCategorySplitChargeRuleParameter {
|
|
338
188
|
Type: CostCategorySplitChargeRuleParameterType | undefined;
|
|
339
189
|
Values: string[] | undefined;
|
|
@@ -348,14 +198,6 @@ export interface CreateCostCategoryDefinitionResponse {
|
|
|
348
198
|
CostCategoryArn?: string | undefined;
|
|
349
199
|
EffectiveStart?: string | undefined;
|
|
350
200
|
}
|
|
351
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
352
|
-
readonly name: "ServiceQuotaExceededException";
|
|
353
|
-
readonly $fault: "client";
|
|
354
|
-
Message?: string | undefined;
|
|
355
|
-
constructor(
|
|
356
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
357
|
-
);
|
|
358
|
-
}
|
|
359
201
|
export interface DeleteAnomalyMonitorRequest {
|
|
360
202
|
MonitorArn: string | undefined;
|
|
361
203
|
}
|
|
@@ -364,14 +206,6 @@ export interface DeleteAnomalySubscriptionRequest {
|
|
|
364
206
|
SubscriptionArn: string | undefined;
|
|
365
207
|
}
|
|
366
208
|
export interface DeleteAnomalySubscriptionResponse {}
|
|
367
|
-
export declare class UnknownSubscriptionException extends __BaseException {
|
|
368
|
-
readonly name: "UnknownSubscriptionException";
|
|
369
|
-
readonly $fault: "client";
|
|
370
|
-
Message?: string | undefined;
|
|
371
|
-
constructor(
|
|
372
|
-
opts: __ExceptionOptionType<UnknownSubscriptionException, __BaseException>
|
|
373
|
-
);
|
|
374
|
-
}
|
|
375
209
|
export interface DeleteCostCategoryDefinitionRequest {
|
|
376
210
|
CostCategoryArn: string | undefined;
|
|
377
211
|
}
|
|
@@ -379,44 +213,14 @@ export interface DeleteCostCategoryDefinitionResponse {
|
|
|
379
213
|
CostCategoryArn?: string | undefined;
|
|
380
214
|
EffectiveEnd?: string | undefined;
|
|
381
215
|
}
|
|
382
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
383
|
-
readonly name: "ResourceNotFoundException";
|
|
384
|
-
readonly $fault: "client";
|
|
385
|
-
Message?: string | undefined;
|
|
386
|
-
ResourceName?: string | undefined;
|
|
387
|
-
constructor(
|
|
388
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
389
|
-
);
|
|
390
|
-
}
|
|
391
216
|
export interface DescribeCostCategoryDefinitionRequest {
|
|
392
217
|
CostCategoryArn: string | undefined;
|
|
393
218
|
EffectiveOn?: string | undefined;
|
|
394
219
|
}
|
|
395
|
-
export declare const CostCategoryStatusComponent: {
|
|
396
|
-
readonly COST_EXPLORER: "COST_EXPLORER";
|
|
397
|
-
};
|
|
398
|
-
export type CostCategoryStatusComponent =
|
|
399
|
-
(typeof CostCategoryStatusComponent)[keyof typeof CostCategoryStatusComponent];
|
|
400
|
-
export declare const CostCategoryStatus: {
|
|
401
|
-
readonly APPLIED: "APPLIED";
|
|
402
|
-
readonly PROCESSING: "PROCESSING";
|
|
403
|
-
};
|
|
404
|
-
export type CostCategoryStatus =
|
|
405
|
-
(typeof CostCategoryStatus)[keyof typeof CostCategoryStatus];
|
|
406
220
|
export interface CostCategoryProcessingStatus {
|
|
407
221
|
Component?: CostCategoryStatusComponent | undefined;
|
|
408
222
|
Status?: CostCategoryStatus | undefined;
|
|
409
223
|
}
|
|
410
|
-
export declare const NumericOperator: {
|
|
411
|
-
readonly BETWEEN: "BETWEEN";
|
|
412
|
-
readonly EQUAL: "EQUAL";
|
|
413
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
414
|
-
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
415
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
416
|
-
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
417
|
-
};
|
|
418
|
-
export type NumericOperator =
|
|
419
|
-
(typeof NumericOperator)[keyof typeof NumericOperator];
|
|
420
224
|
export interface TotalImpactFilter {
|
|
421
225
|
NumericOperator: NumericOperator | undefined;
|
|
422
226
|
StartValue: number | undefined;
|
|
@@ -434,14 +238,6 @@ export interface GetAnomaliesResponse {
|
|
|
434
238
|
Anomalies: Anomaly[] | undefined;
|
|
435
239
|
NextPageToken?: string | undefined;
|
|
436
240
|
}
|
|
437
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
438
|
-
readonly name: "InvalidNextTokenException";
|
|
439
|
-
readonly $fault: "client";
|
|
440
|
-
Message?: string | undefined;
|
|
441
|
-
constructor(
|
|
442
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
443
|
-
);
|
|
444
|
-
}
|
|
445
241
|
export interface GetAnomalyMonitorsRequest {
|
|
446
242
|
MonitorArnList?: string[] | undefined;
|
|
447
243
|
NextPageToken?: string | undefined;
|
|
@@ -453,20 +249,6 @@ export interface GetAnomalySubscriptionsRequest {
|
|
|
453
249
|
NextPageToken?: string | undefined;
|
|
454
250
|
MaxResults?: number | undefined;
|
|
455
251
|
}
|
|
456
|
-
export declare class DataUnavailableException extends __BaseException {
|
|
457
|
-
readonly name: "DataUnavailableException";
|
|
458
|
-
readonly $fault: "client";
|
|
459
|
-
Message?: string | undefined;
|
|
460
|
-
constructor(
|
|
461
|
-
opts: __ExceptionOptionType<DataUnavailableException, __BaseException>
|
|
462
|
-
);
|
|
463
|
-
}
|
|
464
|
-
export declare const Granularity: {
|
|
465
|
-
readonly DAILY: "DAILY";
|
|
466
|
-
readonly HOURLY: "HOURLY";
|
|
467
|
-
readonly MONTHLY: "MONTHLY";
|
|
468
|
-
};
|
|
469
|
-
export type Granularity = (typeof Granularity)[keyof typeof Granularity];
|
|
470
252
|
export interface GetApproximateUsageRecordsRequest {
|
|
471
253
|
Granularity: Granularity | undefined;
|
|
472
254
|
Services?: string[] | undefined;
|
|
@@ -492,32 +274,6 @@ export interface GetCommitmentPurchaseAnalysisResponse {
|
|
|
492
274
|
| CommitmentPurchaseAnalysisConfiguration
|
|
493
275
|
| undefined;
|
|
494
276
|
}
|
|
495
|
-
export declare class BillExpirationException extends __BaseException {
|
|
496
|
-
readonly name: "BillExpirationException";
|
|
497
|
-
readonly $fault: "client";
|
|
498
|
-
Message?: string | undefined;
|
|
499
|
-
constructor(
|
|
500
|
-
opts: __ExceptionOptionType<BillExpirationException, __BaseException>
|
|
501
|
-
);
|
|
502
|
-
}
|
|
503
|
-
export declare class BillingViewHealthStatusException extends __BaseException {
|
|
504
|
-
readonly name: "BillingViewHealthStatusException";
|
|
505
|
-
readonly $fault: "client";
|
|
506
|
-
Message?: string | undefined;
|
|
507
|
-
constructor(
|
|
508
|
-
opts: __ExceptionOptionType<
|
|
509
|
-
BillingViewHealthStatusException,
|
|
510
|
-
__BaseException
|
|
511
|
-
>
|
|
512
|
-
);
|
|
513
|
-
}
|
|
514
|
-
export declare const GroupDefinitionType: {
|
|
515
|
-
readonly COST_CATEGORY: "COST_CATEGORY";
|
|
516
|
-
readonly DIMENSION: "DIMENSION";
|
|
517
|
-
readonly TAG: "TAG";
|
|
518
|
-
};
|
|
519
|
-
export type GroupDefinitionType =
|
|
520
|
-
(typeof GroupDefinitionType)[keyof typeof GroupDefinitionType];
|
|
521
277
|
export interface GroupDefinition {
|
|
522
278
|
Type?: GroupDefinitionType | undefined;
|
|
523
279
|
Key?: string | undefined;
|
|
@@ -546,14 +302,6 @@ export interface GetCostAndUsageResponse {
|
|
|
546
302
|
ResultsByTime?: ResultByTime[] | undefined;
|
|
547
303
|
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
548
304
|
}
|
|
549
|
-
export declare class RequestChangedException extends __BaseException {
|
|
550
|
-
readonly name: "RequestChangedException";
|
|
551
|
-
readonly $fault: "client";
|
|
552
|
-
Message?: string | undefined;
|
|
553
|
-
constructor(
|
|
554
|
-
opts: __ExceptionOptionType<RequestChangedException, __BaseException>
|
|
555
|
-
);
|
|
556
|
-
}
|
|
557
305
|
export interface ComparisonMetricValue {
|
|
558
306
|
BaselineTimePeriodAmount?: string | undefined;
|
|
559
307
|
ComparisonTimePeriodAmount?: string | undefined;
|
|
@@ -566,11 +314,6 @@ export interface GetCostAndUsageWithResourcesResponse {
|
|
|
566
314
|
ResultsByTime?: ResultByTime[] | undefined;
|
|
567
315
|
DimensionValueAttributes?: DimensionValuesWithAttributes[] | undefined;
|
|
568
316
|
}
|
|
569
|
-
export declare const SortOrder: {
|
|
570
|
-
readonly ASCENDING: "ASCENDING";
|
|
571
|
-
readonly DESCENDING: "DESCENDING";
|
|
572
|
-
};
|
|
573
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
574
317
|
export interface SortDefinition {
|
|
575
318
|
Key: string | undefined;
|
|
576
319
|
SortOrder?: SortOrder | undefined;
|
|
@@ -587,16 +330,6 @@ export interface CostDriver {
|
|
|
587
330
|
Name?: string | undefined;
|
|
588
331
|
Metrics?: Record<string, ComparisonMetricValue> | undefined;
|
|
589
332
|
}
|
|
590
|
-
export declare const Metric: {
|
|
591
|
-
readonly AMORTIZED_COST: "AMORTIZED_COST";
|
|
592
|
-
readonly BLENDED_COST: "BLENDED_COST";
|
|
593
|
-
readonly NET_AMORTIZED_COST: "NET_AMORTIZED_COST";
|
|
594
|
-
readonly NET_UNBLENDED_COST: "NET_UNBLENDED_COST";
|
|
595
|
-
readonly NORMALIZED_USAGE_AMOUNT: "NORMALIZED_USAGE_AMOUNT";
|
|
596
|
-
readonly UNBLENDED_COST: "UNBLENDED_COST";
|
|
597
|
-
readonly USAGE_QUANTITY: "USAGE_QUANTITY";
|
|
598
|
-
};
|
|
599
|
-
export type Metric = (typeof Metric)[keyof typeof Metric];
|
|
600
333
|
export interface ForecastResult {
|
|
601
334
|
TimePeriod?: DateInterval | undefined;
|
|
602
335
|
MeanValue?: string | undefined;
|
|
@@ -607,12 +340,6 @@ export interface GetCostForecastResponse {
|
|
|
607
340
|
Total?: MetricValue | undefined;
|
|
608
341
|
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
609
342
|
}
|
|
610
|
-
export declare const Context: {
|
|
611
|
-
readonly COST_AND_USAGE: "COST_AND_USAGE";
|
|
612
|
-
readonly RESERVATIONS: "RESERVATIONS";
|
|
613
|
-
readonly SAVINGS_PLANS: "SAVINGS_PLANS";
|
|
614
|
-
};
|
|
615
|
-
export type Context = (typeof Context)[keyof typeof Context];
|
|
616
343
|
export interface GetDimensionValuesResponse {
|
|
617
344
|
DimensionValues: DimensionValuesWithAttributes[] | undefined;
|
|
618
345
|
ReturnSize: number | undefined;
|
|
@@ -653,18 +380,6 @@ export interface GetReservationCoverageResponse {
|
|
|
653
380
|
Total?: Coverage | undefined;
|
|
654
381
|
NextPageToken?: string | undefined;
|
|
655
382
|
}
|
|
656
|
-
export declare const LookbackPeriodInDays: {
|
|
657
|
-
readonly SEVEN_DAYS: "SEVEN_DAYS";
|
|
658
|
-
readonly SIXTY_DAYS: "SIXTY_DAYS";
|
|
659
|
-
readonly THIRTY_DAYS: "THIRTY_DAYS";
|
|
660
|
-
};
|
|
661
|
-
export type LookbackPeriodInDays =
|
|
662
|
-
(typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
|
|
663
|
-
export declare const OfferingClass: {
|
|
664
|
-
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
665
|
-
readonly STANDARD: "STANDARD";
|
|
666
|
-
};
|
|
667
|
-
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
668
383
|
export interface EC2Specification {
|
|
669
384
|
OfferingClass?: OfferingClass | undefined;
|
|
670
385
|
}
|
|
@@ -821,12 +536,6 @@ export interface GetReservationUtilizationResponse {
|
|
|
821
536
|
Total?: ReservationAggregates | undefined;
|
|
822
537
|
NextPageToken?: string | undefined;
|
|
823
538
|
}
|
|
824
|
-
export declare const RecommendationTarget: {
|
|
825
|
-
readonly CROSS_INSTANCE_FAMILY: "CROSS_INSTANCE_FAMILY";
|
|
826
|
-
readonly SAME_INSTANCE_FAMILY: "SAME_INSTANCE_FAMILY";
|
|
827
|
-
};
|
|
828
|
-
export type RecommendationTarget =
|
|
829
|
-
(typeof RecommendationTarget)[keyof typeof RecommendationTarget];
|
|
830
539
|
export interface RightsizingRecommendationConfiguration {
|
|
831
540
|
RecommendationTarget: RecommendationTarget | undefined;
|
|
832
541
|
BenefitsConsidered: boolean | undefined;
|
|
@@ -893,35 +602,6 @@ export interface CurrentInstance {
|
|
|
893
602
|
MonthlyCost?: string | undefined;
|
|
894
603
|
CurrencyCode?: string | undefined;
|
|
895
604
|
}
|
|
896
|
-
export declare const FindingReasonCode: {
|
|
897
|
-
readonly CPU_OVER_PROVISIONED: "CPU_OVER_PROVISIONED";
|
|
898
|
-
readonly CPU_UNDER_PROVISIONED: "CPU_UNDER_PROVISIONED";
|
|
899
|
-
readonly DISK_IOPS_OVER_PROVISIONED: "DISK_IOPS_OVER_PROVISIONED";
|
|
900
|
-
readonly DISK_IOPS_UNDER_PROVISIONED: "DISK_IOPS_UNDER_PROVISIONED";
|
|
901
|
-
readonly DISK_THROUGHPUT_OVER_PROVISIONED: "DISK_THROUGHPUT_OVER_PROVISIONED";
|
|
902
|
-
readonly DISK_THROUGHPUT_UNDER_PROVISIONED: "DISK_THROUGHPUT_UNDER_PROVISIONED";
|
|
903
|
-
readonly EBS_IOPS_OVER_PROVISIONED: "EBS_IOPS_OVER_PROVISIONED";
|
|
904
|
-
readonly EBS_IOPS_UNDER_PROVISIONED: "EBS_IOPS_UNDER_PROVISIONED";
|
|
905
|
-
readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBS_THROUGHPUT_OVER_PROVISIONED";
|
|
906
|
-
readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBS_THROUGHPUT_UNDER_PROVISIONED";
|
|
907
|
-
readonly MEMORY_OVER_PROVISIONED: "MEMORY_OVER_PROVISIONED";
|
|
908
|
-
readonly MEMORY_UNDER_PROVISIONED: "MEMORY_UNDER_PROVISIONED";
|
|
909
|
-
readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NETWORK_BANDWIDTH_OVER_PROVISIONED";
|
|
910
|
-
readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NETWORK_BANDWIDTH_UNDER_PROVISIONED";
|
|
911
|
-
readonly NETWORK_PPS_OVER_PROVISIONED: "NETWORK_PPS_OVER_PROVISIONED";
|
|
912
|
-
readonly NETWORK_PPS_UNDER_PROVISIONED: "NETWORK_PPS_UNDER_PROVISIONED";
|
|
913
|
-
};
|
|
914
|
-
export type FindingReasonCode =
|
|
915
|
-
(typeof FindingReasonCode)[keyof typeof FindingReasonCode];
|
|
916
|
-
export declare const PlatformDifference: {
|
|
917
|
-
readonly HYPERVISOR: "HYPERVISOR";
|
|
918
|
-
readonly INSTANCE_STORE_AVAILABILITY: "INSTANCE_STORE_AVAILABILITY";
|
|
919
|
-
readonly NETWORK_INTERFACE: "NETWORK_INTERFACE";
|
|
920
|
-
readonly STORAGE_INTERFACE: "STORAGE_INTERFACE";
|
|
921
|
-
readonly VIRTUALIZATION_TYPE: "VIRTUALIZATION_TYPE";
|
|
922
|
-
};
|
|
923
|
-
export type PlatformDifference =
|
|
924
|
-
(typeof PlatformDifference)[keyof typeof PlatformDifference];
|
|
925
605
|
export interface TargetInstance {
|
|
926
606
|
EstimatedMonthlyCost?: string | undefined;
|
|
927
607
|
EstimatedMonthlySavings?: string | undefined;
|
|
@@ -934,12 +614,6 @@ export interface TargetInstance {
|
|
|
934
614
|
export interface ModifyRecommendationDetail {
|
|
935
615
|
TargetInstances?: TargetInstance[] | undefined;
|
|
936
616
|
}
|
|
937
|
-
export declare const RightsizingType: {
|
|
938
|
-
readonly MODIFY: "MODIFY";
|
|
939
|
-
readonly TERMINATE: "TERMINATE";
|
|
940
|
-
};
|
|
941
|
-
export type RightsizingType =
|
|
942
|
-
(typeof RightsizingType)[keyof typeof RightsizingType];
|
|
943
617
|
export interface TerminateRecommendationDetail {
|
|
944
618
|
EstimatedMonthlySavings?: string | undefined;
|
|
945
619
|
CurrencyCode?: string | undefined;
|
|
@@ -1110,14 +784,6 @@ export interface GetSavingsPlansUtilizationResponse {
|
|
|
1110
784
|
SavingsPlansUtilizationsByTime?: SavingsPlansUtilizationByTime[] | undefined;
|
|
1111
785
|
Total: SavingsPlansUtilizationAggregates | undefined;
|
|
1112
786
|
}
|
|
1113
|
-
export declare const SavingsPlansDataType: {
|
|
1114
|
-
readonly AMORTIZED_COMMITMENT: "AMORTIZED_COMMITMENT";
|
|
1115
|
-
readonly ATTRIBUTES: "ATTRIBUTES";
|
|
1116
|
-
readonly SAVINGS: "SAVINGS";
|
|
1117
|
-
readonly UTILIZATION: "UTILIZATION";
|
|
1118
|
-
};
|
|
1119
|
-
export type SavingsPlansDataType =
|
|
1120
|
-
(typeof SavingsPlansDataType)[keyof typeof SavingsPlansDataType];
|
|
1121
787
|
export interface SavingsPlansUtilizationDetail {
|
|
1122
788
|
SavingsPlanArn?: string | undefined;
|
|
1123
789
|
Attributes?: Record<string, string> | undefined;
|
|
@@ -1141,14 +807,6 @@ export interface GetUsageForecastResponse {
|
|
|
1141
807
|
Total?: MetricValue | undefined;
|
|
1142
808
|
ForecastResultsByTime?: ForecastResult[] | undefined;
|
|
1143
809
|
}
|
|
1144
|
-
export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
1145
|
-
readonly name: "UnresolvableUsageUnitException";
|
|
1146
|
-
readonly $fault: "client";
|
|
1147
|
-
Message?: string | undefined;
|
|
1148
|
-
constructor(
|
|
1149
|
-
opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>
|
|
1150
|
-
);
|
|
1151
|
-
}
|
|
1152
810
|
export interface ListCommitmentPurchaseAnalysesRequest {
|
|
1153
811
|
AnalysisStatus?: AnalysisStatus | undefined;
|
|
1154
812
|
NextPageToken?: string | undefined;
|
|
@@ -1163,13 +821,6 @@ export interface ListCostAllocationTagBackfillHistoryRequest {
|
|
|
1163
821
|
NextToken?: string | undefined;
|
|
1164
822
|
MaxResults?: number | undefined;
|
|
1165
823
|
}
|
|
1166
|
-
export declare const CostAllocationTagBackfillStatus: {
|
|
1167
|
-
readonly FAILED: "FAILED";
|
|
1168
|
-
readonly PROCESSING: "PROCESSING";
|
|
1169
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1170
|
-
};
|
|
1171
|
-
export type CostAllocationTagBackfillStatus =
|
|
1172
|
-
(typeof CostAllocationTagBackfillStatus)[keyof typeof CostAllocationTagBackfillStatus];
|
|
1173
824
|
export interface CostAllocationTagBackfillRequest {
|
|
1174
825
|
BackfillFrom?: string | undefined;
|
|
1175
826
|
RequestedAt?: string | undefined;
|
|
@@ -1181,18 +832,6 @@ export interface ListCostAllocationTagBackfillHistoryResponse {
|
|
|
1181
832
|
BackfillRequests?: CostAllocationTagBackfillRequest[] | undefined;
|
|
1182
833
|
NextToken?: string | undefined;
|
|
1183
834
|
}
|
|
1184
|
-
export declare const CostAllocationTagStatus: {
|
|
1185
|
-
readonly ACTIVE: "Active";
|
|
1186
|
-
readonly INACTIVE: "Inactive";
|
|
1187
|
-
};
|
|
1188
|
-
export type CostAllocationTagStatus =
|
|
1189
|
-
(typeof CostAllocationTagStatus)[keyof typeof CostAllocationTagStatus];
|
|
1190
|
-
export declare const CostAllocationTagType: {
|
|
1191
|
-
readonly AWS_GENERATED: "AWSGenerated";
|
|
1192
|
-
readonly USER_DEFINED: "UserDefined";
|
|
1193
|
-
};
|
|
1194
|
-
export type CostAllocationTagType =
|
|
1195
|
-
(typeof CostAllocationTagType)[keyof typeof CostAllocationTagType];
|
|
1196
835
|
export interface ListCostAllocationTagsRequest {
|
|
1197
836
|
Status?: CostAllocationTagStatus | undefined;
|
|
1198
837
|
TagKeys?: string[] | undefined;
|
|
@@ -1230,13 +869,6 @@ export interface ListCostCategoryDefinitionsResponse {
|
|
|
1230
869
|
CostCategoryReferences?: CostCategoryReference[] | undefined;
|
|
1231
870
|
NextToken?: string | undefined;
|
|
1232
871
|
}
|
|
1233
|
-
export declare const GenerationStatus: {
|
|
1234
|
-
readonly FAILED: "FAILED";
|
|
1235
|
-
readonly PROCESSING: "PROCESSING";
|
|
1236
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1237
|
-
};
|
|
1238
|
-
export type GenerationStatus =
|
|
1239
|
-
(typeof GenerationStatus)[keyof typeof GenerationStatus];
|
|
1240
872
|
export interface ListSavingsPlansPurchaseRecommendationGenerationRequest {
|
|
1241
873
|
GenerationStatus?: GenerationStatus | undefined;
|
|
1242
874
|
RecommendationIds?: string[] | undefined;
|
|
@@ -1267,14 +899,6 @@ export interface ProvideAnomalyFeedbackRequest {
|
|
|
1267
899
|
export interface ProvideAnomalyFeedbackResponse {
|
|
1268
900
|
AnomalyId: string | undefined;
|
|
1269
901
|
}
|
|
1270
|
-
export declare class GenerationExistsException extends __BaseException {
|
|
1271
|
-
readonly name: "GenerationExistsException";
|
|
1272
|
-
readonly $fault: "client";
|
|
1273
|
-
Message?: string | undefined;
|
|
1274
|
-
constructor(
|
|
1275
|
-
opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
|
|
1276
|
-
);
|
|
1277
|
-
}
|
|
1278
902
|
export interface StartCommitmentPurchaseAnalysisRequest {
|
|
1279
903
|
CommitmentPurchaseAnalysisConfiguration:
|
|
1280
904
|
| CommitmentPurchaseAnalysisConfiguration
|
|
@@ -1285,14 +909,6 @@ export interface StartCommitmentPurchaseAnalysisResponse {
|
|
|
1285
909
|
AnalysisStartedTime: string | undefined;
|
|
1286
910
|
EstimatedCompletionTime: string | undefined;
|
|
1287
911
|
}
|
|
1288
|
-
export declare class BackfillLimitExceededException extends __BaseException {
|
|
1289
|
-
readonly name: "BackfillLimitExceededException";
|
|
1290
|
-
readonly $fault: "client";
|
|
1291
|
-
Message?: string | undefined;
|
|
1292
|
-
constructor(
|
|
1293
|
-
opts: __ExceptionOptionType<BackfillLimitExceededException, __BaseException>
|
|
1294
|
-
);
|
|
1295
|
-
}
|
|
1296
912
|
export interface StartCostAllocationTagBackfillRequest {
|
|
1297
913
|
BackfillFrom: string | undefined;
|
|
1298
914
|
}
|
|
@@ -1310,15 +926,6 @@ export interface TagResourceRequest {
|
|
|
1310
926
|
ResourceTags: ResourceTag[] | undefined;
|
|
1311
927
|
}
|
|
1312
928
|
export interface TagResourceResponse {}
|
|
1313
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1314
|
-
readonly name: "TooManyTagsException";
|
|
1315
|
-
readonly $fault: "client";
|
|
1316
|
-
Message?: string | undefined;
|
|
1317
|
-
ResourceName?: string | undefined;
|
|
1318
|
-
constructor(
|
|
1319
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
1320
|
-
);
|
|
1321
|
-
}
|
|
1322
929
|
export interface UntagResourceRequest {
|
|
1323
930
|
ResourceArn: string | undefined;
|
|
1324
931
|
ResourceTagKeys: string[] | undefined;
|