Skip to content

Commit

Permalink
feat(client-cost-explorer): This release adds the Impact field(contai…
Browse files Browse the repository at this point in the history
…ns Contribution field) to the GetAnomalies API response under RootCause
  • Loading branch information
awstools committed Nov 22, 2024
1 parent df75ca5 commit af7c9b2
Show file tree
Hide file tree
Showing 8 changed files with 235 additions and 200 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad
* // Service: "STRING_VALUE",
* // Region: "STRING_VALUE",
* // LinkedAccount: "STRING_VALUE",
* // UsageType: "STRING_VALUE",
* // LinkedAccountName: "STRING_VALUE",
* // UsageType: "STRING_VALUE",
* // Impact: { // RootCauseImpact
* // Contribution: Number("double"), // required
* // },
* // },
* // ],
* // AnomalyScore: { // AnomalyScore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ export interface GetCommitmentPurchaseAnalysisCommandOutput
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
*
* @throws {@link AnalysisNotFoundException} (client fault)
* <p>The requested analysis can't be
* found.</p>
* <p>The requested analysis can't be found.</p>
*
* @throws {@link DataUnavailableException} (client fault)
* <p>The requested data is unavailable.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ export interface ListCommitmentPurchaseAnalysesCommandOutput
__MetadataBearer {}

/**
* <p>Lists the commitment purchase analyses for your account based on the last 30
* days.</p>
* <p>Lists the commitment purchase analyses for your account.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ export interface StartCommitmentPurchaseAnalysisCommandOutput
/**
* <p>Specifies the parameters of a planned commitment purchase and starts the generation of the
* analysis. This enables you to estimate the cost, coverage, and utilization impact of your
* planned commitment purchases. You can request up to 20 analysis runs per
* day.</p>
* planned commitment purchases.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down Expand Up @@ -90,7 +89,7 @@ export interface StartCommitmentPurchaseAnalysisCommandOutput
* <p>The requested data is unavailable.</p>
*
* @throws {@link GenerationExistsException} (client fault)
* <p>A request to generate a recommendation is already in progress.</p>
* <p>A request to generate a recommendation or analysis is already in progress.</p>
*
* @throws {@link LimitExceededException} (client fault)
* <p>You made too many calls in a short period of time. Try again later.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface StartSavingsPlansPurchaseRecommendationGenerationCommandOutput
* <p>The requested data is unavailable.</p>
*
* @throws {@link GenerationExistsException} (client fault)
* <p>A request to generate a recommendation is already in progress.</p>
* <p>A request to generate a recommendation or analysis is already in progress.</p>
*
* @throws {@link LimitExceededException} (client fault)
* <p>You made too many calls in a short period of time. Try again later.</p>
Expand Down
Loading

0 comments on commit af7c9b2

Please sign in to comment.