@aws-sdk/client-bcm-pricing-calculator 3.817.0 → 3.821.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/README.md +1 -12
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-types/BCMPricingCalculator.d.ts +1 -12
- package/dist-types/BCMPricingCalculatorClient.d.ts +1 -12
- package/dist-types/commands/BatchCreateBillScenarioCommitmentModificationCommand.d.ts +8 -28
- package/dist-types/commands/BatchCreateBillScenarioUsageModificationCommand.d.ts +9 -31
- package/dist-types/commands/BatchCreateWorkloadEstimateUsageCommand.d.ts +9 -31
- package/dist-types/commands/BatchDeleteBillScenarioCommitmentModificationCommand.d.ts +8 -33
- package/dist-types/commands/BatchDeleteBillScenarioUsageModificationCommand.d.ts +9 -34
- package/dist-types/commands/BatchDeleteWorkloadEstimateUsageCommand.d.ts +8 -31
- package/dist-types/commands/BatchUpdateBillScenarioCommitmentModificationCommand.d.ts +8 -28
- package/dist-types/commands/BatchUpdateBillScenarioUsageModificationCommand.d.ts +9 -31
- package/dist-types/commands/BatchUpdateWorkloadEstimateUsageCommand.d.ts +8 -28
- package/dist-types/commands/CreateBillEstimateCommand.d.ts +8 -24
- package/dist-types/commands/CreateBillScenarioCommand.d.ts +8 -24
- package/dist-types/commands/CreateWorkloadEstimateCommand.d.ts +10 -26
- package/dist-types/commands/DeleteBillEstimateCommand.d.ts +7 -21
- package/dist-types/commands/DeleteBillScenarioCommand.d.ts +7 -21
- package/dist-types/commands/DeleteWorkloadEstimateCommand.d.ts +6 -18
- package/dist-types/commands/GetBillEstimateCommand.d.ts +7 -21
- package/dist-types/commands/GetBillScenarioCommand.d.ts +7 -21
- package/dist-types/commands/GetPreferencesCommand.d.ts +9 -21
- package/dist-types/commands/GetWorkloadEstimateCommand.d.ts +8 -22
- package/dist-types/commands/ListBillEstimateCommitmentsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillEstimateInputCommitmentModificationsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillEstimateInputUsageModificationsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillEstimateLineItemsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillEstimatesCommand.d.ts +6 -18
- package/dist-types/commands/ListBillScenarioCommitmentModificationsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillScenarioUsageModificationsCommand.d.ts +7 -21
- package/dist-types/commands/ListBillScenariosCommand.d.ts +6 -18
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -18
- package/dist-types/commands/ListWorkloadEstimateUsageCommand.d.ts +7 -21
- package/dist-types/commands/ListWorkloadEstimatesCommand.d.ts +7 -19
- package/dist-types/commands/TagResourceCommand.d.ts +7 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -18
- package/dist-types/commands/UpdateBillEstimateCommand.d.ts +8 -24
- package/dist-types/commands/UpdateBillScenarioCommand.d.ts +8 -24
- package/dist-types/commands/UpdatePreferencesCommand.d.ts +13 -27
- package/dist-types/commands/UpdateWorkloadEstimateCommand.d.ts +9 -25
- package/dist-types/index.d.ts +1 -12
- package/dist-types/models/models_0.d.ts +516 -1585
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +33 -33
package/README.md
CHANGED
|
@@ -6,18 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript BCMPricingCalculator Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>
|
|
10
|
-
You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and
|
|
11
|
-
Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences.
|
|
12
|
-
</p>
|
|
13
|
-
<p>The Pricing Calculator API provides the following endpoint:</p>
|
|
14
|
-
<ul>
|
|
15
|
-
<li>
|
|
16
|
-
<p>
|
|
17
|
-
<code>https://bcm-pricing-calculator.us-east-1.api.aws</code>
|
|
18
|
-
</p>
|
|
19
|
-
</li>
|
|
20
|
-
</ul>
|
|
9
|
+
<p> You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences. </p> <p>The Pricing Calculator API provides the following endpoint:</p> <ul> <li> <p> <code>https://bcm-pricing-calculator.us-east-1.api.aws</code> </p> </li> </ul>
|
|
21
10
|
|
|
22
11
|
## Installing
|
|
23
12
|
|
|
@@ -243,10 +243,12 @@ exports.ListBillScenariosFilterName = {
|
|
|
243
243
|
};
|
|
244
244
|
exports.RateType = {
|
|
245
245
|
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
246
|
+
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
246
247
|
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
247
248
|
};
|
|
248
249
|
exports.WorkloadEstimateRateType = {
|
|
249
250
|
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
251
|
+
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
250
252
|
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
251
253
|
};
|
|
252
254
|
exports.WorkloadEstimateStatus = {
|
|
@@ -232,10 +232,12 @@ export const ListBillScenariosFilterName = {
|
|
|
232
232
|
};
|
|
233
233
|
export const RateType = {
|
|
234
234
|
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
235
|
+
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
235
236
|
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
236
237
|
};
|
|
237
238
|
export const WorkloadEstimateRateType = {
|
|
238
239
|
AFTER_DISCOUNTS: "AFTER_DISCOUNTS",
|
|
240
|
+
AFTER_DISCOUNTS_AND_COMMITMENTS: "AFTER_DISCOUNTS_AND_COMMITMENTS",
|
|
239
241
|
BEFORE_DISCOUNTS: "BEFORE_DISCOUNTS",
|
|
240
242
|
};
|
|
241
243
|
export const WorkloadEstimateStatus = {
|
|
@@ -260,18 +260,7 @@ export interface BCMPricingCalculator {
|
|
|
260
260
|
updateWorkloadEstimate(args: UpdateWorkloadEstimateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkloadEstimateCommandOutput) => void): void;
|
|
261
261
|
}
|
|
262
262
|
/**
|
|
263
|
-
* <p>
|
|
264
|
-
* You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and
|
|
265
|
-
* Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences.
|
|
266
|
-
* </p>
|
|
267
|
-
* <p>The Pricing Calculator API provides the following endpoint:</p>
|
|
268
|
-
* <ul>
|
|
269
|
-
* <li>
|
|
270
|
-
* <p>
|
|
271
|
-
* <code>https://bcm-pricing-calculator.us-east-1.api.aws</code>
|
|
272
|
-
* </p>
|
|
273
|
-
* </li>
|
|
274
|
-
* </ul>
|
|
263
|
+
* <p> You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences. </p> <p>The Pricing Calculator API provides the following endpoint:</p> <ul> <li> <p> <code>https://bcm-pricing-calculator.us-east-1.api.aws</code> </p> </li> </ul>
|
|
275
264
|
* @public
|
|
276
265
|
*/
|
|
277
266
|
export declare class BCMPricingCalculator extends BCMPricingCalculatorClient implements BCMPricingCalculator {
|
|
@@ -205,18 +205,7 @@ export type BCMPricingCalculatorClientResolvedConfigType = __SmithyResolvedConfi
|
|
|
205
205
|
export interface BCMPricingCalculatorClientResolvedConfig extends BCMPricingCalculatorClientResolvedConfigType {
|
|
206
206
|
}
|
|
207
207
|
/**
|
|
208
|
-
* <p>
|
|
209
|
-
* You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and
|
|
210
|
-
* Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences.
|
|
211
|
-
* </p>
|
|
212
|
-
* <p>The Pricing Calculator API provides the following endpoint:</p>
|
|
213
|
-
* <ul>
|
|
214
|
-
* <li>
|
|
215
|
-
* <p>
|
|
216
|
-
* <code>https://bcm-pricing-calculator.us-east-1.api.aws</code>
|
|
217
|
-
* </p>
|
|
218
|
-
* </li>
|
|
219
|
-
* </ul>
|
|
208
|
+
* <p> You can use the Pricing Calculator API to programmatically create estimates for your planned cloud use. You can model usage and commitments such as Savings Plans and Reserved Instances, and generate estimated costs using your discounts and benefit sharing preferences. </p> <p>The Pricing Calculator API provides the following endpoint:</p> <ul> <li> <p> <code>https://bcm-pricing-calculator.us-east-1.api.aws</code> </p> </li> </ul>
|
|
220
209
|
* @public
|
|
221
210
|
*/
|
|
222
211
|
export declare class BCMPricingCalculatorClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BCMPricingCalculatorClientResolvedConfig> {
|
|
@@ -27,13 +27,7 @@ declare const BatchCreateBillScenarioCommitmentModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Create Compute Savings Plans, EC2 Instance Savings Plans, or EC2 Reserved Instances commitments that you want to model in a Bill Scenario.
|
|
32
|
-
* </p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>The <code>BatchCreateBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
35
|
-
* include the permission <code>bcm-pricing-calculator:CreateBillScenarioCommitmentModification</code> in your policies.</p>
|
|
36
|
-
* </note>
|
|
30
|
+
* <p> Create Compute Savings Plans, EC2 Instance Savings Plans, or EC2 Reserved Instances commitments that you want to model in a Bill Scenario. </p> <note> <p>The <code>BatchCreateBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:CreateBillScenarioCommitmentModification</code> in your policies.</p> </note>
|
|
37
31
|
* @example
|
|
38
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
33
|
* ```javascript
|
|
@@ -112,39 +106,25 @@ declare const BatchCreateBillScenarioCommitmentModificationCommand_base: {
|
|
|
112
106
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
113
107
|
*
|
|
114
108
|
* @throws {@link ConflictException} (client fault)
|
|
115
|
-
* <p>
|
|
116
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
117
|
-
* </p>
|
|
109
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
118
110
|
*
|
|
119
111
|
* @throws {@link DataUnavailableException} (client fault)
|
|
120
|
-
* <p>
|
|
121
|
-
* The requested data is currently unavailable.
|
|
122
|
-
* </p>
|
|
112
|
+
* <p> The requested data is currently unavailable. </p>
|
|
123
113
|
*
|
|
124
114
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
125
|
-
* <p>
|
|
126
|
-
* The specified resource was not found.
|
|
127
|
-
* </p>
|
|
115
|
+
* <p> The specified resource was not found. </p>
|
|
128
116
|
*
|
|
129
117
|
* @throws {@link AccessDeniedException} (client fault)
|
|
130
|
-
* <p>
|
|
131
|
-
* You do not have sufficient access to perform this action.
|
|
132
|
-
* </p>
|
|
118
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
133
119
|
*
|
|
134
120
|
* @throws {@link InternalServerException} (server fault)
|
|
135
|
-
* <p>
|
|
136
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
137
|
-
* </p>
|
|
121
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
138
122
|
*
|
|
139
123
|
* @throws {@link ThrottlingException} (client fault)
|
|
140
|
-
* <p>
|
|
141
|
-
* The request was denied due to request throttling.
|
|
142
|
-
* </p>
|
|
124
|
+
* <p> The request was denied due to request throttling. </p>
|
|
143
125
|
*
|
|
144
126
|
* @throws {@link ValidationException} (client fault)
|
|
145
|
-
* <p>
|
|
146
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
147
|
-
* </p>
|
|
127
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
148
128
|
*
|
|
149
129
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
150
130
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,13 +27,7 @@ declare const BatchCreateBillScenarioUsageModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Create Amazon Web Services service usage that you want to model in a Bill Scenario.
|
|
32
|
-
* </p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>The <code>BatchCreateBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
35
|
-
* include the permission <code>bcm-pricing-calculator:CreateBillScenarioUsageModification</code> in your policies.</p>
|
|
36
|
-
* </note>
|
|
30
|
+
* <p> Create Amazon Web Services service usage that you want to model in a Bill Scenario. </p> <note> <p>The <code>BatchCreateBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:CreateBillScenarioUsageModification</code> in your policies.</p> </note>
|
|
37
31
|
* @example
|
|
38
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
33
|
* ```javascript
|
|
@@ -230,44 +224,28 @@ declare const BatchCreateBillScenarioUsageModificationCommand_base: {
|
|
|
230
224
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
231
225
|
*
|
|
232
226
|
* @throws {@link ConflictException} (client fault)
|
|
233
|
-
* <p>
|
|
234
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
235
|
-
* </p>
|
|
227
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
236
228
|
*
|
|
237
229
|
* @throws {@link DataUnavailableException} (client fault)
|
|
238
|
-
* <p>
|
|
239
|
-
* The requested data is currently unavailable.
|
|
240
|
-
* </p>
|
|
230
|
+
* <p> The requested data is currently unavailable. </p>
|
|
241
231
|
*
|
|
242
232
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
243
|
-
* <p>
|
|
244
|
-
* The specified resource was not found.
|
|
245
|
-
* </p>
|
|
233
|
+
* <p> The specified resource was not found. </p>
|
|
246
234
|
*
|
|
247
235
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
248
|
-
* <p>
|
|
249
|
-
* The request would cause you to exceed your service quota.
|
|
250
|
-
* </p>
|
|
236
|
+
* <p> The request would cause you to exceed your service quota. </p>
|
|
251
237
|
*
|
|
252
238
|
* @throws {@link AccessDeniedException} (client fault)
|
|
253
|
-
* <p>
|
|
254
|
-
* You do not have sufficient access to perform this action.
|
|
255
|
-
* </p>
|
|
239
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
256
240
|
*
|
|
257
241
|
* @throws {@link InternalServerException} (server fault)
|
|
258
|
-
* <p>
|
|
259
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
260
|
-
* </p>
|
|
242
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
261
243
|
*
|
|
262
244
|
* @throws {@link ThrottlingException} (client fault)
|
|
263
|
-
* <p>
|
|
264
|
-
* The request was denied due to request throttling.
|
|
265
|
-
* </p>
|
|
245
|
+
* <p> The request was denied due to request throttling. </p>
|
|
266
246
|
*
|
|
267
247
|
* @throws {@link ValidationException} (client fault)
|
|
268
|
-
* <p>
|
|
269
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
270
|
-
* </p>
|
|
248
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
271
249
|
*
|
|
272
250
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
273
251
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,13 +27,7 @@ declare const BatchCreateWorkloadEstimateUsageCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Create Amazon Web Services service usage that you want to model in a Workload Estimate.
|
|
32
|
-
* </p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>The <code>BatchCreateWorkloadEstimateUsage</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
35
|
-
* include the permission <code>bcm-pricing-calculator:CreateWorkloadEstimateUsage</code> in your policies.</p>
|
|
36
|
-
* </note>
|
|
30
|
+
* <p> Create Amazon Web Services service usage that you want to model in a Workload Estimate. </p> <note> <p>The <code>BatchCreateWorkloadEstimateUsage</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:CreateWorkloadEstimateUsage</code> in your policies.</p> </note>
|
|
37
31
|
* @example
|
|
38
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
33
|
* ```javascript
|
|
@@ -223,44 +217,28 @@ declare const BatchCreateWorkloadEstimateUsageCommand_base: {
|
|
|
223
217
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
224
218
|
*
|
|
225
219
|
* @throws {@link ConflictException} (client fault)
|
|
226
|
-
* <p>
|
|
227
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
228
|
-
* </p>
|
|
220
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
229
221
|
*
|
|
230
222
|
* @throws {@link DataUnavailableException} (client fault)
|
|
231
|
-
* <p>
|
|
232
|
-
* The requested data is currently unavailable.
|
|
233
|
-
* </p>
|
|
223
|
+
* <p> The requested data is currently unavailable. </p>
|
|
234
224
|
*
|
|
235
225
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
236
|
-
* <p>
|
|
237
|
-
* The specified resource was not found.
|
|
238
|
-
* </p>
|
|
226
|
+
* <p> The specified resource was not found. </p>
|
|
239
227
|
*
|
|
240
228
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
241
|
-
* <p>
|
|
242
|
-
* The request would cause you to exceed your service quota.
|
|
243
|
-
* </p>
|
|
229
|
+
* <p> The request would cause you to exceed your service quota. </p>
|
|
244
230
|
*
|
|
245
231
|
* @throws {@link AccessDeniedException} (client fault)
|
|
246
|
-
* <p>
|
|
247
|
-
* You do not have sufficient access to perform this action.
|
|
248
|
-
* </p>
|
|
232
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
249
233
|
*
|
|
250
234
|
* @throws {@link InternalServerException} (server fault)
|
|
251
|
-
* <p>
|
|
252
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
253
|
-
* </p>
|
|
235
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
254
236
|
*
|
|
255
237
|
* @throws {@link ThrottlingException} (client fault)
|
|
256
|
-
* <p>
|
|
257
|
-
* The request was denied due to request throttling.
|
|
258
|
-
* </p>
|
|
238
|
+
* <p> The request was denied due to request throttling. </p>
|
|
259
239
|
*
|
|
260
240
|
* @throws {@link ValidationException} (client fault)
|
|
261
|
-
* <p>
|
|
262
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
263
|
-
* </p>
|
|
241
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
264
242
|
*
|
|
265
243
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
266
244
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,18 +27,7 @@ declare const BatchDeleteBillScenarioCommitmentModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Delete commitment that you have created in a Bill Scenario. You can only delete a commitment that you had
|
|
32
|
-
* added and cannot model deletion (or removal) of a existing commitment. If you want model deletion of an existing
|
|
33
|
-
* commitment, see the negate <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BillScenarioCommitmentModificationAction.html">
|
|
34
|
-
* BillScenarioCommitmentModificationAction</a> of
|
|
35
|
-
* <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchCreateBillScenarioUsageModification.html">
|
|
36
|
-
* BatchCreateBillScenarioCommitmentModification</a> operation.
|
|
37
|
-
* </p>
|
|
38
|
-
* <note>
|
|
39
|
-
* <p>The <code>BatchDeleteBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
40
|
-
* include the permission <code>bcm-pricing-calculator:DeleteBillScenarioCommitmentModification</code> in your policies.</p>
|
|
41
|
-
* </note>
|
|
30
|
+
* <p> Delete commitment that you have created in a Bill Scenario. You can only delete a commitment that you had added and cannot model deletion (or removal) of a existing commitment. If you want model deletion of an existing commitment, see the negate <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BillScenarioCommitmentModificationAction.html"> BillScenarioCommitmentModificationAction</a> of <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchCreateBillScenarioUsageModification.html"> BatchCreateBillScenarioCommitmentModification</a> operation. </p> <note> <p>The <code>BatchDeleteBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:DeleteBillScenarioCommitmentModification</code> in your policies.</p> </note>
|
|
42
31
|
* @example
|
|
43
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
33
|
* ```javascript
|
|
@@ -72,39 +61,25 @@ declare const BatchDeleteBillScenarioCommitmentModificationCommand_base: {
|
|
|
72
61
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
73
62
|
*
|
|
74
63
|
* @throws {@link ConflictException} (client fault)
|
|
75
|
-
* <p>
|
|
76
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
77
|
-
* </p>
|
|
64
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
78
65
|
*
|
|
79
66
|
* @throws {@link DataUnavailableException} (client fault)
|
|
80
|
-
* <p>
|
|
81
|
-
* The requested data is currently unavailable.
|
|
82
|
-
* </p>
|
|
67
|
+
* <p> The requested data is currently unavailable. </p>
|
|
83
68
|
*
|
|
84
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
|
-
* <p>
|
|
86
|
-
* The specified resource was not found.
|
|
87
|
-
* </p>
|
|
70
|
+
* <p> The specified resource was not found. </p>
|
|
88
71
|
*
|
|
89
72
|
* @throws {@link AccessDeniedException} (client fault)
|
|
90
|
-
* <p>
|
|
91
|
-
* You do not have sufficient access to perform this action.
|
|
92
|
-
* </p>
|
|
73
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
93
74
|
*
|
|
94
75
|
* @throws {@link InternalServerException} (server fault)
|
|
95
|
-
* <p>
|
|
96
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
97
|
-
* </p>
|
|
76
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
98
77
|
*
|
|
99
78
|
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
-
* <p>
|
|
101
|
-
* The request was denied due to request throttling.
|
|
102
|
-
* </p>
|
|
79
|
+
* <p> The request was denied due to request throttling. </p>
|
|
103
80
|
*
|
|
104
81
|
* @throws {@link ValidationException} (client fault)
|
|
105
|
-
* <p>
|
|
106
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
107
|
-
* </p>
|
|
82
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
108
83
|
*
|
|
109
84
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
110
85
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,16 +27,7 @@ declare const BatchDeleteBillScenarioUsageModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Delete usage that you have created in a Bill Scenario. You can only delete usage that you had added and cannot model
|
|
32
|
-
* deletion (or removal) of a existing usage. If you want model removal of an existing usage, see
|
|
33
|
-
* <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateBillScenarioUsageModification.html">
|
|
34
|
-
* BatchUpdateBillScenarioUsageModification</a>.
|
|
35
|
-
* </p>
|
|
36
|
-
* <note>
|
|
37
|
-
* <p>The <code>BatchDeleteBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
38
|
-
* include the permission <code>bcm-pricing-calculator:DeleteBillScenarioUsageModification</code> in your policies.</p>
|
|
39
|
-
* </note>
|
|
30
|
+
* <p> Delete usage that you have created in a Bill Scenario. You can only delete usage that you had added and cannot model deletion (or removal) of a existing usage. If you want model removal of an existing usage, see <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateBillScenarioUsageModification.html"> BatchUpdateBillScenarioUsageModification</a>. </p> <note> <p>The <code>BatchDeleteBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:DeleteBillScenarioUsageModification</code> in your policies.</p> </note>
|
|
40
31
|
* @example
|
|
41
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
42
33
|
* ```javascript
|
|
@@ -70,44 +61,28 @@ declare const BatchDeleteBillScenarioUsageModificationCommand_base: {
|
|
|
70
61
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
71
62
|
*
|
|
72
63
|
* @throws {@link ConflictException} (client fault)
|
|
73
|
-
* <p>
|
|
74
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
75
|
-
* </p>
|
|
64
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
76
65
|
*
|
|
77
66
|
* @throws {@link DataUnavailableException} (client fault)
|
|
78
|
-
* <p>
|
|
79
|
-
* The requested data is currently unavailable.
|
|
80
|
-
* </p>
|
|
67
|
+
* <p> The requested data is currently unavailable. </p>
|
|
81
68
|
*
|
|
82
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
83
|
-
* <p>
|
|
84
|
-
* The specified resource was not found.
|
|
85
|
-
* </p>
|
|
70
|
+
* <p> The specified resource was not found. </p>
|
|
86
71
|
*
|
|
87
72
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
88
|
-
* <p>
|
|
89
|
-
* The request would cause you to exceed your service quota.
|
|
90
|
-
* </p>
|
|
73
|
+
* <p> The request would cause you to exceed your service quota. </p>
|
|
91
74
|
*
|
|
92
75
|
* @throws {@link AccessDeniedException} (client fault)
|
|
93
|
-
* <p>
|
|
94
|
-
* You do not have sufficient access to perform this action.
|
|
95
|
-
* </p>
|
|
76
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
96
77
|
*
|
|
97
78
|
* @throws {@link InternalServerException} (server fault)
|
|
98
|
-
* <p>
|
|
99
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
100
|
-
* </p>
|
|
79
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
101
80
|
*
|
|
102
81
|
* @throws {@link ThrottlingException} (client fault)
|
|
103
|
-
* <p>
|
|
104
|
-
* The request was denied due to request throttling.
|
|
105
|
-
* </p>
|
|
82
|
+
* <p> The request was denied due to request throttling. </p>
|
|
106
83
|
*
|
|
107
84
|
* @throws {@link ValidationException} (client fault)
|
|
108
|
-
* <p>
|
|
109
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
110
|
-
* </p>
|
|
85
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
111
86
|
*
|
|
112
87
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
113
88
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,16 +27,7 @@ declare const BatchDeleteWorkloadEstimateUsageCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Delete usage that you have created in a Workload estimate. You can only delete usage that you had added and cannot model deletion
|
|
32
|
-
* (or removal) of a existing usage. If you want model removal of an existing usage, see
|
|
33
|
-
* <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateWorkloadEstimateUsage.html">
|
|
34
|
-
* BatchUpdateWorkloadEstimateUsage</a>.
|
|
35
|
-
* </p>
|
|
36
|
-
* <note>
|
|
37
|
-
* <p>The <code>BatchDeleteWorkloadEstimateUsage</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
38
|
-
* include the permission <code>bcm-pricing-calculator:DeleteWorkloadEstimateUsage</code> in your policies.</p>
|
|
39
|
-
* </note>
|
|
30
|
+
* <p> Delete usage that you have created in a Workload estimate. You can only delete usage that you had added and cannot model deletion (or removal) of a existing usage. If you want model removal of an existing usage, see <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AWSBCMPricingCalculator_BatchUpdateWorkloadEstimateUsage.html"> BatchUpdateWorkloadEstimateUsage</a>. </p> <note> <p>The <code>BatchDeleteWorkloadEstimateUsage</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:DeleteWorkloadEstimateUsage</code> in your policies.</p> </note>
|
|
40
31
|
* @example
|
|
41
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
42
33
|
* ```javascript
|
|
@@ -70,39 +61,25 @@ declare const BatchDeleteWorkloadEstimateUsageCommand_base: {
|
|
|
70
61
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
71
62
|
*
|
|
72
63
|
* @throws {@link DataUnavailableException} (client fault)
|
|
73
|
-
* <p>
|
|
74
|
-
* The requested data is currently unavailable.
|
|
75
|
-
* </p>
|
|
64
|
+
* <p> The requested data is currently unavailable. </p>
|
|
76
65
|
*
|
|
77
66
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
|
-
* <p>
|
|
79
|
-
* The specified resource was not found.
|
|
80
|
-
* </p>
|
|
67
|
+
* <p> The specified resource was not found. </p>
|
|
81
68
|
*
|
|
82
69
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
83
|
-
* <p>
|
|
84
|
-
* The request would cause you to exceed your service quota.
|
|
85
|
-
* </p>
|
|
70
|
+
* <p> The request would cause you to exceed your service quota. </p>
|
|
86
71
|
*
|
|
87
72
|
* @throws {@link AccessDeniedException} (client fault)
|
|
88
|
-
* <p>
|
|
89
|
-
* You do not have sufficient access to perform this action.
|
|
90
|
-
* </p>
|
|
73
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
91
74
|
*
|
|
92
75
|
* @throws {@link InternalServerException} (server fault)
|
|
93
|
-
* <p>
|
|
94
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
95
|
-
* </p>
|
|
76
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
96
77
|
*
|
|
97
78
|
* @throws {@link ThrottlingException} (client fault)
|
|
98
|
-
* <p>
|
|
99
|
-
* The request was denied due to request throttling.
|
|
100
|
-
* </p>
|
|
79
|
+
* <p> The request was denied due to request throttling. </p>
|
|
101
80
|
*
|
|
102
81
|
* @throws {@link ValidationException} (client fault)
|
|
103
|
-
* <p>
|
|
104
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
105
|
-
* </p>
|
|
82
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
106
83
|
*
|
|
107
84
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
108
85
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,13 +27,7 @@ declare const BatchUpdateBillScenarioCommitmentModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Update a newly added or existing commitment. You can update the commitment group based on a commitment ID and a Bill scenario ID.
|
|
32
|
-
* </p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>The <code>BatchUpdateBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
35
|
-
* include the permission <code>bcm-pricing-calculator:UpdateBillScenarioCommitmentModification</code> in your policies.</p>
|
|
36
|
-
* </note>
|
|
30
|
+
* <p> Update a newly added or existing commitment. You can update the commitment group based on a commitment ID and a Bill scenario ID. </p> <note> <p>The <code>BatchUpdateBillScenarioCommitmentModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:UpdateBillScenarioCommitmentModification</code> in your policies.</p> </note>
|
|
37
31
|
* @example
|
|
38
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
33
|
* ```javascript
|
|
@@ -93,39 +87,25 @@ declare const BatchUpdateBillScenarioCommitmentModificationCommand_base: {
|
|
|
93
87
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
94
88
|
*
|
|
95
89
|
* @throws {@link ConflictException} (client fault)
|
|
96
|
-
* <p>
|
|
97
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
98
|
-
* </p>
|
|
90
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
99
91
|
*
|
|
100
92
|
* @throws {@link DataUnavailableException} (client fault)
|
|
101
|
-
* <p>
|
|
102
|
-
* The requested data is currently unavailable.
|
|
103
|
-
* </p>
|
|
93
|
+
* <p> The requested data is currently unavailable. </p>
|
|
104
94
|
*
|
|
105
95
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
106
|
-
* <p>
|
|
107
|
-
* The specified resource was not found.
|
|
108
|
-
* </p>
|
|
96
|
+
* <p> The specified resource was not found. </p>
|
|
109
97
|
*
|
|
110
98
|
* @throws {@link AccessDeniedException} (client fault)
|
|
111
|
-
* <p>
|
|
112
|
-
* You do not have sufficient access to perform this action.
|
|
113
|
-
* </p>
|
|
99
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
114
100
|
*
|
|
115
101
|
* @throws {@link InternalServerException} (server fault)
|
|
116
|
-
* <p>
|
|
117
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
118
|
-
* </p>
|
|
102
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
119
103
|
*
|
|
120
104
|
* @throws {@link ThrottlingException} (client fault)
|
|
121
|
-
* <p>
|
|
122
|
-
* The request was denied due to request throttling.
|
|
123
|
-
* </p>
|
|
105
|
+
* <p> The request was denied due to request throttling. </p>
|
|
124
106
|
*
|
|
125
107
|
* @throws {@link ValidationException} (client fault)
|
|
126
|
-
* <p>
|
|
127
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
128
|
-
* </p>
|
|
108
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
129
109
|
*
|
|
130
110
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
131
111
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|
|
@@ -27,13 +27,7 @@ declare const BatchUpdateBillScenarioUsageModificationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Update a newly added or existing usage lines. You can update the usage amounts, usage hour, and usage group based on a usage ID and a Bill scenario ID.
|
|
32
|
-
* </p>
|
|
33
|
-
* <note>
|
|
34
|
-
* <p>The <code>BatchUpdateBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals,
|
|
35
|
-
* include the permission <code>bcm-pricing-calculator:UpdateBillScenarioUsageModification</code> in your policies.</p>
|
|
36
|
-
* </note>
|
|
30
|
+
* <p> Update a newly added or existing usage lines. You can update the usage amounts, usage hour, and usage group based on a usage ID and a Bill scenario ID. </p> <note> <p>The <code>BatchUpdateBillScenarioUsageModification</code> operation doesn't have its own IAM permission. To authorize this operation for Amazon Web Services principals, include the permission <code>bcm-pricing-calculator:UpdateBillScenarioUsageModification</code> in your policies.</p> </note>
|
|
37
31
|
* @example
|
|
38
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
33
|
* ```javascript
|
|
@@ -159,44 +153,28 @@ declare const BatchUpdateBillScenarioUsageModificationCommand_base: {
|
|
|
159
153
|
* @see {@link BCMPricingCalculatorClientResolvedConfig | config} for BCMPricingCalculatorClient's `config` shape.
|
|
160
154
|
*
|
|
161
155
|
* @throws {@link ConflictException} (client fault)
|
|
162
|
-
* <p>
|
|
163
|
-
* The request could not be processed because of conflict in the current state of the resource.
|
|
164
|
-
* </p>
|
|
156
|
+
* <p> The request could not be processed because of conflict in the current state of the resource. </p>
|
|
165
157
|
*
|
|
166
158
|
* @throws {@link DataUnavailableException} (client fault)
|
|
167
|
-
* <p>
|
|
168
|
-
* The requested data is currently unavailable.
|
|
169
|
-
* </p>
|
|
159
|
+
* <p> The requested data is currently unavailable. </p>
|
|
170
160
|
*
|
|
171
161
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
172
|
-
* <p>
|
|
173
|
-
* The specified resource was not found.
|
|
174
|
-
* </p>
|
|
162
|
+
* <p> The specified resource was not found. </p>
|
|
175
163
|
*
|
|
176
164
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
177
|
-
* <p>
|
|
178
|
-
* The request would cause you to exceed your service quota.
|
|
179
|
-
* </p>
|
|
165
|
+
* <p> The request would cause you to exceed your service quota. </p>
|
|
180
166
|
*
|
|
181
167
|
* @throws {@link AccessDeniedException} (client fault)
|
|
182
|
-
* <p>
|
|
183
|
-
* You do not have sufficient access to perform this action.
|
|
184
|
-
* </p>
|
|
168
|
+
* <p> You do not have sufficient access to perform this action. </p>
|
|
185
169
|
*
|
|
186
170
|
* @throws {@link InternalServerException} (server fault)
|
|
187
|
-
* <p>
|
|
188
|
-
* An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support.
|
|
189
|
-
* </p>
|
|
171
|
+
* <p> An internal error has occurred. Retry your request, but if the problem persists, contact Amazon Web Services support. </p>
|
|
190
172
|
*
|
|
191
173
|
* @throws {@link ThrottlingException} (client fault)
|
|
192
|
-
* <p>
|
|
193
|
-
* The request was denied due to request throttling.
|
|
194
|
-
* </p>
|
|
174
|
+
* <p> The request was denied due to request throttling. </p>
|
|
195
175
|
*
|
|
196
176
|
* @throws {@link ValidationException} (client fault)
|
|
197
|
-
* <p>
|
|
198
|
-
* The input provided fails to satisfy the constraints specified by an Amazon Web Services service.
|
|
199
|
-
* </p>
|
|
177
|
+
* <p> The input provided fails to satisfy the constraints specified by an Amazon Web Services service. </p>
|
|
200
178
|
*
|
|
201
179
|
* @throws {@link BCMPricingCalculatorServiceException}
|
|
202
180
|
* <p>Base exception class for all service exceptions from BCMPricingCalculator service.</p>
|