@aws-sdk/client-cost-explorer 3.325.0 → 3.326.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/commands/CreateAnomalyMonitorCommand.d.ts +6 -0
- package/dist-types/commands/CreateAnomalySubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/CreateCostCategoryDefinitionCommand.d.ts +7 -0
- package/dist-types/commands/DeleteAnomalyMonitorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAnomalySubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCostCategoryDefinitionCommand.d.ts +7 -0
- package/dist-types/commands/DescribeCostCategoryDefinitionCommand.d.ts +113 -0
- package/dist-types/commands/GetAnomaliesCommand.d.ts +36 -0
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +85 -0
- package/dist-types/commands/GetAnomalySubscriptionsCommand.d.ts +92 -0
- package/dist-types/commands/GetCostAndUsageCommand.d.ts +48 -0
- package/dist-types/commands/GetCostAndUsageWithResourcesCommand.d.ts +48 -0
- package/dist-types/commands/GetCostCategoriesCommand.d.ts +14 -0
- package/dist-types/commands/GetCostForecastCommand.d.ts +20 -0
- package/dist-types/commands/GetDimensionValuesCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationCoverageCommand.d.ts +56 -0
- package/dist-types/commands/GetReservationPurchaseRecommendationCommand.d.ts +95 -0
- package/dist-types/commands/GetReservationUtilizationCommand.d.ts +62 -0
- package/dist-types/commands/GetRightsizingRecommendationCommand.d.ts +145 -0
- package/dist-types/commands/GetSavingsPlansCoverageCommand.d.ts +23 -0
- package/dist-types/commands/GetSavingsPlansPurchaseRecommendationCommand.d.ts +55 -0
- package/dist-types/commands/GetSavingsPlansUtilizationCommand.d.ts +45 -0
- package/dist-types/commands/GetSavingsPlansUtilizationDetailsCommand.d.ts +50 -0
- package/dist-types/commands/GetTagsCommand.d.ts +11 -0
- package/dist-types/commands/GetUsageForecastCommand.d.ts +20 -0
- package/dist-types/commands/ListCostAllocationTagsCommand.d.ts +13 -0
- package/dist-types/commands/ListCostCategoryDefinitionsCommand.d.ts +25 -0
- package/dist-types/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +15 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ProvideAnomalyFeedbackCommand.d.ts +6 -0
- package/dist-types/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAnomalyMonitorCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAnomalySubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCostAllocationTagsStatusCommand.d.ts +12 -0
- package/dist-types/commands/UpdateCostCategoryDefinitionCommand.d.ts +7 -0
- package/package.json +3 -3
|
@@ -114,6 +114,10 @@ export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorR
|
|
|
114
114
|
* };
|
|
115
115
|
* const command = new CreateAnomalyMonitorCommand(input);
|
|
116
116
|
* const response = await client.send(command);
|
|
117
|
+
* // { // CreateAnomalyMonitorResponse
|
|
118
|
+
* // MonitorArn: "STRING_VALUE", // required
|
|
119
|
+
* // };
|
|
120
|
+
*
|
|
117
121
|
* ```
|
|
118
122
|
*
|
|
119
123
|
* @param CreateAnomalyMonitorCommandInput - {@link CreateAnomalyMonitorCommandInput}
|
|
@@ -125,6 +129,8 @@ export interface CreateAnomalyMonitorCommandOutput extends CreateAnomalyMonitorR
|
|
|
125
129
|
* @throws {@link LimitExceededException} (client fault)
|
|
126
130
|
* <p>You made too many calls in a short period of time. Try again later.</p>
|
|
127
131
|
*
|
|
132
|
+
* @throws {@link CostExplorerServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
128
134
|
*
|
|
129
135
|
*/
|
|
130
136
|
export declare class CreateAnomalyMonitorCommand extends $Command<CreateAnomalyMonitorCommandInput, CreateAnomalyMonitorCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -122,6 +122,10 @@ export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySub
|
|
|
122
122
|
* };
|
|
123
123
|
* const command = new CreateAnomalySubscriptionCommand(input);
|
|
124
124
|
* const response = await client.send(command);
|
|
125
|
+
* // { // CreateAnomalySubscriptionResponse
|
|
126
|
+
* // SubscriptionArn: "STRING_VALUE", // required
|
|
127
|
+
* // };
|
|
128
|
+
*
|
|
125
129
|
* ```
|
|
126
130
|
*
|
|
127
131
|
* @param CreateAnomalySubscriptionCommandInput - {@link CreateAnomalySubscriptionCommandInput}
|
|
@@ -136,6 +140,8 @@ export interface CreateAnomalySubscriptionCommandOutput extends CreateAnomalySub
|
|
|
136
140
|
* @throws {@link UnknownMonitorException} (client fault)
|
|
137
141
|
* <p>The cost anomaly monitor does not exist for the account. </p>
|
|
138
142
|
*
|
|
143
|
+
* @throws {@link CostExplorerServiceException}
|
|
144
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
139
145
|
*
|
|
140
146
|
*/
|
|
141
147
|
export declare class CreateAnomalySubscriptionCommand extends $Command<CreateAnomalySubscriptionCommandInput, CreateAnomalySubscriptionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -134,6 +134,11 @@ export interface CreateCostCategoryDefinitionCommandOutput extends CreateCostCat
|
|
|
134
134
|
* };
|
|
135
135
|
* const command = new CreateCostCategoryDefinitionCommand(input);
|
|
136
136
|
* const response = await client.send(command);
|
|
137
|
+
* // { // CreateCostCategoryDefinitionResponse
|
|
138
|
+
* // CostCategoryArn: "STRING_VALUE",
|
|
139
|
+
* // EffectiveStart: "STRING_VALUE",
|
|
140
|
+
* // };
|
|
141
|
+
*
|
|
137
142
|
* ```
|
|
138
143
|
*
|
|
139
144
|
* @param CreateCostCategoryDefinitionCommandInput - {@link CreateCostCategoryDefinitionCommandInput}
|
|
@@ -149,6 +154,8 @@ export interface CreateCostCategoryDefinitionCommandOutput extends CreateCostCat
|
|
|
149
154
|
* <p> You've reached the limit on the number of resources you can create, or exceeded the
|
|
150
155
|
* size of an individual resource. </p>
|
|
151
156
|
*
|
|
157
|
+
* @throws {@link CostExplorerServiceException}
|
|
158
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
152
159
|
*
|
|
153
160
|
*/
|
|
154
161
|
export declare class CreateCostCategoryDefinitionCommand extends $Command<CreateCostCategoryDefinitionCommandInput, CreateCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAnomalyMonitorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteAnomalyMonitorCommandInput - {@link DeleteAnomalyMonitorCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorR
|
|
|
45
47
|
* @throws {@link UnknownMonitorException} (client fault)
|
|
46
48
|
* <p>The cost anomaly monitor does not exist for the account. </p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link CostExplorerServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeleteAnomalyMonitorCommand extends $Command<DeleteAnomalyMonitorCommandInput, DeleteAnomalyMonitorCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySub
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAnomalySubscriptionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteAnomalySubscriptionCommandInput - {@link DeleteAnomalySubscriptionCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeleteAnomalySubscriptionCommandOutput extends DeleteAnomalySub
|
|
|
45
47
|
* @throws {@link UnknownSubscriptionException} (client fault)
|
|
46
48
|
* <p>The cost anomaly subscription does not exist for the account. </p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link CostExplorerServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeleteAnomalySubscriptionCommand extends $Command<DeleteAnomalySubscriptionCommandInput, DeleteAnomalySubscriptionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeleteCostCategoryDefinitionCommandOutput extends DeleteCostCat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCostCategoryDefinitionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteCostCategoryDefinitionResponse
|
|
36
|
+
* // CostCategoryArn: "STRING_VALUE",
|
|
37
|
+
* // EffectiveEnd: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeleteCostCategoryDefinitionCommandInput - {@link DeleteCostCategoryDefinitionCommandInput}
|
|
@@ -46,6 +51,8 @@ export interface DeleteCostCategoryDefinitionCommandOutput extends DeleteCostCat
|
|
|
46
51
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
52
|
* <p> The specified ARN in the request doesn't exist. </p>
|
|
48
53
|
*
|
|
54
|
+
* @throws {@link CostExplorerServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
49
56
|
*
|
|
50
57
|
*/
|
|
51
58
|
export declare class DeleteCostCategoryDefinitionCommand extends $Command<DeleteCostCategoryDefinitionCommandInput, DeleteCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -37,6 +37,117 @@ export interface DescribeCostCategoryDefinitionCommandOutput extends DescribeCos
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DescribeCostCategoryDefinitionCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DescribeCostCategoryDefinitionResponse
|
|
41
|
+
* // CostCategory: { // CostCategory
|
|
42
|
+
* // CostCategoryArn: "STRING_VALUE", // required
|
|
43
|
+
* // EffectiveStart: "STRING_VALUE", // required
|
|
44
|
+
* // EffectiveEnd: "STRING_VALUE",
|
|
45
|
+
* // Name: "STRING_VALUE", // required
|
|
46
|
+
* // RuleVersion: "CostCategoryExpression.v1", // required
|
|
47
|
+
* // Rules: [ // CostCategoryRulesList // required
|
|
48
|
+
* // { // CostCategoryRule
|
|
49
|
+
* // Value: "STRING_VALUE",
|
|
50
|
+
* // Rule: { // Expression
|
|
51
|
+
* // Or: [ // Expressions
|
|
52
|
+
* // {
|
|
53
|
+
* // Or: [
|
|
54
|
+
* // "<Expression>",
|
|
55
|
+
* // ],
|
|
56
|
+
* // And: [
|
|
57
|
+
* // "<Expression>",
|
|
58
|
+
* // ],
|
|
59
|
+
* // Not: "<Expression>",
|
|
60
|
+
* // Dimensions: { // DimensionValues
|
|
61
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
62
|
+
* // Values: [ // Values
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // MatchOptions: [ // MatchOptions
|
|
66
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
67
|
+
* // ],
|
|
68
|
+
* // },
|
|
69
|
+
* // Tags: { // TagValues
|
|
70
|
+
* // Key: "STRING_VALUE",
|
|
71
|
+
* // Values: [
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // MatchOptions: [
|
|
75
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
76
|
+
* // ],
|
|
77
|
+
* // },
|
|
78
|
+
* // CostCategories: { // CostCategoryValues
|
|
79
|
+
* // Key: "STRING_VALUE",
|
|
80
|
+
* // Values: [
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // MatchOptions: [
|
|
84
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // And: [
|
|
90
|
+
* // "<Expression>",
|
|
91
|
+
* // ],
|
|
92
|
+
* // Not: "<Expression>",
|
|
93
|
+
* // Dimensions: {
|
|
94
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
95
|
+
* // Values: [
|
|
96
|
+
* // "STRING_VALUE",
|
|
97
|
+
* // ],
|
|
98
|
+
* // MatchOptions: [
|
|
99
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
100
|
+
* // ],
|
|
101
|
+
* // },
|
|
102
|
+
* // Tags: {
|
|
103
|
+
* // Key: "STRING_VALUE",
|
|
104
|
+
* // Values: [
|
|
105
|
+
* // "STRING_VALUE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // MatchOptions: [
|
|
108
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
109
|
+
* // ],
|
|
110
|
+
* // },
|
|
111
|
+
* // CostCategories: {
|
|
112
|
+
* // Key: "STRING_VALUE",
|
|
113
|
+
* // Values: "<Values>",
|
|
114
|
+
* // MatchOptions: "<MatchOptions>",
|
|
115
|
+
* // },
|
|
116
|
+
* // },
|
|
117
|
+
* // InheritedValue: { // CostCategoryInheritedValueDimension
|
|
118
|
+
* // DimensionName: "LINKED_ACCOUNT_NAME" || "TAG",
|
|
119
|
+
* // DimensionKey: "STRING_VALUE",
|
|
120
|
+
* // },
|
|
121
|
+
* // Type: "REGULAR" || "INHERITED_VALUE",
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
124
|
+
* // SplitChargeRules: [ // CostCategorySplitChargeRulesList
|
|
125
|
+
* // { // CostCategorySplitChargeRule
|
|
126
|
+
* // Source: "STRING_VALUE", // required
|
|
127
|
+
* // Targets: [ // CostCategorySplitChargeRuleTargetsList // required
|
|
128
|
+
* // "STRING_VALUE",
|
|
129
|
+
* // ],
|
|
130
|
+
* // Method: "FIXED" || "PROPORTIONAL" || "EVEN", // required
|
|
131
|
+
* // Parameters: [ // CostCategorySplitChargeRuleParametersList
|
|
132
|
+
* // { // CostCategorySplitChargeRuleParameter
|
|
133
|
+
* // Type: "ALLOCATION_PERCENTAGES", // required
|
|
134
|
+
* // Values: [ // CostCategorySplitChargeRuleParameterValuesList // required
|
|
135
|
+
* // "STRING_VALUE",
|
|
136
|
+
* // ],
|
|
137
|
+
* // },
|
|
138
|
+
* // ],
|
|
139
|
+
* // },
|
|
140
|
+
* // ],
|
|
141
|
+
* // ProcessingStatus: [ // CostCategoryProcessingStatusList
|
|
142
|
+
* // { // CostCategoryProcessingStatus
|
|
143
|
+
* // Component: "COST_EXPLORER",
|
|
144
|
+
* // Status: "PROCESSING" || "APPLIED",
|
|
145
|
+
* // },
|
|
146
|
+
* // ],
|
|
147
|
+
* // DefaultValue: "STRING_VALUE",
|
|
148
|
+
* // },
|
|
149
|
+
* // };
|
|
150
|
+
*
|
|
40
151
|
* ```
|
|
41
152
|
*
|
|
42
153
|
* @param DescribeCostCategoryDefinitionCommandInput - {@link DescribeCostCategoryDefinitionCommandInput}
|
|
@@ -51,6 +162,8 @@ export interface DescribeCostCategoryDefinitionCommandOutput extends DescribeCos
|
|
|
51
162
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
163
|
* <p> The specified ARN in the request doesn't exist. </p>
|
|
53
164
|
*
|
|
165
|
+
* @throws {@link CostExplorerServiceException}
|
|
166
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
54
167
|
*
|
|
55
168
|
*/
|
|
56
169
|
export declare class DescribeCostCategoryDefinitionCommand extends $Command<DescribeCostCategoryDefinitionCommandInput, DescribeCostCategoryDefinitionCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -45,6 +45,40 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new GetAnomaliesCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // GetAnomaliesResponse
|
|
49
|
+
* // Anomalies: [ // Anomalies // required
|
|
50
|
+
* // { // Anomaly
|
|
51
|
+
* // AnomalyId: "STRING_VALUE", // required
|
|
52
|
+
* // AnomalyStartDate: "STRING_VALUE",
|
|
53
|
+
* // AnomalyEndDate: "STRING_VALUE",
|
|
54
|
+
* // DimensionValue: "STRING_VALUE",
|
|
55
|
+
* // RootCauses: [ // RootCauses
|
|
56
|
+
* // { // RootCause
|
|
57
|
+
* // Service: "STRING_VALUE",
|
|
58
|
+
* // Region: "STRING_VALUE",
|
|
59
|
+
* // LinkedAccount: "STRING_VALUE",
|
|
60
|
+
* // UsageType: "STRING_VALUE",
|
|
61
|
+
* // LinkedAccountName: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // AnomalyScore: { // AnomalyScore
|
|
65
|
+
* // MaxScore: Number("double"), // required
|
|
66
|
+
* // CurrentScore: Number("double"), // required
|
|
67
|
+
* // },
|
|
68
|
+
* // Impact: { // Impact
|
|
69
|
+
* // MaxImpact: Number("double"), // required
|
|
70
|
+
* // TotalImpact: Number("double"),
|
|
71
|
+
* // TotalActualSpend: Number("double"),
|
|
72
|
+
* // TotalExpectedSpend: Number("double"),
|
|
73
|
+
* // TotalImpactPercentage: Number("double"),
|
|
74
|
+
* // },
|
|
75
|
+
* // MonitorArn: "STRING_VALUE", // required
|
|
76
|
+
* // Feedback: "YES" || "NO" || "PLANNED_ACTIVITY",
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // NextPageToken: "STRING_VALUE",
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
48
82
|
* ```
|
|
49
83
|
*
|
|
50
84
|
* @param GetAnomaliesCommandInput - {@link GetAnomaliesCommandInput}
|
|
@@ -59,6 +93,8 @@ export interface GetAnomaliesCommandOutput extends GetAnomaliesResponse, __Metad
|
|
|
59
93
|
* @throws {@link LimitExceededException} (client fault)
|
|
60
94
|
* <p>You made too many calls in a short period of time. Try again later.</p>
|
|
61
95
|
*
|
|
96
|
+
* @throws {@link CostExplorerServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
62
98
|
*
|
|
63
99
|
*/
|
|
64
100
|
export declare class GetAnomaliesCommand extends $Command<GetAnomaliesCommandInput, GetAnomaliesCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -36,6 +36,89 @@ export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsRespo
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetAnomalyMonitorsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetAnomalyMonitorsResponse
|
|
40
|
+
* // AnomalyMonitors: [ // AnomalyMonitors // required
|
|
41
|
+
* // { // AnomalyMonitor
|
|
42
|
+
* // MonitorArn: "STRING_VALUE",
|
|
43
|
+
* // MonitorName: "STRING_VALUE", // required
|
|
44
|
+
* // CreationDate: "STRING_VALUE",
|
|
45
|
+
* // LastUpdatedDate: "STRING_VALUE",
|
|
46
|
+
* // LastEvaluatedDate: "STRING_VALUE",
|
|
47
|
+
* // MonitorType: "DIMENSIONAL" || "CUSTOM", // required
|
|
48
|
+
* // MonitorDimension: "SERVICE",
|
|
49
|
+
* // MonitorSpecification: { // Expression
|
|
50
|
+
* // Or: [ // Expressions
|
|
51
|
+
* // {
|
|
52
|
+
* // Or: [
|
|
53
|
+
* // "<Expression>",
|
|
54
|
+
* // ],
|
|
55
|
+
* // And: [
|
|
56
|
+
* // "<Expression>",
|
|
57
|
+
* // ],
|
|
58
|
+
* // Not: "<Expression>",
|
|
59
|
+
* // Dimensions: { // DimensionValues
|
|
60
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
61
|
+
* // Values: [ // Values
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // MatchOptions: [ // MatchOptions
|
|
65
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
66
|
+
* // ],
|
|
67
|
+
* // },
|
|
68
|
+
* // Tags: { // TagValues
|
|
69
|
+
* // Key: "STRING_VALUE",
|
|
70
|
+
* // Values: [
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // MatchOptions: [
|
|
74
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // CostCategories: { // CostCategoryValues
|
|
78
|
+
* // Key: "STRING_VALUE",
|
|
79
|
+
* // Values: [
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // MatchOptions: [
|
|
83
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // And: [
|
|
89
|
+
* // "<Expression>",
|
|
90
|
+
* // ],
|
|
91
|
+
* // Not: "<Expression>",
|
|
92
|
+
* // Dimensions: {
|
|
93
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
94
|
+
* // Values: [
|
|
95
|
+
* // "STRING_VALUE",
|
|
96
|
+
* // ],
|
|
97
|
+
* // MatchOptions: [
|
|
98
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // Tags: {
|
|
102
|
+
* // Key: "STRING_VALUE",
|
|
103
|
+
* // Values: [
|
|
104
|
+
* // "STRING_VALUE",
|
|
105
|
+
* // ],
|
|
106
|
+
* // MatchOptions: [
|
|
107
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
108
|
+
* // ],
|
|
109
|
+
* // },
|
|
110
|
+
* // CostCategories: {
|
|
111
|
+
* // Key: "STRING_VALUE",
|
|
112
|
+
* // Values: "<Values>",
|
|
113
|
+
* // MatchOptions: "<MatchOptions>",
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
116
|
+
* // DimensionalValueCount: Number("int"),
|
|
117
|
+
* // },
|
|
118
|
+
* // ],
|
|
119
|
+
* // NextPageToken: "STRING_VALUE",
|
|
120
|
+
* // };
|
|
121
|
+
*
|
|
39
122
|
* ```
|
|
40
123
|
*
|
|
41
124
|
* @param GetAnomalyMonitorsCommandInput - {@link GetAnomalyMonitorsCommandInput}
|
|
@@ -53,6 +136,8 @@ export interface GetAnomalyMonitorsCommandOutput extends GetAnomalyMonitorsRespo
|
|
|
53
136
|
* @throws {@link UnknownMonitorException} (client fault)
|
|
54
137
|
* <p>The cost anomaly monitor does not exist for the account. </p>
|
|
55
138
|
*
|
|
139
|
+
* @throws {@link CostExplorerServiceException}
|
|
140
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
56
141
|
*
|
|
57
142
|
*/
|
|
58
143
|
export declare class GetAnomalyMonitorsCommand extends $Command<GetAnomalyMonitorsCommandInput, GetAnomalyMonitorsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -37,6 +37,96 @@ export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscrip
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetAnomalySubscriptionsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetAnomalySubscriptionsResponse
|
|
41
|
+
* // AnomalySubscriptions: [ // AnomalySubscriptions // required
|
|
42
|
+
* // { // AnomalySubscription
|
|
43
|
+
* // SubscriptionArn: "STRING_VALUE",
|
|
44
|
+
* // AccountId: "STRING_VALUE",
|
|
45
|
+
* // MonitorArnList: [ // MonitorArnList // required
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // Subscribers: [ // Subscribers // required
|
|
49
|
+
* // { // Subscriber
|
|
50
|
+
* // Address: "STRING_VALUE",
|
|
51
|
+
* // Type: "EMAIL" || "SNS",
|
|
52
|
+
* // Status: "CONFIRMED" || "DECLINED",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // Threshold: Number("double"),
|
|
56
|
+
* // Frequency: "DAILY" || "IMMEDIATE" || "WEEKLY", // required
|
|
57
|
+
* // SubscriptionName: "STRING_VALUE", // required
|
|
58
|
+
* // ThresholdExpression: { // Expression
|
|
59
|
+
* // Or: [ // Expressions
|
|
60
|
+
* // {
|
|
61
|
+
* // Or: [
|
|
62
|
+
* // "<Expression>",
|
|
63
|
+
* // ],
|
|
64
|
+
* // And: [
|
|
65
|
+
* // "<Expression>",
|
|
66
|
+
* // ],
|
|
67
|
+
* // Not: "<Expression>",
|
|
68
|
+
* // Dimensions: { // DimensionValues
|
|
69
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
70
|
+
* // Values: [ // Values
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // MatchOptions: [ // MatchOptions
|
|
74
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // Tags: { // TagValues
|
|
78
|
+
* // Key: "STRING_VALUE",
|
|
79
|
+
* // Values: [
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // MatchOptions: [
|
|
83
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // CostCategories: { // CostCategoryValues
|
|
87
|
+
* // Key: "STRING_VALUE",
|
|
88
|
+
* // Values: [
|
|
89
|
+
* // "STRING_VALUE",
|
|
90
|
+
* // ],
|
|
91
|
+
* // MatchOptions: [
|
|
92
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // And: [
|
|
98
|
+
* // "<Expression>",
|
|
99
|
+
* // ],
|
|
100
|
+
* // Not: "<Expression>",
|
|
101
|
+
* // Dimensions: {
|
|
102
|
+
* // Key: "AZ" || "INSTANCE_TYPE" || "LINKED_ACCOUNT" || "LINKED_ACCOUNT_NAME" || "OPERATION" || "PURCHASE_TYPE" || "REGION" || "SERVICE" || "SERVICE_CODE" || "USAGE_TYPE" || "USAGE_TYPE_GROUP" || "RECORD_TYPE" || "OPERATING_SYSTEM" || "TENANCY" || "SCOPE" || "PLATFORM" || "SUBSCRIPTION_ID" || "LEGAL_ENTITY_NAME" || "DEPLOYMENT_OPTION" || "DATABASE_ENGINE" || "CACHE_ENGINE" || "INSTANCE_TYPE_FAMILY" || "BILLING_ENTITY" || "RESERVATION_ID" || "RESOURCE_ID" || "RIGHTSIZING_TYPE" || "SAVINGS_PLANS_TYPE" || "SAVINGS_PLAN_ARN" || "PAYMENT_OPTION" || "AGREEMENT_END_DATE_TIME_AFTER" || "AGREEMENT_END_DATE_TIME_BEFORE" || "INVOICING_ENTITY" || "ANOMALY_TOTAL_IMPACT_ABSOLUTE" || "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
|
103
|
+
* // Values: [
|
|
104
|
+
* // "STRING_VALUE",
|
|
105
|
+
* // ],
|
|
106
|
+
* // MatchOptions: [
|
|
107
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
108
|
+
* // ],
|
|
109
|
+
* // },
|
|
110
|
+
* // Tags: {
|
|
111
|
+
* // Key: "STRING_VALUE",
|
|
112
|
+
* // Values: [
|
|
113
|
+
* // "STRING_VALUE",
|
|
114
|
+
* // ],
|
|
115
|
+
* // MatchOptions: [
|
|
116
|
+
* // "EQUALS" || "ABSENT" || "STARTS_WITH" || "ENDS_WITH" || "CONTAINS" || "CASE_SENSITIVE" || "CASE_INSENSITIVE" || "GREATER_THAN_OR_EQUAL",
|
|
117
|
+
* // ],
|
|
118
|
+
* // },
|
|
119
|
+
* // CostCategories: {
|
|
120
|
+
* // Key: "STRING_VALUE",
|
|
121
|
+
* // Values: "<Values>",
|
|
122
|
+
* // MatchOptions: "<MatchOptions>",
|
|
123
|
+
* // },
|
|
124
|
+
* // },
|
|
125
|
+
* // },
|
|
126
|
+
* // ],
|
|
127
|
+
* // NextPageToken: "STRING_VALUE",
|
|
128
|
+
* // };
|
|
129
|
+
*
|
|
40
130
|
* ```
|
|
41
131
|
*
|
|
42
132
|
* @param GetAnomalySubscriptionsCommandInput - {@link GetAnomalySubscriptionsCommandInput}
|
|
@@ -54,6 +144,8 @@ export interface GetAnomalySubscriptionsCommandOutput extends GetAnomalySubscrip
|
|
|
54
144
|
* @throws {@link UnknownSubscriptionException} (client fault)
|
|
55
145
|
* <p>The cost anomaly subscription does not exist for the account. </p>
|
|
56
146
|
*
|
|
147
|
+
* @throws {@link CostExplorerServiceException}
|
|
148
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
57
149
|
*
|
|
58
150
|
*/
|
|
59
151
|
export declare class GetAnomalySubscriptionsCommand extends $Command<GetAnomalySubscriptionsCommandInput, GetAnomalySubscriptionsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -118,6 +118,52 @@ export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, _
|
|
|
118
118
|
* };
|
|
119
119
|
* const command = new GetCostAndUsageCommand(input);
|
|
120
120
|
* const response = await client.send(command);
|
|
121
|
+
* // { // GetCostAndUsageResponse
|
|
122
|
+
* // NextPageToken: "STRING_VALUE",
|
|
123
|
+
* // GroupDefinitions: [ // GroupDefinitions
|
|
124
|
+
* // { // GroupDefinition
|
|
125
|
+
* // Type: "DIMENSION" || "TAG" || "COST_CATEGORY",
|
|
126
|
+
* // Key: "STRING_VALUE",
|
|
127
|
+
* // },
|
|
128
|
+
* // ],
|
|
129
|
+
* // ResultsByTime: [ // ResultsByTime
|
|
130
|
+
* // { // ResultByTime
|
|
131
|
+
* // TimePeriod: { // DateInterval
|
|
132
|
+
* // Start: "STRING_VALUE", // required
|
|
133
|
+
* // End: "STRING_VALUE", // required
|
|
134
|
+
* // },
|
|
135
|
+
* // Total: { // Metrics
|
|
136
|
+
* // "<keys>": { // MetricValue
|
|
137
|
+
* // Amount: "STRING_VALUE",
|
|
138
|
+
* // Unit: "STRING_VALUE",
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // Groups: [ // Groups
|
|
142
|
+
* // { // Group
|
|
143
|
+
* // Keys: [ // Keys
|
|
144
|
+
* // "STRING_VALUE",
|
|
145
|
+
* // ],
|
|
146
|
+
* // Metrics: {
|
|
147
|
+
* // "<keys>": {
|
|
148
|
+
* // Amount: "STRING_VALUE",
|
|
149
|
+
* // Unit: "STRING_VALUE",
|
|
150
|
+
* // },
|
|
151
|
+
* // },
|
|
152
|
+
* // },
|
|
153
|
+
* // ],
|
|
154
|
+
* // Estimated: true || false,
|
|
155
|
+
* // },
|
|
156
|
+
* // ],
|
|
157
|
+
* // DimensionValueAttributes: [ // DimensionValuesWithAttributesList
|
|
158
|
+
* // { // DimensionValuesWithAttributes
|
|
159
|
+
* // Value: "STRING_VALUE",
|
|
160
|
+
* // Attributes: { // Attributes
|
|
161
|
+
* // "<keys>": "STRING_VALUE",
|
|
162
|
+
* // },
|
|
163
|
+
* // },
|
|
164
|
+
* // ],
|
|
165
|
+
* // };
|
|
166
|
+
*
|
|
121
167
|
* ```
|
|
122
168
|
*
|
|
123
169
|
* @param GetCostAndUsageCommandInput - {@link GetCostAndUsageCommandInput}
|
|
@@ -142,6 +188,8 @@ export interface GetCostAndUsageCommandOutput extends GetCostAndUsageResponse, _
|
|
|
142
188
|
* <p>Your request parameters changed between pages. Try again with the old parameters or
|
|
143
189
|
* without a pagination token.</p>
|
|
144
190
|
*
|
|
191
|
+
* @throws {@link CostExplorerServiceException}
|
|
192
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
145
193
|
*
|
|
146
194
|
*/
|
|
147
195
|
export declare class GetCostAndUsageCommand extends $Command<GetCostAndUsageCommandInput, GetCostAndUsageCommandOutput, CostExplorerClientResolvedConfig> {
|
|
@@ -123,6 +123,52 @@ export interface GetCostAndUsageWithResourcesCommandOutput extends GetCostAndUsa
|
|
|
123
123
|
* };
|
|
124
124
|
* const command = new GetCostAndUsageWithResourcesCommand(input);
|
|
125
125
|
* const response = await client.send(command);
|
|
126
|
+
* // { // GetCostAndUsageWithResourcesResponse
|
|
127
|
+
* // NextPageToken: "STRING_VALUE",
|
|
128
|
+
* // GroupDefinitions: [ // GroupDefinitions
|
|
129
|
+
* // { // GroupDefinition
|
|
130
|
+
* // Type: "DIMENSION" || "TAG" || "COST_CATEGORY",
|
|
131
|
+
* // Key: "STRING_VALUE",
|
|
132
|
+
* // },
|
|
133
|
+
* // ],
|
|
134
|
+
* // ResultsByTime: [ // ResultsByTime
|
|
135
|
+
* // { // ResultByTime
|
|
136
|
+
* // TimePeriod: { // DateInterval
|
|
137
|
+
* // Start: "STRING_VALUE", // required
|
|
138
|
+
* // End: "STRING_VALUE", // required
|
|
139
|
+
* // },
|
|
140
|
+
* // Total: { // Metrics
|
|
141
|
+
* // "<keys>": { // MetricValue
|
|
142
|
+
* // Amount: "STRING_VALUE",
|
|
143
|
+
* // Unit: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // },
|
|
146
|
+
* // Groups: [ // Groups
|
|
147
|
+
* // { // Group
|
|
148
|
+
* // Keys: [ // Keys
|
|
149
|
+
* // "STRING_VALUE",
|
|
150
|
+
* // ],
|
|
151
|
+
* // Metrics: {
|
|
152
|
+
* // "<keys>": {
|
|
153
|
+
* // Amount: "STRING_VALUE",
|
|
154
|
+
* // Unit: "STRING_VALUE",
|
|
155
|
+
* // },
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // ],
|
|
159
|
+
* // Estimated: true || false,
|
|
160
|
+
* // },
|
|
161
|
+
* // ],
|
|
162
|
+
* // DimensionValueAttributes: [ // DimensionValuesWithAttributesList
|
|
163
|
+
* // { // DimensionValuesWithAttributes
|
|
164
|
+
* // Value: "STRING_VALUE",
|
|
165
|
+
* // Attributes: { // Attributes
|
|
166
|
+
* // "<keys>": "STRING_VALUE",
|
|
167
|
+
* // },
|
|
168
|
+
* // },
|
|
169
|
+
* // ],
|
|
170
|
+
* // };
|
|
171
|
+
*
|
|
126
172
|
* ```
|
|
127
173
|
*
|
|
128
174
|
* @param GetCostAndUsageWithResourcesCommandInput - {@link GetCostAndUsageWithResourcesCommandInput}
|
|
@@ -147,6 +193,8 @@ export interface GetCostAndUsageWithResourcesCommandOutput extends GetCostAndUsa
|
|
|
147
193
|
* <p>Your request parameters changed between pages. Try again with the old parameters or
|
|
148
194
|
* without a pagination token.</p>
|
|
149
195
|
*
|
|
196
|
+
* @throws {@link CostExplorerServiceException}
|
|
197
|
+
* <p>Base exception class for all service exceptions from CostExplorer service.</p>
|
|
150
198
|
*
|
|
151
199
|
*/
|
|
152
200
|
export declare class GetCostAndUsageWithResourcesCommand extends $Command<GetCostAndUsageWithResourcesCommandInput, GetCostAndUsageWithResourcesCommandOutput, CostExplorerClientResolvedConfig> {
|