@aws-sdk/client-cost-explorer 3.224.0 → 3.229.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.
@@ -3771,6 +3771,7 @@ const deserializeAws_json1_1RightsizingRecommendationSummary = (output, context)
3771
3771
  const deserializeAws_json1_1RootCause = (output, context) => {
3772
3772
  return {
3773
3773
  LinkedAccount: (0, smithy_client_1.expectString)(output.LinkedAccount),
3774
+ LinkedAccountName: (0, smithy_client_1.expectString)(output.LinkedAccountName),
3774
3775
  Region: (0, smithy_client_1.expectString)(output.Region),
3775
3776
  Service: (0, smithy_client_1.expectString)(output.Service),
3776
3777
  UsageType: (0, smithy_client_1.expectString)(output.UsageType),
@@ -7,8 +7,8 @@ const sha256_browser_1 = require("@aws-crypto/sha256-browser");
7
7
  const config_resolver_1 = require("@aws-sdk/config-resolver");
8
8
  const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
9
9
  const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
10
- const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
10
  const util_body_length_browser_1 = require("@aws-sdk/util-body-length-browser");
11
+ const util_retry_1 = require("@aws-sdk/util-retry");
12
12
  const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
13
13
  const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
14
14
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
@@ -27,10 +27,10 @@ const getRuntimeConfig = (config) => {
27
27
  credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
28
28
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
29
29
  (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
30
- maxAttempts: config?.maxAttempts ?? middleware_retry_1.DEFAULT_MAX_ATTEMPTS,
30
+ maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
31
31
  region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
32
32
  requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
33
- retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE),
33
+ retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
34
34
  sha256: config?.sha256 ?? sha256_browser_1.Sha256,
35
35
  streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
36
36
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
11
  const node_config_provider_1 = require("@aws-sdk/node-config-provider");
12
12
  const node_http_handler_1 = require("@aws-sdk/node-http-handler");
13
13
  const util_body_length_node_1 = require("@aws-sdk/util-body-length-node");
14
+ const util_retry_1 = require("@aws-sdk/util-retry");
14
15
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
15
16
  const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
16
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
@@ -37,7 +38,7 @@ const getRuntimeConfig = (config) => {
37
38
  retryMode: config?.retryMode ??
38
39
  (0, node_config_provider_1.loadConfig)({
39
40
  ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
40
- default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
41
+ default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
41
42
  }),
42
43
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
43
44
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
@@ -3693,6 +3693,7 @@ const deserializeAws_json1_1RightsizingRecommendationSummary = (output, context)
3693
3693
  const deserializeAws_json1_1RootCause = (output, context) => {
3694
3694
  return {
3695
3695
  LinkedAccount: __expectString(output.LinkedAccount),
3696
+ LinkedAccountName: __expectString(output.LinkedAccountName),
3696
3697
  Region: __expectString(output.Region),
3697
3698
  Service: __expectString(output.Service),
3698
3699
  UsageType: __expectString(output.UsageType),
@@ -3,8 +3,8 @@ import { Sha256 } from "@aws-crypto/sha256-browser";
3
3
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
4
4
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
5
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
- import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
7
6
  import { calculateBodyLength } from "@aws-sdk/util-body-length-browser";
7
+ import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/util-retry";
8
8
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
9
9
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
@@ -3,10 +3,11 @@ import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
3
3
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
4
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
5
5
  import { Hash } from "@aws-sdk/hash-node";
6
- import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@aws-sdk/middleware-retry";
6
+ import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
7
7
  import { loadConfig as loadNodeConfig } from "@aws-sdk/node-config-provider";
8
8
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/node-http-handler";
9
9
  import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
10
+ import { DEFAULT_RETRY_MODE } from "@aws-sdk/util-retry";
10
11
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
11
12
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
12
13
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
@@ -36,8 +36,9 @@ export interface Impact {
36
36
  TotalImpact?: number;
37
37
  }
38
38
  /**
39
- * <p>The combination of Amazon Web Service, linked account, Region, and usage type
40
- * where a cost anomaly is observed. </p>
39
+ * <p>The combination of Amazon Web Service, linked account, linked account name,
40
+ * Region, and usage type where a cost anomaly is observed. The linked account name will
41
+ * only be available when the account name can be identified.</p>
41
42
  */
42
43
  export interface RootCause {
43
44
  /**
@@ -56,6 +57,10 @@ export interface RootCause {
56
57
  * <p>The <code>UsageType</code> value that's associated with the cost anomaly. </p>
57
58
  */
58
59
  UsageType?: string;
60
+ /**
61
+ * <p>The member account name value that's associated with the cost anomaly.</p>
62
+ */
63
+ LinkedAccountName?: string;
59
64
  }
60
65
  /**
61
66
  * <p>An unusual cost pattern. This consists of the detailed metadata and the current status
@@ -128,10 +133,10 @@ export declare enum MatchOption {
128
133
  }
129
134
  /**
130
135
  * <p>The Cost Categories values used for filtering the costs.</p>
131
- * <p>If <code>Values</code> and <code>Key</code> are not specified, the <code>ABSENT</code>
136
+ * <p>If <code>Values</code> and <code>Key</code> are not specified, the <code>ABSENT</code>
132
137
  * <code>MatchOption</code> is applied to all Cost Categories. That is, it filters on
133
138
  * resources that aren't mapped to any Cost Categories.</p>
134
- * <p>If <code>Values</code> is provided and <code>Key</code> isn't specified, the
139
+ * <p>If <code>Values</code> is provided and <code>Key</code> isn't specified, the
135
140
  * <code>ABSENT</code>
136
141
  * <code>MatchOption</code> is applied to the Cost Categories <code>Key</code> only. That
137
142
  * is, it filters on resources without the given Cost Categories key.</p>
@@ -214,10 +219,10 @@ export interface DimensionValues {
214
219
  }
215
220
  /**
216
221
  * <p>The values that are available for a tag.</p>
217
- * <p>If <code>Values</code> and <code>Key</code> aren't specified, the <code>ABSENT</code>
222
+ * <p>If <code>Values</code> and <code>Key</code> aren't specified, the <code>ABSENT</code>
218
223
  * <code>MatchOption</code> is applied to all tags. That is, it's filtered on resources
219
224
  * with no tags.</p>
220
- * <p>If <code>Key</code> is provided and <code>Values</code> isn't specified, the
225
+ * <p>If <code>Key</code> is provided and <code>Values</code> isn't specified, the
221
226
  * <code>ABSENT</code>
222
227
  * <code>MatchOption</code> is applied to the tag <code>Key</code> only. That is, it's
223
228
  * filtered on resources without the given tag key.</p>
@@ -312,7 +317,7 @@ export interface AnomalySubscription {
312
317
  }
313
318
  /**
314
319
  * <p>The tag structure that contains a tag key and value. </p>
315
- * <note>
320
+ * <note>
316
321
  * <p>Tagging is supported only for the following Cost Explorer resource types:
317
322
  * <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AnomalyMonitor.html">
318
323
  * <code>AnomalyMonitor</code>
@@ -321,7 +326,7 @@ export interface AnomalySubscription {
321
326
  * </a>, <a href="https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_CostCategory.html">
322
327
  * <code>CostCategory</code>
323
328
  * </a>.</p>
324
- * </note>
329
+ * </note>
325
330
  */
326
331
  export interface ResourceTag {
327
332
  /**
@@ -428,7 +433,7 @@ export declare enum CostCategoryInheritedValueDimensionName {
428
433
  export interface CostCategoryInheritedValueDimension {
429
434
  /**
430
435
  * <p>The name of the dimension that's used to group costs.</p>
431
- * <p>If you specify <code>LINKED_ACCOUNT_NAME</code>, the cost category value is based on
436
+ * <p>If you specify <code>LINKED_ACCOUNT_NAME</code>, the cost category value is based on
432
437
  * account name. If you specify <code>TAG</code>, the cost category value is based on the
433
438
  * value of the specified tag key.</p>
434
439
  */
@@ -484,13 +489,13 @@ export interface CostCategorySplitChargeRule {
484
489
  Targets: string[] | undefined;
485
490
  /**
486
491
  * <p>The method that's used to define how to split your source costs across your targets. </p>
487
- * <p>
492
+ * <p>
488
493
  * <code>Proportional</code> - Allocates charges across your targets based on the
489
494
  * proportional weighted cost of each target.</p>
490
- * <p>
495
+ * <p>
491
496
  * <code>Fixed</code> - Allocates charges across your targets based on your defined
492
497
  * allocation percentage.</p>
493
- * <p>><code>Even</code> - Allocates costs evenly across all targets.</p>
498
+ * <p>><code>Even</code> - Allocates costs evenly across all targets.</p>
494
499
  */
495
500
  Method: CostCategorySplitChargeMethod | string | undefined;
496
501
  /**
@@ -1192,7 +1197,7 @@ export interface CoverageHours {
1192
1197
  * the xlarge instance, even though both instances show only one instance-hour. When you
1193
1198
  * use normalized units instead of instance-hours, the xlarge instance used 8 normalized
1194
1199
  * units, and the 2xlarge instance used 16 normalized units.</p>
1195
- * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html">Modifying Reserved Instances</a>
1200
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html">Modifying Reserved Instances</a>
1196
1201
  * in the <i>Amazon Elastic Compute Cloud User Guide for Linux
1197
1202
  * Instances</i>.</p>
1198
1203
  */
@@ -2864,7 +2869,7 @@ export interface ListCostCategoryDefinitionsRequest {
2864
2869
  /**
2865
2870
  * <p>A reference to a Cost Category containing only enough information to identify the Cost
2866
2871
  * Category.</p>
2867
- * <p>You can use this information to retrieve the full Cost Category information using
2872
+ * <p>You can use this information to retrieve the full Cost Category information using
2868
2873
  * <code>DescribeCostCategory</code>.</p>
2869
2874
  */
2870
2875
  export interface CostCategoryReference {
@@ -3214,25 +3219,25 @@ export interface UpdateCostCategoryDefinitionResponse {
3214
3219
  }
3215
3220
  /**
3216
3221
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
3217
- * <ul>
3222
+ * <ul>
3218
3223
  * <li>
3219
- * <p>Simple dimension values - You can set the dimension name and values for the
3224
+ * <p>Simple dimension values - You can set the dimension name and values for the
3220
3225
  * filters that you plan to use. For example, you can filter for
3221
3226
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
3222
3227
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
3223
3228
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
3224
3229
  * example is as follows:</p>
3225
- * <p>
3226
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3230
+ * <p>
3231
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3227
3232
  * } }</code>
3228
- * </p>
3229
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3233
+ * </p>
3234
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3230
3235
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
3231
3236
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
3232
3237
  * lines. </p>
3233
3238
  * </li>
3234
3239
  * <li>
3235
- * <p>Compound dimension values with logical operations - You can use multiple
3240
+ * <p>Compound dimension values with logical operations - You can use multiple
3236
3241
  * <code>Expression</code> types and the logical operators
3237
3242
  * <code>AND/OR/NOT</code> to create a list of one or more
3238
3243
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -3240,25 +3245,25 @@ export interface UpdateCostCategoryDefinitionResponse {
3240
3245
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
3241
3246
  * DataTransfer)</code>. The <code>Expression</code> for that is as
3242
3247
  * follows:</p>
3243
- * <p>
3244
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3248
+ * <p>
3249
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3245
3250
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
3246
3251
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
3247
3252
  * ["DataTransfer"] }}} ] } </code>
3248
- * </p>
3249
- * <note>
3250
- * <p>Because each <code>Expression</code> can have only one operator, the
3253
+ * </p>
3254
+ * <note>
3255
+ * <p>Because each <code>Expression</code> can have only one operator, the
3251
3256
  * service returns an error if more than one is specified. The following
3252
3257
  * example shows an <code>Expression</code> object that creates an
3253
3258
  * error.</p>
3254
- * </note>
3255
- * <p>
3256
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3259
+ * </note>
3260
+ * <p>
3261
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3257
3262
  * "Values": [ "DataTransfer" ] } } </code>
3258
- * </p>
3263
+ * </p>
3259
3264
  * </li>
3260
3265
  * </ul>
3261
- * <note>
3266
+ * <note>
3262
3267
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
3263
3268
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
3264
3269
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -3267,7 +3272,7 @@ export interface UpdateCostCategoryDefinitionResponse {
3267
3272
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
3268
3273
  * supported. AND and OR aren't supported. Dimensions are limited to
3269
3274
  * <code>LINKED_ACCOUNT</code>.</p>
3270
- * </note>
3275
+ * </note>
3271
3276
  */
3272
3277
  export interface Expression {
3273
3278
  /**
@@ -3331,25 +3336,25 @@ export interface AnomalyMonitor {
3331
3336
  MonitorDimension?: MonitorDimension | string;
3332
3337
  /**
3333
3338
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
3334
- * <ul>
3339
+ * <ul>
3335
3340
  * <li>
3336
- * <p>Simple dimension values - You can set the dimension name and values for the
3341
+ * <p>Simple dimension values - You can set the dimension name and values for the
3337
3342
  * filters that you plan to use. For example, you can filter for
3338
3343
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
3339
3344
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
3340
3345
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
3341
3346
  * example is as follows:</p>
3342
- * <p>
3343
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3347
+ * <p>
3348
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3344
3349
  * } }</code>
3345
- * </p>
3346
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3350
+ * </p>
3351
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3347
3352
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
3348
3353
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
3349
3354
  * lines. </p>
3350
3355
  * </li>
3351
3356
  * <li>
3352
- * <p>Compound dimension values with logical operations - You can use multiple
3357
+ * <p>Compound dimension values with logical operations - You can use multiple
3353
3358
  * <code>Expression</code> types and the logical operators
3354
3359
  * <code>AND/OR/NOT</code> to create a list of one or more
3355
3360
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -3357,25 +3362,25 @@ export interface AnomalyMonitor {
3357
3362
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
3358
3363
  * DataTransfer)</code>. The <code>Expression</code> for that is as
3359
3364
  * follows:</p>
3360
- * <p>
3361
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3365
+ * <p>
3366
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3362
3367
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
3363
3368
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
3364
3369
  * ["DataTransfer"] }}} ] } </code>
3365
- * </p>
3366
- * <note>
3367
- * <p>Because each <code>Expression</code> can have only one operator, the
3370
+ * </p>
3371
+ * <note>
3372
+ * <p>Because each <code>Expression</code> can have only one operator, the
3368
3373
  * service returns an error if more than one is specified. The following
3369
3374
  * example shows an <code>Expression</code> object that creates an
3370
3375
  * error.</p>
3371
- * </note>
3372
- * <p>
3373
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3376
+ * </note>
3377
+ * <p>
3378
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3374
3379
  * "Values": [ "DataTransfer" ] } } </code>
3375
- * </p>
3380
+ * </p>
3376
3381
  * </li>
3377
3382
  * </ul>
3378
- * <note>
3383
+ * <note>
3379
3384
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
3380
3385
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
3381
3386
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -3384,7 +3389,7 @@ export interface AnomalyMonitor {
3384
3389
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
3385
3390
  * supported. AND and OR aren't supported. Dimensions are limited to
3386
3391
  * <code>LINKED_ACCOUNT</code>.</p>
3387
- * </note>
3392
+ * </note>
3388
3393
  */
3389
3394
  MonitorSpecification?: Expression;
3390
3395
  /**
@@ -3408,9 +3413,9 @@ export interface CostCategoryRule {
3408
3413
  * Currently the only dimensions supported are <code>LINKED_ACCOUNT</code>,
3409
3414
  * <code>SERVICE_CODE</code>, <code>RECORD_TYPE</code>, and
3410
3415
  * <code>LINKED_ACCOUNT_NAME</code>.</p>
3411
- * <p>Root level <code>OR</code> isn't supported. We recommend that you create a separate
3416
+ * <p>Root level <code>OR</code> isn't supported. We recommend that you create a separate
3412
3417
  * rule instead.</p>
3413
- * <p>
3418
+ * <p>
3414
3419
  * <code>RECORD_TYPE</code> is a dimension used for Cost Explorer APIs, and is also
3415
3420
  * supported for Cost Category expressions. This dimension uses different terms, depending
3416
3421
  * on whether you're using the console or API/JSON editor. For a detailed comparison, see
@@ -3586,25 +3591,25 @@ export interface GetCostCategoriesRequest {
3586
3591
  CostCategoryName?: string;
3587
3592
  /**
3588
3593
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
3589
- * <ul>
3594
+ * <ul>
3590
3595
  * <li>
3591
- * <p>Simple dimension values - You can set the dimension name and values for the
3596
+ * <p>Simple dimension values - You can set the dimension name and values for the
3592
3597
  * filters that you plan to use. For example, you can filter for
3593
3598
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
3594
3599
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
3595
3600
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
3596
3601
  * example is as follows:</p>
3597
- * <p>
3598
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3602
+ * <p>
3603
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
3599
3604
  * } }</code>
3600
- * </p>
3601
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3605
+ * </p>
3606
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
3602
3607
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
3603
3608
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
3604
3609
  * lines. </p>
3605
3610
  * </li>
3606
3611
  * <li>
3607
- * <p>Compound dimension values with logical operations - You can use multiple
3612
+ * <p>Compound dimension values with logical operations - You can use multiple
3608
3613
  * <code>Expression</code> types and the logical operators
3609
3614
  * <code>AND/OR/NOT</code> to create a list of one or more
3610
3615
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -3612,25 +3617,25 @@ export interface GetCostCategoriesRequest {
3612
3617
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
3613
3618
  * DataTransfer)</code>. The <code>Expression</code> for that is as
3614
3619
  * follows:</p>
3615
- * <p>
3616
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3620
+ * <p>
3621
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
3617
3622
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
3618
3623
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
3619
3624
  * ["DataTransfer"] }}} ] } </code>
3620
- * </p>
3621
- * <note>
3622
- * <p>Because each <code>Expression</code> can have only one operator, the
3625
+ * </p>
3626
+ * <note>
3627
+ * <p>Because each <code>Expression</code> can have only one operator, the
3623
3628
  * service returns an error if more than one is specified. The following
3624
3629
  * example shows an <code>Expression</code> object that creates an
3625
3630
  * error.</p>
3626
- * </note>
3627
- * <p>
3628
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3631
+ * </note>
3632
+ * <p>
3633
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
3629
3634
  * "Values": [ "DataTransfer" ] } } </code>
3630
- * </p>
3635
+ * </p>
3631
3636
  * </li>
3632
3637
  * </ul>
3633
- * <note>
3638
+ * <note>
3634
3639
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
3635
3640
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
3636
3641
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -3639,7 +3644,7 @@ export interface GetCostCategoriesRequest {
3639
3644
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
3640
3645
  * supported. AND and OR aren't supported. Dimensions are limited to
3641
3646
  * <code>LINKED_ACCOUNT</code>.</p>
3642
- * </note>
3647
+ * </note>
3643
3648
  */
3644
3649
  Filter?: Expression;
3645
3650
  /**
@@ -3743,7 +3748,6 @@ export interface GetCostForecastRequest {
3743
3748
  /**
3744
3749
  * <p>The filters that you want to use to filter your forecast. The
3745
3750
  * <code>GetCostForecast</code> API supports filtering by the following dimensions:</p>
3746
- *
3747
3751
  * <ul>
3748
3752
  * <li>
3749
3753
  * <p>
@@ -4072,25 +4076,25 @@ export interface GetDimensionValuesRequest {
4072
4076
  Context?: Context | string;
4073
4077
  /**
4074
4078
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
4075
- * <ul>
4079
+ * <ul>
4076
4080
  * <li>
4077
- * <p>Simple dimension values - You can set the dimension name and values for the
4081
+ * <p>Simple dimension values - You can set the dimension name and values for the
4078
4082
  * filters that you plan to use. For example, you can filter for
4079
4083
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
4080
4084
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
4081
4085
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
4082
4086
  * example is as follows:</p>
4083
- * <p>
4084
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4087
+ * <p>
4088
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4085
4089
  * } }</code>
4086
- * </p>
4087
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4090
+ * </p>
4091
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4088
4092
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
4089
4093
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
4090
4094
  * lines. </p>
4091
4095
  * </li>
4092
4096
  * <li>
4093
- * <p>Compound dimension values with logical operations - You can use multiple
4097
+ * <p>Compound dimension values with logical operations - You can use multiple
4094
4098
  * <code>Expression</code> types and the logical operators
4095
4099
  * <code>AND/OR/NOT</code> to create a list of one or more
4096
4100
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -4098,25 +4102,25 @@ export interface GetDimensionValuesRequest {
4098
4102
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
4099
4103
  * DataTransfer)</code>. The <code>Expression</code> for that is as
4100
4104
  * follows:</p>
4101
- * <p>
4102
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4105
+ * <p>
4106
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4103
4107
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
4104
4108
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
4105
4109
  * ["DataTransfer"] }}} ] } </code>
4106
- * </p>
4107
- * <note>
4108
- * <p>Because each <code>Expression</code> can have only one operator, the
4110
+ * </p>
4111
+ * <note>
4112
+ * <p>Because each <code>Expression</code> can have only one operator, the
4109
4113
  * service returns an error if more than one is specified. The following
4110
4114
  * example shows an <code>Expression</code> object that creates an
4111
4115
  * error.</p>
4112
- * </note>
4113
- * <p>
4114
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4116
+ * </note>
4117
+ * <p>
4118
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4115
4119
  * "Values": [ "DataTransfer" ] } } </code>
4116
- * </p>
4120
+ * </p>
4117
4121
  * </li>
4118
4122
  * </ul>
4119
- * <note>
4123
+ * <note>
4120
4124
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
4121
4125
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
4122
4126
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -4125,7 +4129,7 @@ export interface GetDimensionValuesRequest {
4125
4129
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
4126
4130
  * supported. AND and OR aren't supported. Dimensions are limited to
4127
4131
  * <code>LINKED_ACCOUNT</code>.</p>
4128
- * </note>
4132
+ * </note>
4129
4133
  */
4130
4134
  Filter?: Expression;
4131
4135
  /**
@@ -4391,25 +4395,25 @@ export interface GetReservationPurchaseRecommendationRequest {
4391
4395
  Service: string | undefined;
4392
4396
  /**
4393
4397
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
4394
- * <ul>
4398
+ * <ul>
4395
4399
  * <li>
4396
- * <p>Simple dimension values - You can set the dimension name and values for the
4400
+ * <p>Simple dimension values - You can set the dimension name and values for the
4397
4401
  * filters that you plan to use. For example, you can filter for
4398
4402
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
4399
4403
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
4400
4404
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
4401
4405
  * example is as follows:</p>
4402
- * <p>
4403
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4406
+ * <p>
4407
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4404
4408
  * } }</code>
4405
- * </p>
4406
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4409
+ * </p>
4410
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4407
4411
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
4408
4412
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
4409
4413
  * lines. </p>
4410
4414
  * </li>
4411
4415
  * <li>
4412
- * <p>Compound dimension values with logical operations - You can use multiple
4416
+ * <p>Compound dimension values with logical operations - You can use multiple
4413
4417
  * <code>Expression</code> types and the logical operators
4414
4418
  * <code>AND/OR/NOT</code> to create a list of one or more
4415
4419
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -4417,25 +4421,25 @@ export interface GetReservationPurchaseRecommendationRequest {
4417
4421
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
4418
4422
  * DataTransfer)</code>. The <code>Expression</code> for that is as
4419
4423
  * follows:</p>
4420
- * <p>
4421
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4424
+ * <p>
4425
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4422
4426
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
4423
4427
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
4424
4428
  * ["DataTransfer"] }}} ] } </code>
4425
- * </p>
4426
- * <note>
4427
- * <p>Because each <code>Expression</code> can have only one operator, the
4429
+ * </p>
4430
+ * <note>
4431
+ * <p>Because each <code>Expression</code> can have only one operator, the
4428
4432
  * service returns an error if more than one is specified. The following
4429
4433
  * example shows an <code>Expression</code> object that creates an
4430
4434
  * error.</p>
4431
- * </note>
4432
- * <p>
4433
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4435
+ * </note>
4436
+ * <p>
4437
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4434
4438
  * "Values": [ "DataTransfer" ] } } </code>
4435
- * </p>
4439
+ * </p>
4436
4440
  * </li>
4437
4441
  * </ul>
4438
- * <note>
4442
+ * <note>
4439
4443
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
4440
4444
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
4441
4445
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -4444,7 +4448,7 @@ export interface GetReservationPurchaseRecommendationRequest {
4444
4448
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
4445
4449
  * supported. AND and OR aren't supported. Dimensions are limited to
4446
4450
  * <code>LINKED_ACCOUNT</code>.</p>
4447
- * </note>
4451
+ * </note>
4448
4452
  */
4449
4453
  Filter?: Expression;
4450
4454
  /**
@@ -4660,25 +4664,25 @@ export interface GetReservationUtilizationRequest {
4660
4664
  export interface GetRightsizingRecommendationRequest {
4661
4665
  /**
4662
4666
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
4663
- * <ul>
4667
+ * <ul>
4664
4668
  * <li>
4665
- * <p>Simple dimension values - You can set the dimension name and values for the
4669
+ * <p>Simple dimension values - You can set the dimension name and values for the
4666
4670
  * filters that you plan to use. For example, you can filter for
4667
4671
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
4668
4672
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
4669
4673
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
4670
4674
  * example is as follows:</p>
4671
- * <p>
4672
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4675
+ * <p>
4676
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
4673
4677
  * } }</code>
4674
- * </p>
4675
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4678
+ * </p>
4679
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
4676
4680
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
4677
4681
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
4678
4682
  * lines. </p>
4679
4683
  * </li>
4680
4684
  * <li>
4681
- * <p>Compound dimension values with logical operations - You can use multiple
4685
+ * <p>Compound dimension values with logical operations - You can use multiple
4682
4686
  * <code>Expression</code> types and the logical operators
4683
4687
  * <code>AND/OR/NOT</code> to create a list of one or more
4684
4688
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -4686,25 +4690,25 @@ export interface GetRightsizingRecommendationRequest {
4686
4690
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
4687
4691
  * DataTransfer)</code>. The <code>Expression</code> for that is as
4688
4692
  * follows:</p>
4689
- * <p>
4690
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4693
+ * <p>
4694
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
4691
4695
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
4692
4696
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
4693
4697
  * ["DataTransfer"] }}} ] } </code>
4694
- * </p>
4695
- * <note>
4696
- * <p>Because each <code>Expression</code> can have only one operator, the
4698
+ * </p>
4699
+ * <note>
4700
+ * <p>Because each <code>Expression</code> can have only one operator, the
4697
4701
  * service returns an error if more than one is specified. The following
4698
4702
  * example shows an <code>Expression</code> object that creates an
4699
4703
  * error.</p>
4700
- * </note>
4701
- * <p>
4702
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4704
+ * </note>
4705
+ * <p>
4706
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
4703
4707
  * "Values": [ "DataTransfer" ] } } </code>
4704
- * </p>
4708
+ * </p>
4705
4709
  * </li>
4706
4710
  * </ul>
4707
- * <note>
4711
+ * <note>
4708
4712
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
4709
4713
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
4710
4714
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -4713,7 +4717,7 @@ export interface GetRightsizingRecommendationRequest {
4713
4717
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
4714
4718
  * supported. AND and OR aren't supported. Dimensions are limited to
4715
4719
  * <code>LINKED_ACCOUNT</code>.</p>
4716
- * </note>
4720
+ * </note>
4717
4721
  */
4718
4722
  Filter?: Expression;
4719
4723
  /**
@@ -5106,25 +5110,25 @@ export interface GetTagsRequest {
5106
5110
  TagKey?: string;
5107
5111
  /**
5108
5112
  * <p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p>
5109
- * <ul>
5113
+ * <ul>
5110
5114
  * <li>
5111
- * <p>Simple dimension values - You can set the dimension name and values for the
5115
+ * <p>Simple dimension values - You can set the dimension name and values for the
5112
5116
  * filters that you plan to use. For example, you can filter for
5113
5117
  * <code>REGION==us-east-1 OR REGION==us-west-1</code>. For
5114
5118
  * <code>GetRightsizingRecommendation</code>, the Region is a full name (for
5115
5119
  * example, <code>REGION==US East (N. Virginia)</code>. The <code>Expression</code>
5116
5120
  * example is as follows:</p>
5117
- * <p>
5118
- * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
5121
+ * <p>
5122
+ * <code>{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", “us-west-1” ]
5119
5123
  * } }</code>
5120
- * </p>
5121
- * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
5124
+ * </p>
5125
+ * <p>The list of dimension values are OR'd together to retrieve cost or usage data.
5122
5126
  * You can create <code>Expression</code> and <code>DimensionValues</code> objects
5123
5127
  * using either <code>with*</code> methods or <code>set*</code> methods in multiple
5124
5128
  * lines. </p>
5125
5129
  * </li>
5126
5130
  * <li>
5127
- * <p>Compound dimension values with logical operations - You can use multiple
5131
+ * <p>Compound dimension values with logical operations - You can use multiple
5128
5132
  * <code>Expression</code> types and the logical operators
5129
5133
  * <code>AND/OR/NOT</code> to create a list of one or more
5130
5134
  * <code>Expression</code> objects. By doing this, you can filter on more
@@ -5132,25 +5136,25 @@ export interface GetTagsRequest {
5132
5136
  * REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
5133
5137
  * DataTransfer)</code>. The <code>Expression</code> for that is as
5134
5138
  * follows:</p>
5135
- * <p>
5136
- * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
5139
+ * <p>
5140
+ * <code>{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
5137
5141
  * "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values":
5138
5142
  * ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values":
5139
5143
  * ["DataTransfer"] }}} ] } </code>
5140
- * </p>
5141
- * <note>
5142
- * <p>Because each <code>Expression</code> can have only one operator, the
5144
+ * </p>
5145
+ * <note>
5146
+ * <p>Because each <code>Expression</code> can have only one operator, the
5143
5147
  * service returns an error if more than one is specified. The following
5144
5148
  * example shows an <code>Expression</code> object that creates an
5145
5149
  * error.</p>
5146
- * </note>
5147
- * <p>
5148
- * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
5150
+ * </note>
5151
+ * <p>
5152
+ * <code> { "And": [ ... ], "DimensionValues": { "Dimension": "USAGE_TYPE",
5149
5153
  * "Values": [ "DataTransfer" ] } } </code>
5150
- * </p>
5154
+ * </p>
5151
5155
  * </li>
5152
5156
  * </ul>
5153
- * <note>
5157
+ * <note>
5154
5158
  * <p>For the <code>GetRightsizingRecommendation</code> action, a combination of OR and
5155
5159
  * NOT isn't supported. OR isn't supported between different dimensions, or dimensions
5156
5160
  * and tags. NOT operators aren't supported. Dimensions are also limited to
@@ -5159,7 +5163,7 @@ export interface GetTagsRequest {
5159
5163
  * <p>For the <code>GetReservationPurchaseRecommendation</code> action, only NOT is
5160
5164
  * supported. AND and OR aren't supported. Dimensions are limited to
5161
5165
  * <code>LINKED_ACCOUNT</code>.</p>
5162
- * </note>
5166
+ * </note>
5163
5167
  */
5164
5168
  Filter?: Expression;
5165
5169
  /**
@@ -5255,7 +5259,6 @@ export interface GetUsageForecastRequest {
5255
5259
  /**
5256
5260
  * <p>The filters that you want to use to filter your forecast. The
5257
5261
  * <code>GetUsageForecast</code> API supports filtering by the following dimensions:</p>
5258
- *
5259
5262
  * <ul>
5260
5263
  * <li>
5261
5264
  * <p>
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
35
35
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
35
35
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
30
30
  logger?: import("@aws-sdk/types").Logger | undefined;
31
31
  }) => import("@aws-sdk/types").EndpointV2;
32
32
  tls?: boolean | undefined;
33
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
34
34
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
35
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
36
  signingEscapePath?: boolean | undefined;
@@ -22,6 +22,7 @@ export interface RootCause {
22
22
  Region?: string;
23
23
  LinkedAccount?: string;
24
24
  UsageType?: string;
25
+ LinkedAccountName?: string;
25
26
  }
26
27
  export interface Anomaly {
27
28
  AnomalyId: string | undefined;
@@ -62,7 +62,10 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
62
62
  }
63
63
  ) => import("@aws-sdk/types").EndpointV2;
64
64
  tls?: boolean | undefined;
65
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
65
+ retryStrategy?:
66
+ | import("@aws-sdk/types").RetryStrategy
67
+ | import("@aws-sdk/types").RetryStrategyV2
68
+ | undefined;
66
69
  credentials?:
67
70
  | import("@aws-sdk/types").AwsCredentialIdentity
68
71
  | import("@aws-sdk/types").Provider<
@@ -62,7 +62,10 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
62
62
  }
63
63
  ) => import("@aws-sdk/types").EndpointV2;
64
64
  tls?: boolean | undefined;
65
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
65
+ retryStrategy?:
66
+ | import("@aws-sdk/types").RetryStrategy
67
+ | import("@aws-sdk/types").RetryStrategyV2
68
+ | undefined;
66
69
  credentials?:
67
70
  | import("@aws-sdk/types").AwsCredentialIdentity
68
71
  | import("@aws-sdk/types").Provider<
@@ -51,7 +51,10 @@ export declare const getRuntimeConfig: (config: CostExplorerClientConfig) => {
51
51
  }
52
52
  ) => import("@aws-sdk/types").EndpointV2;
53
53
  tls?: boolean | undefined;
54
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
54
+ retryStrategy?:
55
+ | import("@aws-sdk/types").RetryStrategy
56
+ | import("@aws-sdk/types").RetryStrategyV2
57
+ | undefined;
55
58
  credentials?:
56
59
  | import("@aws-sdk/types").AwsCredentialIdentity
57
60
  | import("@aws-sdk/types").Provider<
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cost-explorer",
3
3
  "description": "AWS SDK for JavaScript Cost Explorer Client for Node.js, Browser and React Native",
4
- "version": "3.224.0",
4
+ "version": "3.229.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,36 +19,37 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.224.0",
23
- "@aws-sdk/config-resolver": "3.224.0",
24
- "@aws-sdk/credential-provider-node": "3.224.0",
25
- "@aws-sdk/fetch-http-handler": "3.224.0",
26
- "@aws-sdk/hash-node": "3.224.0",
27
- "@aws-sdk/invalid-dependency": "3.224.0",
28
- "@aws-sdk/middleware-content-length": "3.224.0",
29
- "@aws-sdk/middleware-endpoint": "3.224.0",
30
- "@aws-sdk/middleware-host-header": "3.224.0",
31
- "@aws-sdk/middleware-logger": "3.224.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.224.0",
33
- "@aws-sdk/middleware-retry": "3.224.0",
34
- "@aws-sdk/middleware-serde": "3.224.0",
35
- "@aws-sdk/middleware-signing": "3.224.0",
36
- "@aws-sdk/middleware-stack": "3.224.0",
37
- "@aws-sdk/middleware-user-agent": "3.224.0",
38
- "@aws-sdk/node-config-provider": "3.224.0",
39
- "@aws-sdk/node-http-handler": "3.224.0",
40
- "@aws-sdk/protocol-http": "3.224.0",
41
- "@aws-sdk/smithy-client": "3.224.0",
42
- "@aws-sdk/types": "3.224.0",
43
- "@aws-sdk/url-parser": "3.224.0",
22
+ "@aws-sdk/client-sts": "3.229.0",
23
+ "@aws-sdk/config-resolver": "3.226.0",
24
+ "@aws-sdk/credential-provider-node": "3.229.0",
25
+ "@aws-sdk/fetch-http-handler": "3.226.0",
26
+ "@aws-sdk/hash-node": "3.226.0",
27
+ "@aws-sdk/invalid-dependency": "3.226.0",
28
+ "@aws-sdk/middleware-content-length": "3.226.0",
29
+ "@aws-sdk/middleware-endpoint": "3.226.0",
30
+ "@aws-sdk/middleware-host-header": "3.226.0",
31
+ "@aws-sdk/middleware-logger": "3.226.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.226.0",
33
+ "@aws-sdk/middleware-retry": "3.229.0",
34
+ "@aws-sdk/middleware-serde": "3.226.0",
35
+ "@aws-sdk/middleware-signing": "3.226.0",
36
+ "@aws-sdk/middleware-stack": "3.226.0",
37
+ "@aws-sdk/middleware-user-agent": "3.226.0",
38
+ "@aws-sdk/node-config-provider": "3.226.0",
39
+ "@aws-sdk/node-http-handler": "3.226.0",
40
+ "@aws-sdk/protocol-http": "3.226.0",
41
+ "@aws-sdk/smithy-client": "3.226.0",
42
+ "@aws-sdk/types": "3.226.0",
43
+ "@aws-sdk/url-parser": "3.226.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.224.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.224.0",
49
- "@aws-sdk/util-endpoints": "3.224.0",
50
- "@aws-sdk/util-user-agent-browser": "3.224.0",
51
- "@aws-sdk/util-user-agent-node": "3.224.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.226.0",
49
+ "@aws-sdk/util-endpoints": "3.226.0",
50
+ "@aws-sdk/util-retry": "3.229.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.226.0",
52
+ "@aws-sdk/util-user-agent-node": "3.226.0",
52
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
54
  "@aws-sdk/util-utf8-node": "3.208.0",
54
55
  "tslib": "^2.3.1"