@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { ProvideAnomalyFeedbackRequest, ProvideAnomalyFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ProvideAnomalyFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ProvideAnomalyFeedbackCommandInput extends ProvideAnomalyFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ProvideAnomalyFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ProvideAnomalyFeedbackCommandOutput extends ProvideAnomalyFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the feedback property of a given cost anomaly. </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 ProvideAnomalyFeedbackCommandOutput extends ProvideAnomalyFeedb
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ProvideAnomalyFeedbackCommandInput - {@link ProvideAnomalyFeedbackCommandInput}
|
|
34
|
+
* @returns {@link ProvideAnomalyFeedbackCommandOutput}
|
|
28
35
|
* @see {@link ProvideAnomalyFeedbackCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ProvideAnomalyFeedbackCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ProvideAnomalyFeedbackCommandOutput extends ProvideAnomalyFeedb
|
|
|
37
44
|
export declare class ProvideAnomalyFeedbackCommand extends $Command<ProvideAnomalyFeedbackCommandInput, ProvideAnomalyFeedbackCommandOutput, CostExplorerClientResolvedConfig> {
|
|
38
45
|
readonly input: ProvideAnomalyFeedbackCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ProvideAnomalyFeedbackCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ProvideAnomalyFeedbackCommandInput, ProvideAnomalyFeedbackCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { StartSavingsPlansPurchaseRecommendationGenerationRequest, StartSavingsPlansPurchaseRecommendationGenerationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartSavingsPlansPurchaseRecommendationGenerationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartSavingsPlansPurchaseRecommendationGenerationCommandInput extends StartSavingsPlansPurchaseRecommendationGenerationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartSavingsPlansPurchaseRecommendationGenerationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartSavingsPlansPurchaseRecommendationGenerationCommandOutput extends StartSavingsPlansPurchaseRecommendationGenerationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Requests a Savings Plans recommendation generation. This enables you to calculate a fresh
|
|
18
23
|
* set of Savings Plans recommendations that takes your latest usage data and current Savings
|
|
19
24
|
* Plans inventory into account. You can refresh Savings Plans recommendations up to three times
|
|
@@ -33,6 +38,8 @@ export interface StartSavingsPlansPurchaseRecommendationGenerationCommandOutput
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param StartSavingsPlansPurchaseRecommendationGenerationCommandInput - {@link StartSavingsPlansPurchaseRecommendationGenerationCommandInput}
|
|
42
|
+
* @returns {@link StartSavingsPlansPurchaseRecommendationGenerationCommandOutput}
|
|
36
43
|
* @see {@link StartSavingsPlansPurchaseRecommendationGenerationCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link StartSavingsPlansPurchaseRecommendationGenerationCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface StartSavingsPlansPurchaseRecommendationGenerationCommandOutput
|
|
|
52
59
|
export declare class StartSavingsPlansPurchaseRecommendationGenerationCommand extends $Command<StartSavingsPlansPurchaseRecommendationGenerationCommandInput, StartSavingsPlansPurchaseRecommendationGenerationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
53
60
|
readonly input: StartSavingsPlansPurchaseRecommendationGenerationCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: StartSavingsPlansPurchaseRecommendationGenerationCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSavingsPlansPurchaseRecommendationGenerationCommandInput, StartSavingsPlansPurchaseRecommendationGenerationCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>An API operation for adding one or more tags (key-value pairs) to a resource.</p>
|
|
18
23
|
* <p>You can use the <code>TagResource</code> operation with a resource that already has tags.
|
|
19
24
|
* If you specify a new tag key for the resource, this tag is appended to the list of tags
|
|
@@ -31,6 +36,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
40
|
+
* @returns {@link TagResourceCommandOutput}
|
|
34
41
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CostExplorerClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from a resource. Specify only tag keys in your request. Don't
|
|
18
23
|
* specify the value. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
35
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
29
36
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
41
48
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: UntagResourceCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: UntagResourceCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateAnomalyMonitorRequest, UpdateAnomalyMonitorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateAnomalyMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateAnomalyMonitorCommandInput extends UpdateAnomalyMonitorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateAnomalyMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateAnomalyMonitorCommandOutput extends UpdateAnomalyMonitorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing cost anomaly monitor. The changes made are applied going forward, and
|
|
18
23
|
* doesn't change anomalies detected in the past. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateAnomalyMonitorCommandOutput extends UpdateAnomalyMonitorR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateAnomalyMonitorCommandInput - {@link UpdateAnomalyMonitorCommandInput}
|
|
35
|
+
* @returns {@link UpdateAnomalyMonitorCommandOutput}
|
|
29
36
|
* @see {@link UpdateAnomalyMonitorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateAnomalyMonitorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface UpdateAnomalyMonitorCommandOutput extends UpdateAnomalyMonitorR
|
|
|
41
48
|
export declare class UpdateAnomalyMonitorCommand extends $Command<UpdateAnomalyMonitorCommandInput, UpdateAnomalyMonitorCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: UpdateAnomalyMonitorCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: UpdateAnomalyMonitorCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAnomalyMonitorCommandInput, UpdateAnomalyMonitorCommandOutput>;
|
|
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 { UpdateAnomalySubscriptionRequest, UpdateAnomalySubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateAnomalySubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateAnomalySubscriptionCommandInput extends UpdateAnomalySubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateAnomalySubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateAnomalySubscriptionCommandOutput extends UpdateAnomalySubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing cost anomaly monitor 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 UpdateAnomalySubscriptionCommandOutput extends UpdateAnomalySub
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateAnomalySubscriptionCommandInput - {@link UpdateAnomalySubscriptionCommandInput}
|
|
34
|
+
* @returns {@link UpdateAnomalySubscriptionCommandOutput}
|
|
28
35
|
* @see {@link UpdateAnomalySubscriptionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateAnomalySubscriptionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateAnomalySubscriptionCommandOutput extends UpdateAnomalySub
|
|
|
43
50
|
export declare class UpdateAnomalySubscriptionCommand extends $Command<UpdateAnomalySubscriptionCommandInput, UpdateAnomalySubscriptionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateAnomalySubscriptionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateAnomalySubscriptionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAnomalySubscriptionCommandInput, UpdateAnomalySubscriptionCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { UpdateCostAllocationTagsStatusRequest, UpdateCostAllocationTagsStatusResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCostAllocationTagsStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCostAllocationTagsStatusCommandInput extends UpdateCostAllocationTagsStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCostAllocationTagsStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCostAllocationTagsStatusCommandOutput extends UpdateCostAllocationTagsStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates status for cost allocation tags in bulk, with maximum batch size of 20. If the tag
|
|
18
23
|
* status that's updated is the same as the existing tag status, the request doesn't fail.
|
|
19
24
|
* Instead, it doesn't have any effect on the tag status (for example, activating the active
|
|
@@ -28,6 +33,8 @@ export interface UpdateCostAllocationTagsStatusCommandOutput extends UpdateCostA
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateCostAllocationTagsStatusCommandInput - {@link UpdateCostAllocationTagsStatusCommandInput}
|
|
37
|
+
* @returns {@link UpdateCostAllocationTagsStatusCommandOutput}
|
|
31
38
|
* @see {@link UpdateCostAllocationTagsStatusCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateCostAllocationTagsStatusCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UpdateCostAllocationTagsStatusCommandOutput extends UpdateCostA
|
|
|
40
47
|
export declare class UpdateCostAllocationTagsStatusCommand extends $Command<UpdateCostAllocationTagsStatusCommandInput, UpdateCostAllocationTagsStatusCommandOutput, CostExplorerClientResolvedConfig> {
|
|
41
48
|
readonly input: UpdateCostAllocationTagsStatusCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UpdateCostAllocationTagsStatusCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCostAllocationTagsStatusCommandInput, UpdateCostAllocationTagsStatusCommandOutput>;
|
|
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 { UpdateCostCategoryDefinitionRequest, UpdateCostCategoryDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateCostCategoryDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateCostCategoryDefinitionCommandInput extends UpdateCostCategoryDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateCostCategoryDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateCostCategoryDefinitionCommandOutput extends UpdateCostCategoryDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing Cost Category. Changes made to the Cost Category rules will be used to
|
|
18
23
|
* categorize the current month’s expenses and future expenses. This won’t change categorization
|
|
19
24
|
* for the previous months.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateCostCategoryDefinitionCommandOutput extends UpdateCostCat
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateCostCategoryDefinitionCommandInput - {@link UpdateCostCategoryDefinitionCommandInput}
|
|
36
|
+
* @returns {@link UpdateCostCategoryDefinitionCommandOutput}
|
|
30
37
|
* @see {@link UpdateCostCategoryDefinitionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateCostCategoryDefinitionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateCostCategoryDefinitionCommandOutput extends UpdateCostCat
|
|
|
46
53
|
export declare class UpdateCostCategoryDefinitionCommand extends $Command<UpdateCostCategoryDefinitionCommandInput, UpdateCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateCostCategoryDefinitionCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateCostCategoryDefinitionCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCostCategoryDefinitionCommandInput, UpdateCostCategoryDefinitionCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from CostExplorer service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CostExplorerServiceException extends __ServiceException {
|