From 9e021429cfbb1e0774f595d1ddb0459677b16849 Mon Sep 17 00:00:00 2001 From: Brenda Sukh Date: Thu, 25 Feb 2021 00:37:48 -0500 Subject: [PATCH] Add note about methods Signed-off-by: Brenda Sukh --- plugins/cost-insights/contrib/aws-cost-explorer-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/cost-insights/contrib/aws-cost-explorer-api.md b/plugins/cost-insights/contrib/aws-cost-explorer-api.md index b70ff73ccf..2181fb1d52 100644 --- a/plugins/cost-insights/contrib/aws-cost-explorer-api.md +++ b/plugins/cost-insights/contrib/aws-cost-explorer-api.md @@ -73,7 +73,7 @@ try { ## Implementing methods on [CostInsightsApi](https://github.com/backstage/backstage/blob/master/plugins/cost-insights/src/api/CostInsightsApi.ts) -The Cost Explorer SDK allows for easy access to cost data for easier implementation of CostInsightsApi methods such as `getGroupDailyCost`, `getProjectDailyCost`, and `getProductInsights`. +We can use the data provided by the Cost Explorer API to implement CostInsightsApi methods such as `getGroupDailyCost`, `getProjectDailyCost`, and `getProductInsights`. You'll still need to provide external data for methods such as `getUserGroups` and `getAlerts`. ### 1. [getGroupDailyCost](https://github.com/backstage/backstage/blob/master/plugins/cost-insights/src/api/CostInsightsApi.ts#L93)