@aws-sdk/client-bcm-pricing-calculator 3.934.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 +167 -146
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +137 -0
- package/dist-es/models/errors.js +125 -0
- package/dist-es/models/models_0.js +1 -255
- package/dist-es/schemas/schemas_0.js +29 -17
- package/dist-types/commands/CreateBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/CreateBillScenarioCommand.d.ts +4 -0
- package/dist-types/commands/GetBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/GetBillScenarioCommand.d.ts +2 -0
- package/dist-types/commands/ListBillScenariosCommand.d.ts +3 -1
- package/dist-types/commands/UpdateBillEstimateCommand.d.ts +3 -0
- package/dist-types/commands/UpdateBillScenarioCommand.d.ts +4 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +329 -0
- package/dist-types/models/errors.d.ts +170 -0
- package/dist-types/models/models_0.d.ts +106 -482
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +182 -0
- package/dist-types/ts3.4/models/errors.d.ts +72 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -243
- 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,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BCMPricingCalculatorServiceException as __BaseException } from "./BCMPricingCalculatorServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p> You do not have sufficient access to perform this action. </p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
1
|
+
import { BatchCreateBillScenarioCommitmentModificationErrorCode, BatchCreateBillScenarioUsageModificationErrorCode, BatchCreateWorkloadEstimateUsageCode, BatchDeleteBillScenarioCommitmentModificationErrorCode, BatchDeleteBillScenarioUsageModificationErrorCode, BatchUpdateBillScenarioCommitmentModificationErrorCode, BatchUpdateBillScenarioUsageModificationErrorCode, BillEstimateStatus, BillScenarioStatus, CurrencyCode, GroupSharingPreferenceEnum, ListBillEstimateLineItemsFilterName, ListBillEstimatesFilterName, ListBillScenariosFilterName, ListUsageFilterName, ListWorkloadEstimatesFilterName, MatchOption, PurchaseAgreementType, RateType, WorkloadEstimateCostStatus, WorkloadEstimateRateType, WorkloadEstimateStatus, WorkloadEstimateUpdateUsageErrorCode } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* <p> Represents an action to add a Reserved Instance to a bill scenario. </p>
|
|
17
4
|
* @public
|
|
@@ -44,35 +31,6 @@ export interface AddSavingsPlanAction {
|
|
|
44
31
|
*/
|
|
45
32
|
commitment?: number | undefined;
|
|
46
33
|
}
|
|
47
|
-
/**
|
|
48
|
-
* <p> The requested data is currently unavailable. </p>
|
|
49
|
-
* @public
|
|
50
|
-
*/
|
|
51
|
-
export declare class DataUnavailableException extends __BaseException {
|
|
52
|
-
readonly name: "DataUnavailableException";
|
|
53
|
-
readonly $fault: "client";
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
constructor(opts: __ExceptionOptionType<DataUnavailableException, __BaseException>);
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
61
|
-
* @public
|
|
62
|
-
*/
|
|
63
|
-
export declare class InternalServerException extends __BaseException {
|
|
64
|
-
readonly name: "InternalServerException";
|
|
65
|
-
readonly $fault: "server";
|
|
66
|
-
/**
|
|
67
|
-
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
retryAfterSeconds?: number | undefined;
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
75
|
-
}
|
|
76
34
|
/**
|
|
77
35
|
* @public
|
|
78
36
|
*/
|
|
@@ -93,17 +51,6 @@ export interface ListBillEstimateCommitmentsRequest {
|
|
|
93
51
|
*/
|
|
94
52
|
maxResults?: number | undefined;
|
|
95
53
|
}
|
|
96
|
-
/**
|
|
97
|
-
* @public
|
|
98
|
-
* @enum
|
|
99
|
-
*/
|
|
100
|
-
export declare const CurrencyCode: {
|
|
101
|
-
readonly USD: "USD";
|
|
102
|
-
};
|
|
103
|
-
/**
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
107
54
|
/**
|
|
108
55
|
* <p> Represents a monetary amount with associated currency. </p>
|
|
109
56
|
* @public
|
|
@@ -120,18 +67,6 @@ export interface CostAmount {
|
|
|
120
67
|
*/
|
|
121
68
|
currency?: CurrencyCode | undefined;
|
|
122
69
|
}
|
|
123
|
-
/**
|
|
124
|
-
* @public
|
|
125
|
-
* @enum
|
|
126
|
-
*/
|
|
127
|
-
export declare const PurchaseAgreementType: {
|
|
128
|
-
readonly RESERVED_INSTANCE: "RESERVED_INSTANCE";
|
|
129
|
-
readonly SAVINGS_PLANS: "SAVINGS_PLANS";
|
|
130
|
-
};
|
|
131
|
-
/**
|
|
132
|
-
* @public
|
|
133
|
-
*/
|
|
134
|
-
export type PurchaseAgreementType = (typeof PurchaseAgreementType)[keyof typeof PurchaseAgreementType];
|
|
135
70
|
/**
|
|
136
71
|
* <p> Provides a summary of commitment-related information for a bill estimate. </p>
|
|
137
72
|
* @public
|
|
@@ -198,55 +133,6 @@ export interface ListBillEstimateCommitmentsResponse {
|
|
|
198
133
|
*/
|
|
199
134
|
nextToken?: string | undefined;
|
|
200
135
|
}
|
|
201
|
-
/**
|
|
202
|
-
* <p> The specified resource was not found. </p>
|
|
203
|
-
* @public
|
|
204
|
-
*/
|
|
205
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
206
|
-
readonly name: "ResourceNotFoundException";
|
|
207
|
-
readonly $fault: "client";
|
|
208
|
-
/**
|
|
209
|
-
* <p> The identifier of the resource that was not found. </p>
|
|
210
|
-
* @public
|
|
211
|
-
*/
|
|
212
|
-
resourceId: string | undefined;
|
|
213
|
-
/**
|
|
214
|
-
* <p> The type of the resource that was not found. </p>
|
|
215
|
-
* @public
|
|
216
|
-
*/
|
|
217
|
-
resourceType: string | undefined;
|
|
218
|
-
/**
|
|
219
|
-
* @internal
|
|
220
|
-
*/
|
|
221
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* <p> The request was denied due to request throttling. </p>
|
|
225
|
-
* @public
|
|
226
|
-
*/
|
|
227
|
-
export declare class ThrottlingException extends __BaseException {
|
|
228
|
-
readonly name: "ThrottlingException";
|
|
229
|
-
readonly $fault: "client";
|
|
230
|
-
/**
|
|
231
|
-
* <p>The service code that exceeded the throttling limit.</p>
|
|
232
|
-
* @public
|
|
233
|
-
*/
|
|
234
|
-
serviceCode?: string | undefined;
|
|
235
|
-
/**
|
|
236
|
-
* <p>The quota code that exceeded the throttling limit.</p>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
quotaCode?: string | undefined;
|
|
240
|
-
/**
|
|
241
|
-
* <p>The service code that exceeded the throttling limit. Retry your request, but if the problem persists, contact Amazon Web Services support.</p>
|
|
242
|
-
* @public
|
|
243
|
-
*/
|
|
244
|
-
retryAfterSeconds?: number | undefined;
|
|
245
|
-
/**
|
|
246
|
-
* @internal
|
|
247
|
-
*/
|
|
248
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
249
|
-
}
|
|
250
136
|
/**
|
|
251
137
|
* <p> Represents a field that failed validation in a request. </p>
|
|
252
138
|
* @public
|
|
@@ -263,44 +149,6 @@ export interface ValidationExceptionField {
|
|
|
263
149
|
*/
|
|
264
150
|
message: string | undefined;
|
|
265
151
|
}
|
|
266
|
-
/**
|
|
267
|
-
* @public
|
|
268
|
-
* @enum
|
|
269
|
-
*/
|
|
270
|
-
export declare const ValidationExceptionReason: {
|
|
271
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
272
|
-
readonly DISALLOWED_RATE: "disallowedRate";
|
|
273
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
274
|
-
readonly INVALID_REQUEST_FROM_MEMBER: "invalidRequestFromMember";
|
|
275
|
-
readonly OTHER: "other";
|
|
276
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
277
|
-
};
|
|
278
|
-
/**
|
|
279
|
-
* @public
|
|
280
|
-
*/
|
|
281
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
282
|
-
/**
|
|
283
|
-
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
export declare class ValidationException extends __BaseException {
|
|
287
|
-
readonly name: "ValidationException";
|
|
288
|
-
readonly $fault: "client";
|
|
289
|
-
/**
|
|
290
|
-
* <p> The reason for the validation exception. </p>
|
|
291
|
-
* @public
|
|
292
|
-
*/
|
|
293
|
-
reason?: ValidationExceptionReason | undefined;
|
|
294
|
-
/**
|
|
295
|
-
* <p> The list of fields that are invalid. </p>
|
|
296
|
-
* @public
|
|
297
|
-
*/
|
|
298
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
299
|
-
/**
|
|
300
|
-
* @internal
|
|
301
|
-
*/
|
|
302
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
303
|
-
}
|
|
304
152
|
/**
|
|
305
153
|
* <p> Represents the difference between historical and estimated costs. </p>
|
|
306
154
|
* @public
|
|
@@ -491,40 +339,6 @@ export interface ListBillEstimateInputCommitmentModificationsResponse {
|
|
|
491
339
|
*/
|
|
492
340
|
nextToken?: string | undefined;
|
|
493
341
|
}
|
|
494
|
-
/**
|
|
495
|
-
* @public
|
|
496
|
-
* @enum
|
|
497
|
-
*/
|
|
498
|
-
export declare const MatchOption: {
|
|
499
|
-
readonly CONTAINS: "CONTAINS";
|
|
500
|
-
readonly EQUALS: "EQUALS";
|
|
501
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
502
|
-
};
|
|
503
|
-
/**
|
|
504
|
-
* @public
|
|
505
|
-
*/
|
|
506
|
-
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
507
|
-
/**
|
|
508
|
-
* @public
|
|
509
|
-
* @enum
|
|
510
|
-
*/
|
|
511
|
-
export declare const ListUsageFilterName: {
|
|
512
|
-
readonly HISTORICAL_LOCATION: "HISTORICAL_LOCATION";
|
|
513
|
-
readonly HISTORICAL_OPERATION: "HISTORICAL_OPERATION";
|
|
514
|
-
readonly HISTORICAL_SERVICE_CODE: "HISTORICAL_SERVICE_CODE";
|
|
515
|
-
readonly HISTORICAL_USAGE_ACCOUNT_ID: "HISTORICAL_USAGE_ACCOUNT_ID";
|
|
516
|
-
readonly HISTORICAL_USAGE_TYPE: "HISTORICAL_USAGE_TYPE";
|
|
517
|
-
readonly LOCATION: "LOCATION";
|
|
518
|
-
readonly OPERATION: "OPERATION";
|
|
519
|
-
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
520
|
-
readonly USAGE_ACCOUNT_ID: "USAGE_ACCOUNT_ID";
|
|
521
|
-
readonly USAGE_GROUP: "USAGE_GROUP";
|
|
522
|
-
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
523
|
-
};
|
|
524
|
-
/**
|
|
525
|
-
* @public
|
|
526
|
-
*/
|
|
527
|
-
export type ListUsageFilterName = (typeof ListUsageFilterName)[keyof typeof ListUsageFilterName];
|
|
528
342
|
/**
|
|
529
343
|
* <p> Represents a filter for listing usage data. </p>
|
|
530
344
|
* @public
|
|
@@ -629,22 +443,6 @@ export interface UsageQuantity {
|
|
|
629
443
|
*/
|
|
630
444
|
amount?: number | undefined;
|
|
631
445
|
}
|
|
632
|
-
/**
|
|
633
|
-
* @public
|
|
634
|
-
* @enum
|
|
635
|
-
*/
|
|
636
|
-
export declare const ListBillEstimateLineItemsFilterName: {
|
|
637
|
-
readonly LINE_ITEM_TYPE: "LINE_ITEM_TYPE";
|
|
638
|
-
readonly LOCATION: "LOCATION";
|
|
639
|
-
readonly OPERATION: "OPERATION";
|
|
640
|
-
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
641
|
-
readonly USAGE_ACCOUNT_ID: "USAGE_ACCOUNT_ID";
|
|
642
|
-
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
643
|
-
};
|
|
644
|
-
/**
|
|
645
|
-
* @public
|
|
646
|
-
*/
|
|
647
|
-
export type ListBillEstimateLineItemsFilterName = (typeof ListBillEstimateLineItemsFilterName)[keyof typeof ListBillEstimateLineItemsFilterName];
|
|
648
446
|
/**
|
|
649
447
|
* <p> Represents a filter for listing bill estimate line items. </p>
|
|
650
448
|
* @public
|
|
@@ -803,41 +601,6 @@ export interface ListBillEstimateLineItemsResponse {
|
|
|
803
601
|
*/
|
|
804
602
|
nextToken?: string | undefined;
|
|
805
603
|
}
|
|
806
|
-
/**
|
|
807
|
-
* @public
|
|
808
|
-
* @enum
|
|
809
|
-
*/
|
|
810
|
-
export declare const BillEstimateStatus: {
|
|
811
|
-
readonly COMPLETE: "COMPLETE";
|
|
812
|
-
readonly FAILED: "FAILED";
|
|
813
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
814
|
-
};
|
|
815
|
-
/**
|
|
816
|
-
* @public
|
|
817
|
-
*/
|
|
818
|
-
export type BillEstimateStatus = (typeof BillEstimateStatus)[keyof typeof BillEstimateStatus];
|
|
819
|
-
/**
|
|
820
|
-
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
821
|
-
* @public
|
|
822
|
-
*/
|
|
823
|
-
export declare class ConflictException extends __BaseException {
|
|
824
|
-
readonly name: "ConflictException";
|
|
825
|
-
readonly $fault: "client";
|
|
826
|
-
/**
|
|
827
|
-
* <p> The identifier of the resource that was not found. </p>
|
|
828
|
-
* @public
|
|
829
|
-
*/
|
|
830
|
-
resourceId: string | undefined;
|
|
831
|
-
/**
|
|
832
|
-
* <p> The type of the resource that was not found. </p>
|
|
833
|
-
* @public
|
|
834
|
-
*/
|
|
835
|
-
resourceType: string | undefined;
|
|
836
|
-
/**
|
|
837
|
-
* @internal
|
|
838
|
-
*/
|
|
839
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
840
|
-
}
|
|
841
604
|
/**
|
|
842
605
|
* @public
|
|
843
606
|
*/
|
|
@@ -907,6 +670,21 @@ export interface CreateBillEstimateResponse {
|
|
|
907
670
|
* @public
|
|
908
671
|
*/
|
|
909
672
|
expiresAt?: Date | undefined;
|
|
673
|
+
/**
|
|
674
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
675
|
+
* @public
|
|
676
|
+
*/
|
|
677
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
678
|
+
/**
|
|
679
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
680
|
+
* @public
|
|
681
|
+
*/
|
|
682
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
683
|
+
/**
|
|
684
|
+
* <p>Timestamp of the effective date of the cost category used in the group sharing settings.</p>
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
costCategoryGroupSharingPreferenceEffectiveDate?: Date | undefined;
|
|
910
688
|
}
|
|
911
689
|
/**
|
|
912
690
|
* @public
|
|
@@ -977,6 +755,21 @@ export interface GetBillEstimateResponse {
|
|
|
977
755
|
* @public
|
|
978
756
|
*/
|
|
979
757
|
expiresAt?: Date | undefined;
|
|
758
|
+
/**
|
|
759
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
763
|
+
/**
|
|
764
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
768
|
+
/**
|
|
769
|
+
* <p>Timestamp of the effective date of the cost category used in the group sharing settings.</p>
|
|
770
|
+
* @public
|
|
771
|
+
*/
|
|
772
|
+
costCategoryGroupSharingPreferenceEffectiveDate?: Date | undefined;
|
|
980
773
|
}
|
|
981
774
|
/**
|
|
982
775
|
* <p> Represents a time-based filter. </p>
|
|
@@ -994,18 +787,6 @@ export interface FilterTimestamp {
|
|
|
994
787
|
*/
|
|
995
788
|
beforeTimestamp?: Date | undefined;
|
|
996
789
|
}
|
|
997
|
-
/**
|
|
998
|
-
* @public
|
|
999
|
-
* @enum
|
|
1000
|
-
*/
|
|
1001
|
-
export declare const ListBillEstimatesFilterName: {
|
|
1002
|
-
readonly NAME: "NAME";
|
|
1003
|
-
readonly STATUS: "STATUS";
|
|
1004
|
-
};
|
|
1005
|
-
/**
|
|
1006
|
-
* @public
|
|
1007
|
-
*/
|
|
1008
|
-
export type ListBillEstimatesFilterName = (typeof ListBillEstimatesFilterName)[keyof typeof ListBillEstimatesFilterName];
|
|
1009
790
|
/**
|
|
1010
791
|
* <p> Represents a filter for listing bill estimates. </p>
|
|
1011
792
|
* @public
|
|
@@ -1172,6 +953,21 @@ export interface UpdateBillEstimateResponse {
|
|
|
1172
953
|
* @public
|
|
1173
954
|
*/
|
|
1174
955
|
expiresAt?: Date | undefined;
|
|
956
|
+
/**
|
|
957
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
958
|
+
* @public
|
|
959
|
+
*/
|
|
960
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
961
|
+
/**
|
|
962
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
966
|
+
/**
|
|
967
|
+
* <p>Timestamp of the effective date of the cost category used in the group sharing settings.</p>
|
|
968
|
+
* @public
|
|
969
|
+
*/
|
|
970
|
+
costCategoryGroupSharingPreferenceEffectiveDate?: Date | undefined;
|
|
1175
971
|
}
|
|
1176
972
|
/**
|
|
1177
973
|
* <p> Represents an entry object in the batch operation to create bill scenario commitment modifications. </p>
|
|
@@ -1219,19 +1015,6 @@ export interface BatchCreateBillScenarioCommitmentModificationRequest {
|
|
|
1219
1015
|
*/
|
|
1220
1016
|
clientToken?: string | undefined;
|
|
1221
1017
|
}
|
|
1222
|
-
/**
|
|
1223
|
-
* @public
|
|
1224
|
-
* @enum
|
|
1225
|
-
*/
|
|
1226
|
-
export declare const BatchCreateBillScenarioCommitmentModificationErrorCode: {
|
|
1227
|
-
readonly CONFLICT: "CONFLICT";
|
|
1228
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1229
|
-
readonly INVALID_ACCOUNT: "INVALID_ACCOUNT";
|
|
1230
|
-
};
|
|
1231
|
-
/**
|
|
1232
|
-
* @public
|
|
1233
|
-
*/
|
|
1234
|
-
export type BatchCreateBillScenarioCommitmentModificationErrorCode = (typeof BatchCreateBillScenarioCommitmentModificationErrorCode)[keyof typeof BatchCreateBillScenarioCommitmentModificationErrorCode];
|
|
1235
1018
|
/**
|
|
1236
1019
|
* <p> Represents an error that occurred during a batch create operation for bill scenario commitment modifications. </p>
|
|
1237
1020
|
* @public
|
|
@@ -1314,19 +1097,6 @@ export interface BatchDeleteBillScenarioCommitmentModificationRequest {
|
|
|
1314
1097
|
*/
|
|
1315
1098
|
ids: string[] | undefined;
|
|
1316
1099
|
}
|
|
1317
|
-
/**
|
|
1318
|
-
* @public
|
|
1319
|
-
* @enum
|
|
1320
|
-
*/
|
|
1321
|
-
export declare const BatchDeleteBillScenarioCommitmentModificationErrorCode: {
|
|
1322
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
1323
|
-
readonly CONFLICT: "CONFLICT";
|
|
1324
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1325
|
-
};
|
|
1326
|
-
/**
|
|
1327
|
-
* @public
|
|
1328
|
-
*/
|
|
1329
|
-
export type BatchDeleteBillScenarioCommitmentModificationErrorCode = (typeof BatchDeleteBillScenarioCommitmentModificationErrorCode)[keyof typeof BatchDeleteBillScenarioCommitmentModificationErrorCode];
|
|
1330
1100
|
/**
|
|
1331
1101
|
* <p> Represents an error that occurred when deleting a commitment in a Bill Scenario. </p>
|
|
1332
1102
|
* @public
|
|
@@ -1389,20 +1159,6 @@ export interface BatchUpdateBillScenarioCommitmentModificationRequest {
|
|
|
1389
1159
|
*/
|
|
1390
1160
|
commitmentModifications: BatchUpdateBillScenarioCommitmentModificationEntry[] | undefined;
|
|
1391
1161
|
}
|
|
1392
|
-
/**
|
|
1393
|
-
* @public
|
|
1394
|
-
* @enum
|
|
1395
|
-
*/
|
|
1396
|
-
export declare const BatchUpdateBillScenarioCommitmentModificationErrorCode: {
|
|
1397
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
1398
|
-
readonly CONFLICT: "CONFLICT";
|
|
1399
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1400
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
1401
|
-
};
|
|
1402
|
-
/**
|
|
1403
|
-
* @public
|
|
1404
|
-
*/
|
|
1405
|
-
export type BatchUpdateBillScenarioCommitmentModificationErrorCode = (typeof BatchUpdateBillScenarioCommitmentModificationErrorCode)[keyof typeof BatchUpdateBillScenarioCommitmentModificationErrorCode];
|
|
1406
1162
|
/**
|
|
1407
1163
|
* <p> Represents an error that occurred when updating a commitment in a Bill Scenario. </p>
|
|
1408
1164
|
* @public
|
|
@@ -1500,20 +1256,6 @@ export interface ListBillScenarioCommitmentModificationsResponse {
|
|
|
1500
1256
|
*/
|
|
1501
1257
|
nextToken?: string | undefined;
|
|
1502
1258
|
}
|
|
1503
|
-
/**
|
|
1504
|
-
* @public
|
|
1505
|
-
* @enum
|
|
1506
|
-
*/
|
|
1507
|
-
export declare const BillScenarioStatus: {
|
|
1508
|
-
readonly FAILED: "FAILED";
|
|
1509
|
-
readonly LOCKED: "LOCKED";
|
|
1510
|
-
readonly READY: "READY";
|
|
1511
|
-
readonly STALE: "STALE";
|
|
1512
|
-
};
|
|
1513
|
-
/**
|
|
1514
|
-
* @public
|
|
1515
|
-
*/
|
|
1516
|
-
export type BillScenarioStatus = (typeof BillScenarioStatus)[keyof typeof BillScenarioStatus];
|
|
1517
1259
|
/**
|
|
1518
1260
|
* <p> Represents a usage amount for a specific time period. </p>
|
|
1519
1261
|
* @public
|
|
@@ -1530,20 +1272,6 @@ export interface UsageAmount {
|
|
|
1530
1272
|
*/
|
|
1531
1273
|
amount: number | undefined;
|
|
1532
1274
|
}
|
|
1533
|
-
/**
|
|
1534
|
-
* @public
|
|
1535
|
-
* @enum
|
|
1536
|
-
*/
|
|
1537
|
-
export declare const BatchCreateBillScenarioUsageModificationErrorCode: {
|
|
1538
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
1539
|
-
readonly CONFLICT: "CONFLICT";
|
|
1540
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1541
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
1542
|
-
};
|
|
1543
|
-
/**
|
|
1544
|
-
* @public
|
|
1545
|
-
*/
|
|
1546
|
-
export type BatchCreateBillScenarioUsageModificationErrorCode = (typeof BatchCreateBillScenarioUsageModificationErrorCode)[keyof typeof BatchCreateBillScenarioUsageModificationErrorCode];
|
|
1547
1275
|
/**
|
|
1548
1276
|
* <p> Represents an error that occurred during a batch create operation for bill scenario usage modifications. </p>
|
|
1549
1277
|
* @public
|
|
@@ -1565,38 +1293,6 @@ export interface BatchCreateBillScenarioUsageModificationError {
|
|
|
1565
1293
|
*/
|
|
1566
1294
|
errorCode?: BatchCreateBillScenarioUsageModificationErrorCode | undefined;
|
|
1567
1295
|
}
|
|
1568
|
-
/**
|
|
1569
|
-
* <p> The request would cause you to exceed your service quota. </p>
|
|
1570
|
-
* @public
|
|
1571
|
-
*/
|
|
1572
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1573
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1574
|
-
readonly $fault: "client";
|
|
1575
|
-
/**
|
|
1576
|
-
* <p> The identifier of the resource that exceeded quota. </p>
|
|
1577
|
-
* @public
|
|
1578
|
-
*/
|
|
1579
|
-
resourceId: string | undefined;
|
|
1580
|
-
/**
|
|
1581
|
-
* <p> The type of the resource that exceeded quota. </p>
|
|
1582
|
-
* @public
|
|
1583
|
-
*/
|
|
1584
|
-
resourceType: string | undefined;
|
|
1585
|
-
/**
|
|
1586
|
-
* <p> The service code that exceeded quota. </p>
|
|
1587
|
-
* @public
|
|
1588
|
-
*/
|
|
1589
|
-
serviceCode?: string | undefined;
|
|
1590
|
-
/**
|
|
1591
|
-
* <p> The quota code that was exceeded. </p>
|
|
1592
|
-
* @public
|
|
1593
|
-
*/
|
|
1594
|
-
quotaCode?: string | undefined;
|
|
1595
|
-
/**
|
|
1596
|
-
* @internal
|
|
1597
|
-
*/
|
|
1598
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1599
|
-
}
|
|
1600
1296
|
/**
|
|
1601
1297
|
* @public
|
|
1602
1298
|
*/
|
|
@@ -1612,19 +1308,6 @@ export interface BatchDeleteBillScenarioUsageModificationRequest {
|
|
|
1612
1308
|
*/
|
|
1613
1309
|
ids: string[] | undefined;
|
|
1614
1310
|
}
|
|
1615
|
-
/**
|
|
1616
|
-
* @public
|
|
1617
|
-
* @enum
|
|
1618
|
-
*/
|
|
1619
|
-
export declare const BatchDeleteBillScenarioUsageModificationErrorCode: {
|
|
1620
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
1621
|
-
readonly CONFLICT: "CONFLICT";
|
|
1622
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1623
|
-
};
|
|
1624
|
-
/**
|
|
1625
|
-
* @public
|
|
1626
|
-
*/
|
|
1627
|
-
export type BatchDeleteBillScenarioUsageModificationErrorCode = (typeof BatchDeleteBillScenarioUsageModificationErrorCode)[keyof typeof BatchDeleteBillScenarioUsageModificationErrorCode];
|
|
1628
1311
|
/**
|
|
1629
1312
|
* <p> Represents an error that occurred when deleting usage in a Bill Scenario. </p>
|
|
1630
1313
|
* @public
|
|
@@ -1692,20 +1375,6 @@ export interface BatchUpdateBillScenarioUsageModificationRequest {
|
|
|
1692
1375
|
*/
|
|
1693
1376
|
usageModifications: BatchUpdateBillScenarioUsageModificationEntry[] | undefined;
|
|
1694
1377
|
}
|
|
1695
|
-
/**
|
|
1696
|
-
* @public
|
|
1697
|
-
* @enum
|
|
1698
|
-
*/
|
|
1699
|
-
export declare const BatchUpdateBillScenarioUsageModificationErrorCode: {
|
|
1700
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
1701
|
-
readonly CONFLICT: "CONFLICT";
|
|
1702
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
1703
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
1704
|
-
};
|
|
1705
|
-
/**
|
|
1706
|
-
* @public
|
|
1707
|
-
*/
|
|
1708
|
-
export type BatchUpdateBillScenarioUsageModificationErrorCode = (typeof BatchUpdateBillScenarioUsageModificationErrorCode)[keyof typeof BatchUpdateBillScenarioUsageModificationErrorCode];
|
|
1709
1378
|
/**
|
|
1710
1379
|
* <p> Represents an error that occurred when updating usage in a Bill Scenario. </p>
|
|
1711
1380
|
* @public
|
|
@@ -1771,6 +1440,16 @@ export interface CreateBillScenarioRequest {
|
|
|
1771
1440
|
* @public
|
|
1772
1441
|
*/
|
|
1773
1442
|
tags?: Record<string, string> | undefined;
|
|
1443
|
+
/**
|
|
1444
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1445
|
+
* @public
|
|
1446
|
+
*/
|
|
1447
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1450
|
+
* @public
|
|
1451
|
+
*/
|
|
1452
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
1774
1453
|
}
|
|
1775
1454
|
/**
|
|
1776
1455
|
* @public
|
|
@@ -1811,6 +1490,16 @@ export interface CreateBillScenarioResponse {
|
|
|
1811
1490
|
* @public
|
|
1812
1491
|
*/
|
|
1813
1492
|
failureMessage?: string | undefined;
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1497
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1498
|
+
/**
|
|
1499
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1500
|
+
* @public
|
|
1501
|
+
*/
|
|
1502
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
1814
1503
|
}
|
|
1815
1504
|
/**
|
|
1816
1505
|
* @public
|
|
@@ -1876,19 +1565,17 @@ export interface GetBillScenarioResponse {
|
|
|
1876
1565
|
* @public
|
|
1877
1566
|
*/
|
|
1878
1567
|
failureMessage?: string | undefined;
|
|
1568
|
+
/**
|
|
1569
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1570
|
+
* @public
|
|
1571
|
+
*/
|
|
1572
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1573
|
+
/**
|
|
1574
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1575
|
+
* @public
|
|
1576
|
+
*/
|
|
1577
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
1879
1578
|
}
|
|
1880
|
-
/**
|
|
1881
|
-
* @public
|
|
1882
|
-
* @enum
|
|
1883
|
-
*/
|
|
1884
|
-
export declare const ListBillScenariosFilterName: {
|
|
1885
|
-
readonly NAME: "NAME";
|
|
1886
|
-
readonly STATUS: "STATUS";
|
|
1887
|
-
};
|
|
1888
|
-
/**
|
|
1889
|
-
* @public
|
|
1890
|
-
*/
|
|
1891
|
-
export type ListBillScenariosFilterName = (typeof ListBillScenariosFilterName)[keyof typeof ListBillScenariosFilterName];
|
|
1892
1579
|
/**
|
|
1893
1580
|
* <p> Represents a filter for listing bill scenarios. </p>
|
|
1894
1581
|
* @public
|
|
@@ -1980,6 +1667,16 @@ export interface BillScenarioSummary {
|
|
|
1980
1667
|
* @public
|
|
1981
1668
|
*/
|
|
1982
1669
|
failureMessage?: string | undefined;
|
|
1670
|
+
/**
|
|
1671
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1672
|
+
* @public
|
|
1673
|
+
*/
|
|
1674
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1675
|
+
/**
|
|
1676
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1677
|
+
* @public
|
|
1678
|
+
*/
|
|
1679
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
1983
1680
|
}
|
|
1984
1681
|
/**
|
|
1985
1682
|
* @public
|
|
@@ -2015,6 +1712,16 @@ export interface UpdateBillScenarioRequest {
|
|
|
2015
1712
|
* @public
|
|
2016
1713
|
*/
|
|
2017
1714
|
expiresAt?: Date | undefined;
|
|
1715
|
+
/**
|
|
1716
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1717
|
+
* @public
|
|
1718
|
+
*/
|
|
1719
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1722
|
+
* @public
|
|
1723
|
+
*/
|
|
1724
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
2018
1725
|
}
|
|
2019
1726
|
/**
|
|
2020
1727
|
* @public
|
|
@@ -2055,25 +1762,22 @@ export interface UpdateBillScenarioResponse {
|
|
|
2055
1762
|
* @public
|
|
2056
1763
|
*/
|
|
2057
1764
|
failureMessage?: string | undefined;
|
|
1765
|
+
/**
|
|
1766
|
+
* <p>The setting for the reserved instance and savings plan group sharing used in this estimate.</p>
|
|
1767
|
+
* @public
|
|
1768
|
+
*/
|
|
1769
|
+
groupSharingPreference?: GroupSharingPreferenceEnum | undefined;
|
|
1770
|
+
/**
|
|
1771
|
+
* <p>The arn of the cost category used in the reserved and prioritized group sharing.</p>
|
|
1772
|
+
* @public
|
|
1773
|
+
*/
|
|
1774
|
+
costCategoryGroupSharingPreferenceArn?: string | undefined;
|
|
2058
1775
|
}
|
|
2059
1776
|
/**
|
|
2060
1777
|
* @public
|
|
2061
1778
|
*/
|
|
2062
1779
|
export interface GetPreferencesRequest {
|
|
2063
1780
|
}
|
|
2064
|
-
/**
|
|
2065
|
-
* @public
|
|
2066
|
-
* @enum
|
|
2067
|
-
*/
|
|
2068
|
-
export declare const RateType: {
|
|
2069
|
-
readonly AFTER_DISCOUNTS: "AFTER_DISCOUNTS";
|
|
2070
|
-
readonly AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS";
|
|
2071
|
-
readonly BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS";
|
|
2072
|
-
};
|
|
2073
|
-
/**
|
|
2074
|
-
* @public
|
|
2075
|
-
*/
|
|
2076
|
-
export type RateType = (typeof RateType)[keyof typeof RateType];
|
|
2077
1781
|
/**
|
|
2078
1782
|
* @public
|
|
2079
1783
|
*/
|
|
@@ -2194,19 +1898,6 @@ export interface UpdatePreferencesResponse {
|
|
|
2194
1898
|
*/
|
|
2195
1899
|
standaloneAccountRateTypeSelections?: RateType[] | undefined;
|
|
2196
1900
|
}
|
|
2197
|
-
/**
|
|
2198
|
-
* @public
|
|
2199
|
-
* @enum
|
|
2200
|
-
*/
|
|
2201
|
-
export declare const WorkloadEstimateRateType: {
|
|
2202
|
-
readonly AFTER_DISCOUNTS: "AFTER_DISCOUNTS";
|
|
2203
|
-
readonly AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS";
|
|
2204
|
-
readonly BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS";
|
|
2205
|
-
};
|
|
2206
|
-
/**
|
|
2207
|
-
* @public
|
|
2208
|
-
*/
|
|
2209
|
-
export type WorkloadEstimateRateType = (typeof WorkloadEstimateRateType)[keyof typeof WorkloadEstimateRateType];
|
|
2210
1901
|
/**
|
|
2211
1902
|
* @public
|
|
2212
1903
|
*/
|
|
@@ -2232,20 +1923,6 @@ export interface CreateWorkloadEstimateRequest {
|
|
|
2232
1923
|
*/
|
|
2233
1924
|
tags?: Record<string, string> | undefined;
|
|
2234
1925
|
}
|
|
2235
|
-
/**
|
|
2236
|
-
* @public
|
|
2237
|
-
* @enum
|
|
2238
|
-
*/
|
|
2239
|
-
export declare const WorkloadEstimateStatus: {
|
|
2240
|
-
readonly ACTION_NEEDED: "ACTION_NEEDED";
|
|
2241
|
-
readonly INVALID: "INVALID";
|
|
2242
|
-
readonly UPDATING: "UPDATING";
|
|
2243
|
-
readonly VALID: "VALID";
|
|
2244
|
-
};
|
|
2245
|
-
/**
|
|
2246
|
-
* @public
|
|
2247
|
-
*/
|
|
2248
|
-
export type WorkloadEstimateStatus = (typeof WorkloadEstimateStatus)[keyof typeof WorkloadEstimateStatus];
|
|
2249
1926
|
/**
|
|
2250
1927
|
* Mixin for common fields returned by CRUD APIs
|
|
2251
1928
|
* @public
|
|
@@ -2383,18 +2060,6 @@ export interface GetWorkloadEstimateResponse {
|
|
|
2383
2060
|
*/
|
|
2384
2061
|
failureMessage?: string | undefined;
|
|
2385
2062
|
}
|
|
2386
|
-
/**
|
|
2387
|
-
* @public
|
|
2388
|
-
* @enum
|
|
2389
|
-
*/
|
|
2390
|
-
export declare const ListWorkloadEstimatesFilterName: {
|
|
2391
|
-
readonly NAME: "NAME";
|
|
2392
|
-
readonly STATUS: "STATUS";
|
|
2393
|
-
};
|
|
2394
|
-
/**
|
|
2395
|
-
* @public
|
|
2396
|
-
*/
|
|
2397
|
-
export type ListWorkloadEstimatesFilterName = (typeof ListWorkloadEstimatesFilterName)[keyof typeof ListWorkloadEstimatesFilterName];
|
|
2398
2063
|
/**
|
|
2399
2064
|
* <p> Represents a filter for listing workload estimates. </p>
|
|
2400
2065
|
* @public
|
|
@@ -2593,20 +2258,6 @@ export interface UpdateWorkloadEstimateResponse {
|
|
|
2593
2258
|
*/
|
|
2594
2259
|
failureMessage?: string | undefined;
|
|
2595
2260
|
}
|
|
2596
|
-
/**
|
|
2597
|
-
* @public
|
|
2598
|
-
* @enum
|
|
2599
|
-
*/
|
|
2600
|
-
export declare const BatchCreateWorkloadEstimateUsageCode: {
|
|
2601
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
2602
|
-
readonly CONFLICT: "CONFLICT";
|
|
2603
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
2604
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
2605
|
-
};
|
|
2606
|
-
/**
|
|
2607
|
-
* @public
|
|
2608
|
-
*/
|
|
2609
|
-
export type BatchCreateWorkloadEstimateUsageCode = (typeof BatchCreateWorkloadEstimateUsageCode)[keyof typeof BatchCreateWorkloadEstimateUsageCode];
|
|
2610
2261
|
/**
|
|
2611
2262
|
* <p> Represents an error that occurred during a batch create operation for workload estimate usage. </p>
|
|
2612
2263
|
* @public
|
|
@@ -2644,19 +2295,6 @@ export interface WorkloadEstimateUsageQuantity {
|
|
|
2644
2295
|
*/
|
|
2645
2296
|
amount?: number | undefined;
|
|
2646
2297
|
}
|
|
2647
|
-
/**
|
|
2648
|
-
* @public
|
|
2649
|
-
* @enum
|
|
2650
|
-
*/
|
|
2651
|
-
export declare const WorkloadEstimateCostStatus: {
|
|
2652
|
-
readonly INVALID: "INVALID";
|
|
2653
|
-
readonly STALE: "STALE";
|
|
2654
|
-
readonly VALID: "VALID";
|
|
2655
|
-
};
|
|
2656
|
-
/**
|
|
2657
|
-
* @public
|
|
2658
|
-
*/
|
|
2659
|
-
export type WorkloadEstimateCostStatus = (typeof WorkloadEstimateCostStatus)[keyof typeof WorkloadEstimateCostStatus];
|
|
2660
2298
|
/**
|
|
2661
2299
|
* @public
|
|
2662
2300
|
*/
|
|
@@ -2672,20 +2310,6 @@ export interface BatchDeleteWorkloadEstimateUsageRequest {
|
|
|
2672
2310
|
*/
|
|
2673
2311
|
ids: string[] | undefined;
|
|
2674
2312
|
}
|
|
2675
|
-
/**
|
|
2676
|
-
* @public
|
|
2677
|
-
* @enum
|
|
2678
|
-
*/
|
|
2679
|
-
export declare const WorkloadEstimateUpdateUsageErrorCode: {
|
|
2680
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
2681
|
-
readonly CONFLICT: "CONFLICT";
|
|
2682
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
2683
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
2684
|
-
};
|
|
2685
|
-
/**
|
|
2686
|
-
* @public
|
|
2687
|
-
*/
|
|
2688
|
-
export type WorkloadEstimateUpdateUsageErrorCode = (typeof WorkloadEstimateUpdateUsageErrorCode)[keyof typeof WorkloadEstimateUpdateUsageErrorCode];
|
|
2689
2313
|
/**
|
|
2690
2314
|
* <p> Represents an error that occurred when deleting usage in a workload estimate. </p>
|
|
2691
2315
|
* @public
|