@aws-sdk/client-cost-explorer 3.295.0 → 3.297.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-types/CostExplorer.d.ts +38 -0
- package/dist-types/CostExplorerClient.d.ts +24 -4
- package/dist-types/commands/CreateAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/CreateAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/CreateCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomaliesCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomalySubscriptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetCostAndUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetCostAndUsageWithResourcesCommand.d.ts +16 -0
- package/dist-types/commands/GetCostCategoriesCommand.d.ts +16 -0
- package/dist-types/commands/GetCostForecastCommand.d.ts +16 -0
- package/dist-types/commands/GetDimensionValuesCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationCoverageCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationPurchaseRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationUtilizationCommand.d.ts +16 -0
- package/dist-types/commands/GetRightsizingRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansCoverageCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansPurchaseRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansUtilizationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansUtilizationDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetTagsCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageForecastCommand.d.ts +16 -0
- package/dist-types/commands/ListCostAllocationTagsCommand.d.ts +16 -0
- package/dist-types/commands/ListCostCategoryDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ProvideAnomalyFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCostAllocationTagsStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/models/CostExplorerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +509 -90
- package/dist-types/pagination/GetSavingsPlansCoveragePaginator.d.ts +3 -0
- package/dist-types/pagination/GetSavingsPlansUtilizationDetailsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCostAllocationTagsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCostCategoryDefinitionsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -38,6 +38,7 @@ import { UpdateCostAllocationTagsStatusCommandInput, UpdateCostAllocationTagsSta
|
|
|
38
38
|
import { UpdateCostCategoryDefinitionCommandInput, UpdateCostCategoryDefinitionCommandOutput } from "./commands/UpdateCostCategoryDefinitionCommand";
|
|
39
39
|
import { CostExplorerClient } from "./CostExplorerClient";
|
|
40
40
|
/**
|
|
41
|
+
* @public
|
|
41
42
|
* <p>You can use the Cost Explorer API to programmatically query your cost and usage data.
|
|
42
43
|
* You can query for aggregated data such as total monthly costs or total daily usage. You can
|
|
43
44
|
* also query for granular data. This might include the number of daily write operations for
|
|
@@ -57,6 +58,7 @@ import { CostExplorerClient } from "./CostExplorerClient";
|
|
|
57
58
|
*/
|
|
58
59
|
export declare class CostExplorer extends CostExplorerClient {
|
|
59
60
|
/**
|
|
61
|
+
* @public
|
|
60
62
|
* <p>Creates a new cost anomaly detection monitor with the requested type and monitor
|
|
61
63
|
* specification. </p>
|
|
62
64
|
*/
|
|
@@ -64,6 +66,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
64
66
|
createAnomalyMonitor(args: CreateAnomalyMonitorCommandInput, cb: (err: any, data?: CreateAnomalyMonitorCommandOutput) => void): void;
|
|
65
67
|
createAnomalyMonitor(args: CreateAnomalyMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnomalyMonitorCommandOutput) => void): void;
|
|
66
68
|
/**
|
|
69
|
+
* @public
|
|
67
70
|
* <p>Adds an alert subscription to a cost anomaly detection monitor. You can use each
|
|
68
71
|
* subscription to define subscribers with email or SNS notifications. Email subscribers can set
|
|
69
72
|
* an absolute or percentage threshold and a time frequency for receiving notifications. </p>
|
|
@@ -72,24 +75,28 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
72
75
|
createAnomalySubscription(args: CreateAnomalySubscriptionCommandInput, cb: (err: any, data?: CreateAnomalySubscriptionCommandOutput) => void): void;
|
|
73
76
|
createAnomalySubscription(args: CreateAnomalySubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnomalySubscriptionCommandOutput) => void): void;
|
|
74
77
|
/**
|
|
78
|
+
* @public
|
|
75
79
|
* <p>Creates a new Cost Category with the requested name and rules.</p>
|
|
76
80
|
*/
|
|
77
81
|
createCostCategoryDefinition(args: CreateCostCategoryDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateCostCategoryDefinitionCommandOutput>;
|
|
78
82
|
createCostCategoryDefinition(args: CreateCostCategoryDefinitionCommandInput, cb: (err: any, data?: CreateCostCategoryDefinitionCommandOutput) => void): void;
|
|
79
83
|
createCostCategoryDefinition(args: CreateCostCategoryDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCostCategoryDefinitionCommandOutput) => void): void;
|
|
80
84
|
/**
|
|
85
|
+
* @public
|
|
81
86
|
* <p>Deletes a cost anomaly monitor. </p>
|
|
82
87
|
*/
|
|
83
88
|
deleteAnomalyMonitor(args: DeleteAnomalyMonitorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnomalyMonitorCommandOutput>;
|
|
84
89
|
deleteAnomalyMonitor(args: DeleteAnomalyMonitorCommandInput, cb: (err: any, data?: DeleteAnomalyMonitorCommandOutput) => void): void;
|
|
85
90
|
deleteAnomalyMonitor(args: DeleteAnomalyMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnomalyMonitorCommandOutput) => void): void;
|
|
86
91
|
/**
|
|
92
|
+
* @public
|
|
87
93
|
* <p>Deletes a cost anomaly subscription. </p>
|
|
88
94
|
*/
|
|
89
95
|
deleteAnomalySubscription(args: DeleteAnomalySubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnomalySubscriptionCommandOutput>;
|
|
90
96
|
deleteAnomalySubscription(args: DeleteAnomalySubscriptionCommandInput, cb: (err: any, data?: DeleteAnomalySubscriptionCommandOutput) => void): void;
|
|
91
97
|
deleteAnomalySubscription(args: DeleteAnomalySubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnomalySubscriptionCommandOutput) => void): void;
|
|
92
98
|
/**
|
|
99
|
+
* @public
|
|
93
100
|
* <p>Deletes a Cost Category. Expenses from this month going forward will no longer be
|
|
94
101
|
* categorized with this Cost Category.</p>
|
|
95
102
|
*/
|
|
@@ -97,6 +104,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
97
104
|
deleteCostCategoryDefinition(args: DeleteCostCategoryDefinitionCommandInput, cb: (err: any, data?: DeleteCostCategoryDefinitionCommandOutput) => void): void;
|
|
98
105
|
deleteCostCategoryDefinition(args: DeleteCostCategoryDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCostCategoryDefinitionCommandOutput) => void): void;
|
|
99
106
|
/**
|
|
107
|
+
* @public
|
|
100
108
|
* <p>Returns the name, Amazon Resource Name (ARN), rules, definition, and effective dates of a
|
|
101
109
|
* Cost Category that's defined in the account.</p>
|
|
102
110
|
* <p>You have the option to use <code>EffectiveOn</code> to return a Cost Category that's
|
|
@@ -108,6 +116,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
108
116
|
describeCostCategoryDefinition(args: DescribeCostCategoryDefinitionCommandInput, cb: (err: any, data?: DescribeCostCategoryDefinitionCommandOutput) => void): void;
|
|
109
117
|
describeCostCategoryDefinition(args: DescribeCostCategoryDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCostCategoryDefinitionCommandOutput) => void): void;
|
|
110
118
|
/**
|
|
119
|
+
* @public
|
|
111
120
|
* <p>Retrieves all of the cost anomalies detected on your account during the time period that's
|
|
112
121
|
* specified by the <code>DateInterval</code> object. Anomalies are available for up to 90
|
|
113
122
|
* days.</p>
|
|
@@ -116,6 +125,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
116
125
|
getAnomalies(args: GetAnomaliesCommandInput, cb: (err: any, data?: GetAnomaliesCommandOutput) => void): void;
|
|
117
126
|
getAnomalies(args: GetAnomaliesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnomaliesCommandOutput) => void): void;
|
|
118
127
|
/**
|
|
128
|
+
* @public
|
|
119
129
|
* <p>Retrieves the cost anomaly monitor definitions for your account. You can filter using a
|
|
120
130
|
* list of cost anomaly monitor Amazon Resource Names (ARNs). </p>
|
|
121
131
|
*/
|
|
@@ -123,6 +133,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
123
133
|
getAnomalyMonitors(args: GetAnomalyMonitorsCommandInput, cb: (err: any, data?: GetAnomalyMonitorsCommandOutput) => void): void;
|
|
124
134
|
getAnomalyMonitors(args: GetAnomalyMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnomalyMonitorsCommandOutput) => void): void;
|
|
125
135
|
/**
|
|
136
|
+
* @public
|
|
126
137
|
* <p>Retrieves the cost anomaly subscription objects for your account. You can filter using a
|
|
127
138
|
* list of cost anomaly monitor Amazon Resource Names (ARNs). </p>
|
|
128
139
|
*/
|
|
@@ -130,6 +141,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
130
141
|
getAnomalySubscriptions(args: GetAnomalySubscriptionsCommandInput, cb: (err: any, data?: GetAnomalySubscriptionsCommandOutput) => void): void;
|
|
131
142
|
getAnomalySubscriptions(args: GetAnomalySubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnomalySubscriptionsCommandOutput) => void): void;
|
|
132
143
|
/**
|
|
144
|
+
* @public
|
|
133
145
|
* <p>Retrieves cost and usage metrics for your account. You can specify which cost and
|
|
134
146
|
* usage-related metric that you want the request to return. For example, you can specify
|
|
135
147
|
* <code>BlendedCosts</code> or <code>UsageQuantity</code>. You can also filter and group your
|
|
@@ -142,6 +154,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
142
154
|
getCostAndUsage(args: GetCostAndUsageCommandInput, cb: (err: any, data?: GetCostAndUsageCommandOutput) => void): void;
|
|
143
155
|
getCostAndUsage(args: GetCostAndUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostAndUsageCommandOutput) => void): void;
|
|
144
156
|
/**
|
|
157
|
+
* @public
|
|
145
158
|
* <p>Retrieves cost and usage metrics with resources for your account. You can specify which
|
|
146
159
|
* cost and usage-related metric, such as <code>BlendedCosts</code> or
|
|
147
160
|
* <code>UsageQuantity</code>, that you want the request to return. You can also filter and group
|
|
@@ -159,6 +172,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
159
172
|
getCostAndUsageWithResources(args: GetCostAndUsageWithResourcesCommandInput, cb: (err: any, data?: GetCostAndUsageWithResourcesCommandOutput) => void): void;
|
|
160
173
|
getCostAndUsageWithResources(args: GetCostAndUsageWithResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostAndUsageWithResourcesCommandOutput) => void): void;
|
|
161
174
|
/**
|
|
175
|
+
* @public
|
|
162
176
|
* <p>Retrieves an array of Cost Category names and values incurred cost.</p>
|
|
163
177
|
* <note>
|
|
164
178
|
* <p>If some Cost Category names and values are not associated with any cost, they will not
|
|
@@ -169,6 +183,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
169
183
|
getCostCategories(args: GetCostCategoriesCommandInput, cb: (err: any, data?: GetCostCategoriesCommandOutput) => void): void;
|
|
170
184
|
getCostCategories(args: GetCostCategoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostCategoriesCommandOutput) => void): void;
|
|
171
185
|
/**
|
|
186
|
+
* @public
|
|
172
187
|
* <p>Retrieves a forecast for how much Amazon Web Services predicts that you will spend over
|
|
173
188
|
* the forecast time period that you select, based on your past costs. </p>
|
|
174
189
|
*/
|
|
@@ -176,6 +191,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
176
191
|
getCostForecast(args: GetCostForecastCommandInput, cb: (err: any, data?: GetCostForecastCommandOutput) => void): void;
|
|
177
192
|
getCostForecast(args: GetCostForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostForecastCommandOutput) => void): void;
|
|
178
193
|
/**
|
|
194
|
+
* @public
|
|
179
195
|
* <p>Retrieves all available filter values for a specified filter over a period of time. You
|
|
180
196
|
* can search the dimension values for an arbitrary string. </p>
|
|
181
197
|
*/
|
|
@@ -183,6 +199,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
183
199
|
getDimensionValues(args: GetDimensionValuesCommandInput, cb: (err: any, data?: GetDimensionValuesCommandOutput) => void): void;
|
|
184
200
|
getDimensionValues(args: GetDimensionValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDimensionValuesCommandOutput) => void): void;
|
|
185
201
|
/**
|
|
202
|
+
* @public
|
|
186
203
|
* <p>Retrieves the reservation coverage for your account, which you can use to see how much
|
|
187
204
|
* of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service,
|
|
188
205
|
* or Amazon Redshift usage is covered by a reservation. An organization's management account can
|
|
@@ -234,6 +251,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
234
251
|
getReservationCoverage(args: GetReservationCoverageCommandInput, cb: (err: any, data?: GetReservationCoverageCommandOutput) => void): void;
|
|
235
252
|
getReservationCoverage(args: GetReservationCoverageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservationCoverageCommandOutput) => void): void;
|
|
236
253
|
/**
|
|
254
|
+
* @public
|
|
237
255
|
* <p>Gets recommendations for reservation purchases. These recommendations might help you to
|
|
238
256
|
* reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to
|
|
239
257
|
* On-Demand pricing.</p>
|
|
@@ -255,6 +273,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
255
273
|
getReservationPurchaseRecommendation(args: GetReservationPurchaseRecommendationCommandInput, cb: (err: any, data?: GetReservationPurchaseRecommendationCommandOutput) => void): void;
|
|
256
274
|
getReservationPurchaseRecommendation(args: GetReservationPurchaseRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservationPurchaseRecommendationCommandOutput) => void): void;
|
|
257
275
|
/**
|
|
276
|
+
* @public
|
|
258
277
|
* <p>Retrieves the reservation utilization for your account. Management account in an
|
|
259
278
|
* organization have access to member accounts. You can filter data by dimensions in a time
|
|
260
279
|
* period. You can use <code>GetDimensionValues</code> to determine the possible dimension
|
|
@@ -264,6 +283,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
264
283
|
getReservationUtilization(args: GetReservationUtilizationCommandInput, cb: (err: any, data?: GetReservationUtilizationCommandOutput) => void): void;
|
|
265
284
|
getReservationUtilization(args: GetReservationUtilizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservationUtilizationCommandOutput) => void): void;
|
|
266
285
|
/**
|
|
286
|
+
* @public
|
|
267
287
|
* <p>Creates recommendations that help you save cost by identifying idle and underutilized
|
|
268
288
|
* Amazon EC2 instances.</p>
|
|
269
289
|
* <p>Recommendations are generated to either downsize or terminate instances, along with
|
|
@@ -274,6 +294,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
274
294
|
getRightsizingRecommendation(args: GetRightsizingRecommendationCommandInput, cb: (err: any, data?: GetRightsizingRecommendationCommandOutput) => void): void;
|
|
275
295
|
getRightsizingRecommendation(args: GetRightsizingRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRightsizingRecommendationCommandOutput) => void): void;
|
|
276
296
|
/**
|
|
297
|
+
* @public
|
|
277
298
|
* <p>Retrieves the Savings Plans covered for your account. This enables you to see how much of
|
|
278
299
|
* your cost is covered by a Savings Plan. An organization’s management account can see the
|
|
279
300
|
* coverage of the associated member accounts. This supports dimensions, Cost Categories, and
|
|
@@ -308,6 +329,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
308
329
|
getSavingsPlansCoverage(args: GetSavingsPlansCoverageCommandInput, cb: (err: any, data?: GetSavingsPlansCoverageCommandOutput) => void): void;
|
|
309
330
|
getSavingsPlansCoverage(args: GetSavingsPlansCoverageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSavingsPlansCoverageCommandOutput) => void): void;
|
|
310
331
|
/**
|
|
332
|
+
* @public
|
|
311
333
|
* <p>Retrieves the Savings Plans recommendations for your account. First use
|
|
312
334
|
* <code>StartSavingsPlansPurchaseRecommendationGeneration</code> to generate a new set of
|
|
313
335
|
* recommendations, and then use <code>GetSavingsPlansPurchaseRecommendation</code> to retrieve
|
|
@@ -317,6 +339,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
317
339
|
getSavingsPlansPurchaseRecommendation(args: GetSavingsPlansPurchaseRecommendationCommandInput, cb: (err: any, data?: GetSavingsPlansPurchaseRecommendationCommandOutput) => void): void;
|
|
318
340
|
getSavingsPlansPurchaseRecommendation(args: GetSavingsPlansPurchaseRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSavingsPlansPurchaseRecommendationCommandOutput) => void): void;
|
|
319
341
|
/**
|
|
342
|
+
* @public
|
|
320
343
|
* <p>Retrieves the Savings Plans utilization for your account across date ranges with daily or
|
|
321
344
|
* monthly granularity. Management account in an organization have access to member accounts. You
|
|
322
345
|
* can use <code>GetDimensionValues</code> in <code>SAVINGS_PLANS</code> to determine the
|
|
@@ -330,6 +353,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
330
353
|
getSavingsPlansUtilization(args: GetSavingsPlansUtilizationCommandInput, cb: (err: any, data?: GetSavingsPlansUtilizationCommandOutput) => void): void;
|
|
331
354
|
getSavingsPlansUtilization(args: GetSavingsPlansUtilizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSavingsPlansUtilizationCommandOutput) => void): void;
|
|
332
355
|
/**
|
|
356
|
+
* @public
|
|
333
357
|
* <p>Retrieves attribute data along with aggregate utilization and savings data for a given
|
|
334
358
|
* time period. This doesn't support granular or grouped data (daily/monthly) in response. You
|
|
335
359
|
* can't retrieve data by dates in a single response similar to
|
|
@@ -347,6 +371,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
347
371
|
getSavingsPlansUtilizationDetails(args: GetSavingsPlansUtilizationDetailsCommandInput, cb: (err: any, data?: GetSavingsPlansUtilizationDetailsCommandOutput) => void): void;
|
|
348
372
|
getSavingsPlansUtilizationDetails(args: GetSavingsPlansUtilizationDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSavingsPlansUtilizationDetailsCommandOutput) => void): void;
|
|
349
373
|
/**
|
|
374
|
+
* @public
|
|
350
375
|
* <p>Queries for available tag keys and tag values for a specified period. You can search
|
|
351
376
|
* the tag values for an arbitrary string. </p>
|
|
352
377
|
*/
|
|
@@ -354,6 +379,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
354
379
|
getTags(args: GetTagsCommandInput, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
355
380
|
getTags(args: GetTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
356
381
|
/**
|
|
382
|
+
* @public
|
|
357
383
|
* <p>Retrieves a forecast for how much Amazon Web Services predicts that you will use
|
|
358
384
|
* over the forecast time period that you select, based on your past usage. </p>
|
|
359
385
|
*/
|
|
@@ -361,6 +387,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
361
387
|
getUsageForecast(args: GetUsageForecastCommandInput, cb: (err: any, data?: GetUsageForecastCommandOutput) => void): void;
|
|
362
388
|
getUsageForecast(args: GetUsageForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsageForecastCommandOutput) => void): void;
|
|
363
389
|
/**
|
|
390
|
+
* @public
|
|
364
391
|
* <p>Get a list of cost allocation tags. All inputs in the API are optional and serve as
|
|
365
392
|
* filters. By default, all cost allocation tags are returned. </p>
|
|
366
393
|
*/
|
|
@@ -368,6 +395,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
368
395
|
listCostAllocationTags(args: ListCostAllocationTagsCommandInput, cb: (err: any, data?: ListCostAllocationTagsCommandOutput) => void): void;
|
|
369
396
|
listCostAllocationTags(args: ListCostAllocationTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCostAllocationTagsCommandOutput) => void): void;
|
|
370
397
|
/**
|
|
398
|
+
* @public
|
|
371
399
|
* <p>Returns the name, Amazon Resource Name (ARN), <code>NumberOfRules</code> and effective
|
|
372
400
|
* dates of all Cost Categories defined in the account. You have the option to use
|
|
373
401
|
* <code>EffectiveOn</code> to return a list of Cost Categories that were active on a specific
|
|
@@ -380,6 +408,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
380
408
|
listCostCategoryDefinitions(args: ListCostCategoryDefinitionsCommandInput, cb: (err: any, data?: ListCostCategoryDefinitionsCommandOutput) => void): void;
|
|
381
409
|
listCostCategoryDefinitions(args: ListCostCategoryDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCostCategoryDefinitionsCommandOutput) => void): void;
|
|
382
410
|
/**
|
|
411
|
+
* @public
|
|
383
412
|
* <p>Retrieves a list of your historical recommendation generations within the past 30
|
|
384
413
|
* days.</p>
|
|
385
414
|
*/
|
|
@@ -387,6 +416,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
387
416
|
listSavingsPlansPurchaseRecommendationGeneration(args: ListSavingsPlansPurchaseRecommendationGenerationCommandInput, cb: (err: any, data?: ListSavingsPlansPurchaseRecommendationGenerationCommandOutput) => void): void;
|
|
388
417
|
listSavingsPlansPurchaseRecommendationGeneration(args: ListSavingsPlansPurchaseRecommendationGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSavingsPlansPurchaseRecommendationGenerationCommandOutput) => void): void;
|
|
389
418
|
/**
|
|
419
|
+
* @public
|
|
390
420
|
* <p>Returns a list of resource tags associated with the resource specified by the Amazon
|
|
391
421
|
* Resource Name (ARN). </p>
|
|
392
422
|
*/
|
|
@@ -394,12 +424,14 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
394
424
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
395
425
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
396
426
|
/**
|
|
427
|
+
* @public
|
|
397
428
|
* <p>Modifies the feedback property of a given cost anomaly. </p>
|
|
398
429
|
*/
|
|
399
430
|
provideAnomalyFeedback(args: ProvideAnomalyFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<ProvideAnomalyFeedbackCommandOutput>;
|
|
400
431
|
provideAnomalyFeedback(args: ProvideAnomalyFeedbackCommandInput, cb: (err: any, data?: ProvideAnomalyFeedbackCommandOutput) => void): void;
|
|
401
432
|
provideAnomalyFeedback(args: ProvideAnomalyFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ProvideAnomalyFeedbackCommandOutput) => void): void;
|
|
402
433
|
/**
|
|
434
|
+
* @public
|
|
403
435
|
* <p>Requests a Savings Plans recommendation generation. This enables you to calculate a fresh
|
|
404
436
|
* set of Savings Plans recommendations that takes your latest usage data and current Savings
|
|
405
437
|
* Plans inventory into account. You can refresh Savings Plans recommendations up to three times
|
|
@@ -414,6 +446,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
414
446
|
startSavingsPlansPurchaseRecommendationGeneration(args: StartSavingsPlansPurchaseRecommendationGenerationCommandInput, cb: (err: any, data?: StartSavingsPlansPurchaseRecommendationGenerationCommandOutput) => void): void;
|
|
415
447
|
startSavingsPlansPurchaseRecommendationGeneration(args: StartSavingsPlansPurchaseRecommendationGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSavingsPlansPurchaseRecommendationGenerationCommandOutput) => void): void;
|
|
416
448
|
/**
|
|
449
|
+
* @public
|
|
417
450
|
* <p>An API operation for adding one or more tags (key-value pairs) to a resource.</p>
|
|
418
451
|
* <p>You can use the <code>TagResource</code> operation with a resource that already has tags.
|
|
419
452
|
* If you specify a new tag key for the resource, this tag is appended to the list of tags
|
|
@@ -426,6 +459,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
426
459
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
427
460
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
428
461
|
/**
|
|
462
|
+
* @public
|
|
429
463
|
* <p>Removes one or more tags from a resource. Specify only tag keys in your request. Don't
|
|
430
464
|
* specify the value. </p>
|
|
431
465
|
*/
|
|
@@ -433,6 +467,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
433
467
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
434
468
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
435
469
|
/**
|
|
470
|
+
* @public
|
|
436
471
|
* <p>Updates an existing cost anomaly monitor. The changes made are applied going forward, and
|
|
437
472
|
* doesn't change anomalies detected in the past. </p>
|
|
438
473
|
*/
|
|
@@ -440,12 +475,14 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
440
475
|
updateAnomalyMonitor(args: UpdateAnomalyMonitorCommandInput, cb: (err: any, data?: UpdateAnomalyMonitorCommandOutput) => void): void;
|
|
441
476
|
updateAnomalyMonitor(args: UpdateAnomalyMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnomalyMonitorCommandOutput) => void): void;
|
|
442
477
|
/**
|
|
478
|
+
* @public
|
|
443
479
|
* <p>Updates an existing cost anomaly monitor subscription. </p>
|
|
444
480
|
*/
|
|
445
481
|
updateAnomalySubscription(args: UpdateAnomalySubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnomalySubscriptionCommandOutput>;
|
|
446
482
|
updateAnomalySubscription(args: UpdateAnomalySubscriptionCommandInput, cb: (err: any, data?: UpdateAnomalySubscriptionCommandOutput) => void): void;
|
|
447
483
|
updateAnomalySubscription(args: UpdateAnomalySubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnomalySubscriptionCommandOutput) => void): void;
|
|
448
484
|
/**
|
|
485
|
+
* @public
|
|
449
486
|
* <p>Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag
|
|
450
487
|
* status that's updated is the same as the existing tag status, the request doesn't fail.
|
|
451
488
|
* Instead, it doesn't have any effect on the tag status (for example, activating the active
|
|
@@ -455,6 +492,7 @@ export declare class CostExplorer extends CostExplorerClient {
|
|
|
455
492
|
updateCostAllocationTagsStatus(args: UpdateCostAllocationTagsStatusCommandInput, cb: (err: any, data?: UpdateCostAllocationTagsStatusCommandOutput) => void): void;
|
|
456
493
|
updateCostAllocationTagsStatus(args: UpdateCostAllocationTagsStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCostAllocationTagsStatusCommandOutput) => void): void;
|
|
457
494
|
/**
|
|
495
|
+
* @public
|
|
458
496
|
* <p>Updates an existing Cost Category. Changes made to the Cost Category rules will be used to
|
|
459
497
|
* categorize the current month’s expenses and future expenses. This won’t change categorization
|
|
460
498
|
* for the previous months.</p>
|
|
@@ -45,15 +45,24 @@ import { UpdateAnomalySubscriptionCommandInput, UpdateAnomalySubscriptionCommand
|
|
|
45
45
|
import { UpdateCostAllocationTagsStatusCommandInput, UpdateCostAllocationTagsStatusCommandOutput } from "./commands/UpdateCostAllocationTagsStatusCommand";
|
|
46
46
|
import { UpdateCostCategoryDefinitionCommandInput, UpdateCostCategoryDefinitionCommandOutput } from "./commands/UpdateCostCategoryDefinitionCommand";
|
|
47
47
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
48
51
|
export type ServiceInputTypes = CreateAnomalyMonitorCommandInput | CreateAnomalySubscriptionCommandInput | CreateCostCategoryDefinitionCommandInput | DeleteAnomalyMonitorCommandInput | DeleteAnomalySubscriptionCommandInput | DeleteCostCategoryDefinitionCommandInput | DescribeCostCategoryDefinitionCommandInput | GetAnomaliesCommandInput | GetAnomalyMonitorsCommandInput | GetAnomalySubscriptionsCommandInput | GetCostAndUsageCommandInput | GetCostAndUsageWithResourcesCommandInput | GetCostCategoriesCommandInput | GetCostForecastCommandInput | GetDimensionValuesCommandInput | GetReservationCoverageCommandInput | GetReservationPurchaseRecommendationCommandInput | GetReservationUtilizationCommandInput | GetRightsizingRecommendationCommandInput | GetSavingsPlansCoverageCommandInput | GetSavingsPlansPurchaseRecommendationCommandInput | GetSavingsPlansUtilizationCommandInput | GetSavingsPlansUtilizationDetailsCommandInput | GetTagsCommandInput | GetUsageForecastCommandInput | ListCostAllocationTagsCommandInput | ListCostCategoryDefinitionsCommandInput | ListSavingsPlansPurchaseRecommendationGenerationCommandInput | ListTagsForResourceCommandInput | ProvideAnomalyFeedbackCommandInput | StartSavingsPlansPurchaseRecommendationGenerationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnomalyMonitorCommandInput | UpdateAnomalySubscriptionCommandInput | UpdateCostAllocationTagsStatusCommandInput | UpdateCostCategoryDefinitionCommandInput;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
49
55
|
export type ServiceOutputTypes = CreateAnomalyMonitorCommandOutput | CreateAnomalySubscriptionCommandOutput | CreateCostCategoryDefinitionCommandOutput | DeleteAnomalyMonitorCommandOutput | DeleteAnomalySubscriptionCommandOutput | DeleteCostCategoryDefinitionCommandOutput | DescribeCostCategoryDefinitionCommandOutput | GetAnomaliesCommandOutput | GetAnomalyMonitorsCommandOutput | GetAnomalySubscriptionsCommandOutput | GetCostAndUsageCommandOutput | GetCostAndUsageWithResourcesCommandOutput | GetCostCategoriesCommandOutput | GetCostForecastCommandOutput | GetDimensionValuesCommandOutput | GetReservationCoverageCommandOutput | GetReservationPurchaseRecommendationCommandOutput | GetReservationUtilizationCommandOutput | GetRightsizingRecommendationCommandOutput | GetSavingsPlansCoverageCommandOutput | GetSavingsPlansPurchaseRecommendationCommandOutput | GetSavingsPlansUtilizationCommandOutput | GetSavingsPlansUtilizationDetailsCommandOutput | GetTagsCommandOutput | GetUsageForecastCommandOutput | ListCostAllocationTagsCommandOutput | ListCostCategoryDefinitionsCommandOutput | ListSavingsPlansPurchaseRecommendationGenerationCommandOutput | ListTagsForResourceCommandOutput | ProvideAnomalyFeedbackCommandOutput | StartSavingsPlansPurchaseRecommendationGenerationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnomalyMonitorCommandOutput | UpdateAnomalySubscriptionCommandOutput | UpdateCostAllocationTagsStatusCommandOutput | UpdateCostCategoryDefinitionCommandOutput;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
50
59
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
51
60
|
/**
|
|
52
61
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
53
62
|
*/
|
|
54
63
|
requestHandler?: __HttpHandler;
|
|
55
64
|
/**
|
|
56
|
-
* A constructor for a class implementing the {@link
|
|
65
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
57
66
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
58
67
|
* @internal
|
|
59
68
|
*/
|
|
@@ -143,23 +152,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
143
152
|
*/
|
|
144
153
|
logger?: __Logger;
|
|
145
154
|
/**
|
|
146
|
-
* The {@link
|
|
155
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
147
156
|
*/
|
|
148
157
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
149
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
150
162
|
type CostExplorerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
151
163
|
/**
|
|
152
|
-
*
|
|
164
|
+
* @public
|
|
165
|
+
*
|
|
166
|
+
* The configuration interface of CostExplorerClient class constructor that set the region, credentials and other options.
|
|
153
167
|
*/
|
|
154
168
|
export interface CostExplorerClientConfig extends CostExplorerClientConfigType {
|
|
155
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
156
173
|
type CostExplorerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
157
174
|
/**
|
|
158
|
-
*
|
|
175
|
+
* @public
|
|
176
|
+
*
|
|
177
|
+
* The resolved configuration interface of CostExplorerClient class. This is resolved and normalized from the {@link CostExplorerClientConfig | constructor configuration interface}.
|
|
159
178
|
*/
|
|
160
179
|
export interface CostExplorerClientResolvedConfig extends CostExplorerClientResolvedConfigType {
|
|
161
180
|
}
|
|
162
181
|
/**
|
|
182
|
+
* @public
|
|
163
183
|
* <p>You can use the Cost Explorer API to programmatically query your cost and usage data.
|
|
164
184
|
* You can query for aggregated data such as total monthly costs or total daily usage. You can
|
|
165
185
|
* also query for granular data. This might include the number of daily write operations for
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { CreateAnomalyMonitorRequest, CreateAnomalyMonitorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAnomalyMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAnomalyMonitorCommandInput extends CreateAnomalyMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAnomalyMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new cost anomaly detection monitor with the requested type and monitor
|
|
18
23
|
* specification. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateAnomalyMonitorCommandInput - {@link CreateAnomalyMonitorCommandInput}
|
|
35
|
+
* @returns {@link CreateAnomalyMonitorCommandOutput}
|
|
29
36
|
* @see {@link CreateAnomalyMonitorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateAnomalyMonitorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -38,11 +45,20 @@ export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorR
|
|
|
38
45
|
export declare class CreateAnomalyMonitorCommand extends $Command<CreateAnomalyMonitorCommandInput, CreateAnomalyMonitorCommandOutput, CostExplorerClientResolvedConfig> {
|
|
39
46
|
readonly input: CreateAnomalyMonitorCommandInput;
|
|
40
47
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
41
51
|
constructor(input: CreateAnomalyMonitorCommandInput);
|
|
42
52
|
/**
|
|
43
53
|
* @internal
|
|
44
54
|
*/
|
|
45
55
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAnomalyMonitorCommandInput, CreateAnomalyMonitorCommandOutput>;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
46
59
|
private serialize;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
47
63
|
private deserialize;
|
|
48
64
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { CreateAnomalySubscriptionRequest, CreateAnomalySubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAnomalySubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAnomalySubscriptionCommandInput extends CreateAnomalySubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAnomalySubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds an alert subscription to a cost anomaly detection monitor. You can use each
|
|
18
23
|
* subscription to define subscribers with email or SNS notifications. Email subscribers can set
|
|
19
24
|
* an absolute or percentage threshold and a time frequency for receiving notifications. </p>
|
|
@@ -27,6 +32,8 @@ export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySub
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateAnomalySubscriptionCommandInput - {@link CreateAnomalySubscriptionCommandInput}
|
|
36
|
+
* @returns {@link CreateAnomalySubscriptionCommandOutput}
|
|
30
37
|
* @see {@link CreateAnomalySubscriptionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateAnomalySubscriptionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySub
|
|
|
42
49
|
export declare class CreateAnomalySubscriptionCommand extends $Command<CreateAnomalySubscriptionCommandInput, CreateAnomalySubscriptionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
43
50
|
readonly input: CreateAnomalySubscriptionCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: CreateAnomalySubscriptionCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAnomalySubscriptionCommandInput, CreateAnomalySubscriptionCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { CreateCostCategoryDefinitionRequest, CreateCostCategoryDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCostCategoryDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCostCategoryDefinitionCommandInput extends CreateCostCategoryDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCostCategoryDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCostCategoryDefinitionCommandOutput extends CreateCostCategoryDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new Cost Category with the requested name and rules.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateCostCategoryDefinitionCommandOutput extends CreateCostCat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateCostCategoryDefinitionCommandInput - {@link CreateCostCategoryDefinitionCommandInput}
|
|
34
|
+
* @returns {@link CreateCostCategoryDefinitionCommandOutput}
|
|
28
35
|
* @see {@link CreateCostCategoryDefinitionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateCostCategoryDefinitionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface CreateCostCategoryDefinitionCommandOutput extends CreateCostCat
|
|
|
41
48
|
export declare class CreateCostCategoryDefinitionCommand extends $Command<CreateCostCategoryDefinitionCommandInput, CreateCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: CreateCostCategoryDefinitionCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: CreateCostCategoryDefinitionCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCostCategoryDefinitionCommandInput, CreateCostCategoryDefinitionCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { DeleteAnomalyMonitorRequest, DeleteAnomalyMonitorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAnomalyMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAnomalyMonitorCommandInput extends DeleteAnomalyMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAnomalyMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a cost anomaly monitor. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteAnomalyMonitorCommandInput - {@link DeleteAnomalyMonitorCommandInput}
|
|
34
|
+
* @returns {@link DeleteAnomalyMonitorCommandOutput}
|
|
28
35
|
* @see {@link DeleteAnomalyMonitorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteAnomalyMonitorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorR
|
|
|
40
47
|
export declare class DeleteAnomalyMonitorCommand extends $Command<DeleteAnomalyMonitorCommandInput, DeleteAnomalyMonitorCommandOutput, CostExplorerClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteAnomalyMonitorCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteAnomalyMonitorCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnomalyMonitorCommandInput, DeleteAnomalyMonitorCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { DeleteAnomalySubscriptionRequest, DeleteAnomalySubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAnomalySubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAnomalySubscriptionCommandInput extends DeleteAnomalySubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAnomalySubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a cost anomaly subscription. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySub
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteAnomalySubscriptionCommandInput - {@link DeleteAnomalySubscriptionCommandInput}
|
|
34
|
+
* @returns {@link DeleteAnomalySubscriptionCommandOutput}
|
|
28
35
|
* @see {@link DeleteAnomalySubscriptionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteAnomalySubscriptionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySub
|
|
|
40
47
|
export declare class DeleteAnomalySubscriptionCommand extends $Command<DeleteAnomalySubscriptionCommandInput, DeleteAnomalySubscriptionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteAnomalySubscriptionCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteAnomalySubscriptionCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnomalySubscriptionCommandInput, DeleteAnomalySubscriptionCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|