@aws-sdk/client-cost-explorer 3.296.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 +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { DeleteCostCategoryDefinitionRequest, DeleteCostCategoryDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCostCategoryDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCostCategoryDefinitionCommandInput extends DeleteCostCategoryDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCostCategoryDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCostCategoryDefinitionCommandOutput extends DeleteCostCategoryDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a Cost Category. Expenses from this month going forward will no longer be
|
|
18
23
|
* categorized with this Cost Category.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteCostCategoryDefinitionCommandOutput extends DeleteCostCat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteCostCategoryDefinitionCommandInput - {@link DeleteCostCategoryDefinitionCommandInput}
|
|
35
|
+
* @returns {@link DeleteCostCategoryDefinitionCommandOutput}
|
|
29
36
|
* @see {@link DeleteCostCategoryDefinitionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteCostCategoryDefinitionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface DeleteCostCategoryDefinitionCommandOutput extends DeleteCostCat
|
|
|
41
48
|
export declare class DeleteCostCategoryDefinitionCommand extends $Command<DeleteCostCategoryDefinitionCommandInput, DeleteCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: DeleteCostCategoryDefinitionCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: DeleteCostCategoryDefinitionCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCostCategoryDefinitionCommandInput, DeleteCostCategoryDefinitionCommandOutput>;
|
|
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 { DescribeCostCategoryDefinitionRequest, DescribeCostCategoryDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCostCategoryDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCostCategoryDefinitionCommandInput extends DescribeCostCategoryDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCostCategoryDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCostCategoryDefinitionCommandOutput extends DescribeCostCategoryDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the name, Amazon Resource Name (ARN), rules, definition, and effective dates of a
|
|
18
23
|
* Cost Category that's defined in the account.</p>
|
|
19
24
|
* <p>You have the option to use <code>EffectiveOn</code> to return a Cost Category that's
|
|
@@ -30,6 +35,8 @@ export interface DescribeCostCategoryDefinitionCommandOutput extends DescribeCos
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DescribeCostCategoryDefinitionCommandInput - {@link DescribeCostCategoryDefinitionCommandInput}
|
|
39
|
+
* @returns {@link DescribeCostCategoryDefinitionCommandOutput}
|
|
33
40
|
* @see {@link DescribeCostCategoryDefinitionCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DescribeCostCategoryDefinitionCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface DescribeCostCategoryDefinitionCommandOutput extends DescribeCos
|
|
|
45
52
|
export declare class DescribeCostCategoryDefinitionCommand extends $Command<DescribeCostCategoryDefinitionCommandInput, DescribeCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
46
53
|
readonly input: DescribeCostCategoryDefinitionCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: DescribeCostCategoryDefinitionCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCostCategoryDefinitionCommandInput, DescribeCostCategoryDefinitionCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetAnomaliesRequest, GetAnomaliesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAnomaliesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAnomaliesCommandInput extends GetAnomaliesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAnomaliesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves all of the cost anomalies detected on your account during the time period that's
|
|
18
23
|
* specified by the <code>DateInterval</code> object. Anomalies are available for up to 90
|
|
19
24
|
* days.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetAnomaliesCommandInput - {@link GetAnomaliesCommandInput}
|
|
36
|
+
* @returns {@link GetAnomaliesCommandOutput}
|
|
30
37
|
* @see {@link GetAnomaliesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetAnomaliesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad
|
|
|
42
49
|
export declare class GetAnomaliesCommand extends $Command<GetAnomaliesCommandInput, GetAnomaliesCommandOutput, CostExplorerClientResolvedConfig> {
|
|
43
50
|
readonly input: GetAnomaliesCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetAnomaliesCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnomaliesCommandInput, GetAnomaliesCommandOutput>;
|
|
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 { GetAnomalyMonitorsRequest, GetAnomalyMonitorsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAnomalyMonitorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAnomalyMonitorsCommandInput extends GetAnomalyMonitorsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAnomalyMonitorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the cost anomaly monitor definitions for your account. You can filter using a
|
|
18
23
|
* list of cost anomaly monitor Amazon Resource Names (ARNs). </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetAnomalyMonitorsCommandInput - {@link GetAnomalyMonitorsCommandInput}
|
|
35
|
+
* @returns {@link GetAnomalyMonitorsCommandOutput}
|
|
29
36
|
* @see {@link GetAnomalyMonitorsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetAnomalyMonitorsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsRespo
|
|
|
44
51
|
export declare class GetAnomalyMonitorsCommand extends $Command<GetAnomalyMonitorsCommandInput, GetAnomalyMonitorsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
45
52
|
readonly input: GetAnomalyMonitorsCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetAnomalyMonitorsCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnomalyMonitorsCommandInput, GetAnomalyMonitorsCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetAnomalySubscriptionsRequest, GetAnomalySubscriptionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAnomalySubscriptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAnomalySubscriptionsCommandInput extends GetAnomalySubscriptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAnomalySubscriptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscriptionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the cost anomaly subscription objects for your account. You can filter using a
|
|
18
23
|
* list of cost anomaly monitor Amazon Resource Names (ARNs). </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscrip
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetAnomalySubscriptionsCommandInput - {@link GetAnomalySubscriptionsCommandInput}
|
|
35
|
+
* @returns {@link GetAnomalySubscriptionsCommandOutput}
|
|
29
36
|
* @see {@link GetAnomalySubscriptionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetAnomalySubscriptionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscrip
|
|
|
44
51
|
export declare class GetAnomalySubscriptionsCommand extends $Command<GetAnomalySubscriptionsCommandInput, GetAnomalySubscriptionsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
45
52
|
readonly input: GetAnomalySubscriptionsCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetAnomalySubscriptionsCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnomalySubscriptionsCommandInput, GetAnomalySubscriptionsCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetCostAndUsageRequest, GetCostAndUsageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCostAndUsageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCostAndUsageCommandInput extends GetCostAndUsageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCostAndUsageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves cost and usage metrics for your account. You can specify which cost and
|
|
18
23
|
* usage-related metric that you want the request to return. For example, you can specify
|
|
19
24
|
* <code>BlendedCosts</code> or <code>UsageQuantity</code>. You can also filter and group your
|
|
@@ -31,6 +36,8 @@ export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, _
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param GetCostAndUsageCommandInput - {@link GetCostAndUsageCommandInput}
|
|
40
|
+
* @returns {@link GetCostAndUsageCommandOutput}
|
|
34
41
|
* @see {@link GetCostAndUsageCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link GetCostAndUsageCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, _
|
|
|
56
63
|
export declare class GetCostAndUsageCommand extends $Command<GetCostAndUsageCommandInput, GetCostAndUsageCommandOutput, CostExplorerClientResolvedConfig> {
|
|
57
64
|
readonly input: GetCostAndUsageCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: GetCostAndUsageCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCostAndUsageCommandInput, GetCostAndUsageCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetCostAndUsageWithResourcesRequest, GetCostAndUsageWithResourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCostAndUsageWithResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCostAndUsageWithResourcesCommandInput extends GetCostAndUsageWithResourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCostAndUsageWithResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCostAndUsageWithResourcesCommandOutput extends GetCostAndUsageWithResourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves cost and usage metrics with resources for your account. You can specify which
|
|
18
23
|
* cost and usage-related metric, such as <code>BlendedCosts</code> or
|
|
19
24
|
* <code>UsageQuantity</code>, that you want the request to return. You can also filter and group
|
|
@@ -36,6 +41,8 @@ export interface GetCostAndUsageWithResourcesCommandOutput extends GetCostAndUsa
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param GetCostAndUsageWithResourcesCommandInput - {@link GetCostAndUsageWithResourcesCommandInput}
|
|
45
|
+
* @returns {@link GetCostAndUsageWithResourcesCommandOutput}
|
|
39
46
|
* @see {@link GetCostAndUsageWithResourcesCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link GetCostAndUsageWithResourcesCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface GetCostAndUsageWithResourcesCommandOutput extends GetCostAndUsa
|
|
|
61
68
|
export declare class GetCostAndUsageWithResourcesCommand extends $Command<GetCostAndUsageWithResourcesCommandInput, GetCostAndUsageWithResourcesCommandOutput, CostExplorerClientResolvedConfig> {
|
|
62
69
|
readonly input: GetCostAndUsageWithResourcesCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: GetCostAndUsageWithResourcesCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCostAndUsageWithResourcesCommandInput, GetCostAndUsageWithResourcesCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetCostCategoriesRequest, GetCostCategoriesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCostCategoriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCostCategoriesCommandInput extends GetCostCategoriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCostCategoriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCostCategoriesCommandOutput extends GetCostCategoriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of Cost Category names and values incurred cost.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>If some Cost Category names and values are not associated with any cost, they will not
|
|
@@ -29,6 +34,8 @@ export interface GetCostCategoriesCommandOutput extends GetCostCategoriesRespons
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetCostCategoriesCommandInput - {@link GetCostCategoriesCommandInput}
|
|
38
|
+
* @returns {@link GetCostCategoriesCommandOutput}
|
|
32
39
|
* @see {@link GetCostCategoriesCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetCostCategoriesCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetCostCategoriesCommandOutput extends GetCostCategoriesRespons
|
|
|
54
61
|
export declare class GetCostCategoriesCommand extends $Command<GetCostCategoriesCommandInput, GetCostCategoriesCommandOutput, CostExplorerClientResolvedConfig> {
|
|
55
62
|
readonly input: GetCostCategoriesCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetCostCategoriesCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCostCategoriesCommandInput, GetCostCategoriesCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetCostForecastRequest, GetCostForecastResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCostForecastCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCostForecastCommandInput extends GetCostForecastRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCostForecastCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCostForecastCommandOutput extends GetCostForecastResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a forecast for how much Amazon Web Services predicts that you will spend over
|
|
18
23
|
* the forecast time period that you select, based on your past costs. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetCostForecastCommandOutput extends GetCostForecastResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetCostForecastCommandInput - {@link GetCostForecastCommandInput}
|
|
35
|
+
* @returns {@link GetCostForecastCommandOutput}
|
|
29
36
|
* @see {@link GetCostForecastCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetCostForecastCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetCostForecastCommandOutput extends GetCostForecastResponse, _
|
|
|
41
48
|
export declare class GetCostForecastCommand extends $Command<GetCostForecastCommandInput, GetCostForecastCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: GetCostForecastCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetCostForecastCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCostForecastCommandInput, GetCostForecastCommandOutput>;
|
|
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 { GetDimensionValuesRequest, GetDimensionValuesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDimensionValuesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDimensionValuesCommandInput extends GetDimensionValuesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDimensionValuesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDimensionValuesCommandOutput extends GetDimensionValuesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves all available filter values for a specified filter over a period of time. You
|
|
18
23
|
* can search the dimension values for an arbitrary string. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDimensionValuesCommandOutput extends GetDimensionValuesRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDimensionValuesCommandInput - {@link GetDimensionValuesCommandInput}
|
|
35
|
+
* @returns {@link GetDimensionValuesCommandOutput}
|
|
29
36
|
* @see {@link GetDimensionValuesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDimensionValuesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetDimensionValuesCommandOutput extends GetDimensionValuesRespo
|
|
|
51
58
|
export declare class GetDimensionValuesCommand extends $Command<GetDimensionValuesCommandInput, GetDimensionValuesCommandOutput, CostExplorerClientResolvedConfig> {
|
|
52
59
|
readonly input: GetDimensionValuesCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetDimensionValuesCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDimensionValuesCommandInput, GetDimensionValuesCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetReservationCoverageRequest, GetReservationCoverageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetReservationCoverageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetReservationCoverageCommandInput extends GetReservationCoverageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetReservationCoverageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetReservationCoverageCommandOutput extends GetReservationCoverageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the reservation coverage for your account, which you can use to see how much
|
|
18
23
|
* of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service,
|
|
19
24
|
* or Amazon Redshift usage is covered by a reservation. An organization's management account can
|
|
@@ -70,6 +75,8 @@ export interface GetReservationCoverageCommandOutput extends GetReservationCover
|
|
|
70
75
|
* const response = await client.send(command);
|
|
71
76
|
* ```
|
|
72
77
|
*
|
|
78
|
+
* @param GetReservationCoverageCommandInput - {@link GetReservationCoverageCommandInput}
|
|
79
|
+
* @returns {@link GetReservationCoverageCommandOutput}
|
|
73
80
|
* @see {@link GetReservationCoverageCommandInput} for command's `input` shape.
|
|
74
81
|
* @see {@link GetReservationCoverageCommandOutput} for command's `response` shape.
|
|
75
82
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -88,11 +95,20 @@ export interface GetReservationCoverageCommandOutput extends GetReservationCover
|
|
|
88
95
|
export declare class GetReservationCoverageCommand extends $Command<GetReservationCoverageCommandInput, GetReservationCoverageCommandOutput, CostExplorerClientResolvedConfig> {
|
|
89
96
|
readonly input: GetReservationCoverageCommandInput;
|
|
90
97
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
91
101
|
constructor(input: GetReservationCoverageCommandInput);
|
|
92
102
|
/**
|
|
93
103
|
* @internal
|
|
94
104
|
*/
|
|
95
105
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReservationCoverageCommandInput, GetReservationCoverageCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
96
109
|
private serialize;
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
97
113
|
private deserialize;
|
|
98
114
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetReservationPurchaseRecommendationRequest, GetReservationPurchaseRecommendationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetReservationPurchaseRecommendationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetReservationPurchaseRecommendationCommandInput extends GetReservationPurchaseRecommendationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetReservationPurchaseRecommendationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetReservationPurchaseRecommendationCommandOutput extends GetReservationPurchaseRecommendationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets recommendations for reservation purchases. These recommendations might help you to
|
|
18
23
|
* reduce your costs. Reservations provide a discounted hourly rate (up to 75%) compared to
|
|
19
24
|
* On-Demand pricing.</p>
|
|
@@ -40,6 +45,8 @@ export interface GetReservationPurchaseRecommendationCommandOutput extends GetRe
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param GetReservationPurchaseRecommendationCommandInput - {@link GetReservationPurchaseRecommendationCommandInput}
|
|
49
|
+
* @returns {@link GetReservationPurchaseRecommendationCommandOutput}
|
|
43
50
|
* @see {@link GetReservationPurchaseRecommendationCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link GetReservationPurchaseRecommendationCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface GetReservationPurchaseRecommendationCommandOutput extends GetRe
|
|
|
58
65
|
export declare class GetReservationPurchaseRecommendationCommand extends $Command<GetReservationPurchaseRecommendationCommandInput, GetReservationPurchaseRecommendationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
59
66
|
readonly input: GetReservationPurchaseRecommendationCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: GetReservationPurchaseRecommendationCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReservationPurchaseRecommendationCommandInput, GetReservationPurchaseRecommendationCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|