@aws-sdk/client-cost-explorer 3.696.0 → 3.699.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.
Files changed (28) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +323 -37
  3. package/dist-es/CostExplorer.js +6 -0
  4. package/dist-es/commands/GetCommitmentPurchaseAnalysisCommand.js +22 -0
  5. package/dist-es/commands/ListCommitmentPurchaseAnalysesCommand.js +22 -0
  6. package/dist-es/commands/StartCommitmentPurchaseAnalysisCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +54 -25
  9. package/dist-es/protocols/Aws_json1_1.js +206 -5
  10. package/dist-types/CostExplorer.d.ts +22 -0
  11. package/dist-types/CostExplorerClient.d.ts +5 -2
  12. package/dist-types/commands/GetAnomaliesCommand.d.ts +4 -1
  13. package/dist-types/commands/GetCommitmentPurchaseAnalysisCommand.d.ts +145 -0
  14. package/dist-types/commands/ListCommitmentPurchaseAnalysesCommand.d.ts +120 -0
  15. package/dist-types/commands/StartCommitmentPurchaseAnalysisCommand.d.ts +112 -0
  16. package/dist-types/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +1 -1
  17. package/dist-types/commands/index.d.ts +3 -0
  18. package/dist-types/models/models_0.d.ts +597 -122
  19. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  20. package/dist-types/ts3.4/CostExplorer.d.ts +52 -0
  21. package/dist-types/ts3.4/CostExplorerClient.d.ts +18 -0
  22. package/dist-types/ts3.4/commands/GetCommitmentPurchaseAnalysisCommand.d.ts +51 -0
  23. package/dist-types/ts3.4/commands/ListCommitmentPurchaseAnalysesCommand.d.ts +51 -0
  24. package/dist-types/ts3.4/commands/StartCommitmentPurchaseAnalysisCommand.d.ts +51 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +170 -41
  27. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  28. package/package.json +4 -4
@@ -5,6 +5,128 @@ export declare const AccountScope: {
5
5
  readonly PAYER: "PAYER";
6
6
  };
7
7
  export type AccountScope = (typeof AccountScope)[keyof typeof AccountScope];
8
+ export interface RecommendationDetailHourlyMetrics {
9
+ StartTime?: string | undefined;
10
+ EstimatedOnDemandCost?: string | undefined;
11
+ CurrentCoverage?: string | undefined;
12
+ EstimatedCoverage?: string | undefined;
13
+ EstimatedNewCommitmentUtilization?: string | undefined;
14
+ }
15
+ export interface SavingsPlansPurchaseAnalysisDetails {
16
+ CurrencyCode?: string | undefined;
17
+ LookbackPeriodInHours?: string | undefined;
18
+ CurrentAverageCoverage?: string | undefined;
19
+ CurrentAverageHourlyOnDemandSpend?: string | undefined;
20
+ CurrentMaximumHourlyOnDemandSpend?: string | undefined;
21
+ CurrentMinimumHourlyOnDemandSpend?: string | undefined;
22
+ CurrentOnDemandSpend?: string | undefined;
23
+ ExistingHourlyCommitment?: string | undefined;
24
+ HourlyCommitmentToPurchase?: string | undefined;
25
+ EstimatedAverageCoverage?: string | undefined;
26
+ EstimatedAverageUtilization?: string | undefined;
27
+ EstimatedMonthlySavingsAmount?: string | undefined;
28
+ EstimatedOnDemandCost?: string | undefined;
29
+ EstimatedOnDemandCostWithCurrentCommitment?: string | undefined;
30
+ EstimatedROI?: string | undefined;
31
+ EstimatedSavingsAmount?: string | undefined;
32
+ EstimatedSavingsPercentage?: string | undefined;
33
+ EstimatedCommitmentCost?: string | undefined;
34
+ LatestUsageTimestamp?: string | undefined;
35
+ UpfrontCost?: string | undefined;
36
+ AdditionalMetadata?: string | undefined;
37
+ MetricsOverLookbackPeriod?: RecommendationDetailHourlyMetrics[] | undefined;
38
+ }
39
+ export interface AnalysisDetails {
40
+ SavingsPlansPurchaseAnalysisDetails?:
41
+ | SavingsPlansPurchaseAnalysisDetails
42
+ | undefined;
43
+ }
44
+ export declare class AnalysisNotFoundException extends __BaseException {
45
+ readonly name: "AnalysisNotFoundException";
46
+ readonly $fault: "client";
47
+ Message?: string | undefined;
48
+ constructor(
49
+ opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>
50
+ );
51
+ }
52
+ export declare const AnalysisStatus: {
53
+ readonly FAILED: "FAILED";
54
+ readonly PROCESSING: "PROCESSING";
55
+ readonly SUCCEEDED: "SUCCEEDED";
56
+ };
57
+ export type AnalysisStatus =
58
+ (typeof AnalysisStatus)[keyof typeof AnalysisStatus];
59
+ export declare const AnalysisType: {
60
+ readonly CUSTOM_COMMITMENT: "CUSTOM_COMMITMENT";
61
+ readonly MAX_SAVINGS: "MAX_SAVINGS";
62
+ };
63
+ export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
64
+ export interface DateInterval {
65
+ Start: string | undefined;
66
+ End: string | undefined;
67
+ }
68
+ export declare const PaymentOption: {
69
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
70
+ readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
71
+ readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
72
+ readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
73
+ readonly NO_UPFRONT: "NO_UPFRONT";
74
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
75
+ };
76
+ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
77
+ export declare const SupportedSavingsPlansType: {
78
+ readonly COMPUTE_SP: "COMPUTE_SP";
79
+ readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
80
+ readonly SAGEMAKER_SP: "SAGEMAKER_SP";
81
+ };
82
+ export type SupportedSavingsPlansType =
83
+ (typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
84
+ export declare const TermInYears: {
85
+ readonly ONE_YEAR: "ONE_YEAR";
86
+ readonly THREE_YEARS: "THREE_YEARS";
87
+ };
88
+ export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
89
+ export interface SavingsPlans {
90
+ PaymentOption?: PaymentOption | undefined;
91
+ SavingsPlansType?: SupportedSavingsPlansType | undefined;
92
+ Region?: string | undefined;
93
+ InstanceFamily?: string | undefined;
94
+ TermInYears?: TermInYears | undefined;
95
+ SavingsPlansCommitment?: number | undefined;
96
+ OfferingId?: string | undefined;
97
+ }
98
+ export interface SavingsPlansPurchaseAnalysisConfiguration {
99
+ AccountScope?: AccountScope | undefined;
100
+ AccountId?: string | undefined;
101
+ AnalysisType: AnalysisType | undefined;
102
+ SavingsPlansToAdd: SavingsPlans[] | undefined;
103
+ SavingsPlansToExclude?: string[] | undefined;
104
+ LookBackTimePeriod: DateInterval | undefined;
105
+ }
106
+ export interface CommitmentPurchaseAnalysisConfiguration {
107
+ SavingsPlansPurchaseAnalysisConfiguration?:
108
+ | SavingsPlansPurchaseAnalysisConfiguration
109
+ | undefined;
110
+ }
111
+ export declare const ErrorCode: {
112
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
113
+ readonly INVALID_ACCOUNT_ID: "INVALID_ACCOUNT_ID";
114
+ readonly INVALID_SAVINGS_PLANS_TO_ADD: "INVALID_SAVINGS_PLANS_TO_ADD";
115
+ readonly INVALID_SAVINGS_PLANS_TO_EXCLUDE: "INVALID_SAVINGS_PLANS_TO_EXCLUDE";
116
+ readonly NO_USAGE_FOUND: "NO_USAGE_FOUND";
117
+ };
118
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
119
+ export interface AnalysisSummary {
120
+ EstimatedCompletionTime?: string | undefined;
121
+ AnalysisCompletionTime?: string | undefined;
122
+ AnalysisStartedTime?: string | undefined;
123
+ AnalysisStatus?: AnalysisStatus | undefined;
124
+ ErrorCode?: ErrorCode | undefined;
125
+ AnalysisId?: string | undefined;
126
+ CommitmentPurchaseAnalysisConfiguration?:
127
+ | CommitmentPurchaseAnalysisConfiguration
128
+ | undefined;
129
+ }
8
130
  export interface AnomalyScore {
9
131
  MaxScore: number | undefined;
10
132
  CurrentScore: number | undefined;
@@ -23,12 +145,16 @@ export interface Impact {
23
145
  TotalExpectedSpend?: number | undefined;
24
146
  TotalImpactPercentage?: number | undefined;
25
147
  }
148
+ export interface RootCauseImpact {
149
+ Contribution: number | undefined;
150
+ }
26
151
  export interface RootCause {
27
152
  Service?: string | undefined;
28
153
  Region?: string | undefined;
29
154
  LinkedAccount?: string | undefined;
30
- UsageType?: string | undefined;
31
155
  LinkedAccountName?: string | undefined;
156
+ UsageType?: string | undefined;
157
+ Impact?: RootCauseImpact | undefined;
32
158
  }
33
159
  export interface Anomaly {
34
160
  AnomalyId: string | undefined;
@@ -345,15 +471,26 @@ export interface GetApproximateUsageRecordsRequest {
345
471
  Services?: string[] | undefined;
346
472
  ApproximationDimension: ApproximationDimension | undefined;
347
473
  }
348
- export interface DateInterval {
349
- Start: string | undefined;
350
- End: string | undefined;
351
- }
352
474
  export interface GetApproximateUsageRecordsResponse {
353
475
  Services?: Record<string, number> | undefined;
354
476
  TotalRecords?: number | undefined;
355
477
  LookbackPeriod?: DateInterval | undefined;
356
478
  }
479
+ export interface GetCommitmentPurchaseAnalysisRequest {
480
+ AnalysisId: string | undefined;
481
+ }
482
+ export interface GetCommitmentPurchaseAnalysisResponse {
483
+ EstimatedCompletionTime: string | undefined;
484
+ AnalysisCompletionTime?: string | undefined;
485
+ AnalysisStartedTime: string | undefined;
486
+ AnalysisId: string | undefined;
487
+ AnalysisStatus: AnalysisStatus | undefined;
488
+ ErrorCode?: ErrorCode | undefined;
489
+ AnalysisDetails?: AnalysisDetails | undefined;
490
+ CommitmentPurchaseAnalysisConfiguration:
491
+ | CommitmentPurchaseAnalysisConfiguration
492
+ | undefined;
493
+ }
357
494
  export declare class BillExpirationException extends __BaseException {
358
495
  readonly name: "BillExpirationException";
359
496
  readonly $fault: "client";
@@ -500,15 +637,6 @@ export declare const LookbackPeriodInDays: {
500
637
  };
501
638
  export type LookbackPeriodInDays =
502
639
  (typeof LookbackPeriodInDays)[keyof typeof LookbackPeriodInDays];
503
- export declare const PaymentOption: {
504
- readonly ALL_UPFRONT: "ALL_UPFRONT";
505
- readonly HEAVY_UTILIZATION: "HEAVY_UTILIZATION";
506
- readonly LIGHT_UTILIZATION: "LIGHT_UTILIZATION";
507
- readonly MEDIUM_UTILIZATION: "MEDIUM_UTILIZATION";
508
- readonly NO_UPFRONT: "NO_UPFRONT";
509
- readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
510
- };
511
- export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
512
640
  export declare const OfferingClass: {
513
641
  readonly CONVERTIBLE: "CONVERTIBLE";
514
642
  readonly STANDARD: "STANDARD";
@@ -520,11 +648,6 @@ export interface EC2Specification {
520
648
  export interface ServiceSpecification {
521
649
  EC2Specification?: EC2Specification | undefined;
522
650
  }
523
- export declare const TermInYears: {
524
- readonly ONE_YEAR: "ONE_YEAR";
525
- readonly THREE_YEARS: "THREE_YEARS";
526
- };
527
- export type TermInYears = (typeof TermInYears)[keyof typeof TermInYears];
528
651
  export interface ReservationPurchaseRecommendationMetadata {
529
652
  RecommendationId?: string | undefined;
530
653
  GenerationTimestamp?: string | undefined;
@@ -822,20 +945,6 @@ export interface GetRightsizingRecommendationResponse {
822
945
  export interface GetSavingsPlanPurchaseRecommendationDetailsRequest {
823
946
  RecommendationDetailId: string | undefined;
824
947
  }
825
- export interface RecommendationDetailHourlyMetrics {
826
- StartTime?: string | undefined;
827
- EstimatedOnDemandCost?: string | undefined;
828
- CurrentCoverage?: string | undefined;
829
- EstimatedCoverage?: string | undefined;
830
- EstimatedNewCommitmentUtilization?: string | undefined;
831
- }
832
- export declare const SupportedSavingsPlansType: {
833
- readonly COMPUTE_SP: "COMPUTE_SP";
834
- readonly EC2_INSTANCE_SP: "EC2_INSTANCE_SP";
835
- readonly SAGEMAKER_SP: "SAGEMAKER_SP";
836
- };
837
- export type SupportedSavingsPlansType =
838
- (typeof SupportedSavingsPlansType)[keyof typeof SupportedSavingsPlansType];
839
948
  export interface RecommendationDetailData {
840
949
  AccountScope?: AccountScope | undefined;
841
950
  LookbackPeriodInDays?: LookbackPeriodInDays | undefined;
@@ -1017,6 +1126,16 @@ export declare class UnresolvableUsageUnitException extends __BaseException {
1017
1126
  opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>
1018
1127
  );
1019
1128
  }
1129
+ export interface ListCommitmentPurchaseAnalysesRequest {
1130
+ AnalysisStatus?: AnalysisStatus | undefined;
1131
+ NextPageToken?: string | undefined;
1132
+ PageSize?: number | undefined;
1133
+ AnalysisIds?: string[] | undefined;
1134
+ }
1135
+ export interface ListCommitmentPurchaseAnalysesResponse {
1136
+ AnalysisSummaryList?: AnalysisSummary[] | undefined;
1137
+ NextPageToken?: string | undefined;
1138
+ }
1020
1139
  export interface ListCostAllocationTagBackfillHistoryRequest {
1021
1140
  NextToken?: string | undefined;
1022
1141
  MaxResults?: number | undefined;
@@ -1125,6 +1244,24 @@ export interface ProvideAnomalyFeedbackRequest {
1125
1244
  export interface ProvideAnomalyFeedbackResponse {
1126
1245
  AnomalyId: string | undefined;
1127
1246
  }
1247
+ export declare class GenerationExistsException extends __BaseException {
1248
+ readonly name: "GenerationExistsException";
1249
+ readonly $fault: "client";
1250
+ Message?: string | undefined;
1251
+ constructor(
1252
+ opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
1253
+ );
1254
+ }
1255
+ export interface StartCommitmentPurchaseAnalysisRequest {
1256
+ CommitmentPurchaseAnalysisConfiguration:
1257
+ | CommitmentPurchaseAnalysisConfiguration
1258
+ | undefined;
1259
+ }
1260
+ export interface StartCommitmentPurchaseAnalysisResponse {
1261
+ AnalysisId: string | undefined;
1262
+ AnalysisStartedTime: string | undefined;
1263
+ EstimatedCompletionTime: string | undefined;
1264
+ }
1128
1265
  export declare class BackfillLimitExceededException extends __BaseException {
1129
1266
  readonly name: "BackfillLimitExceededException";
1130
1267
  readonly $fault: "client";
@@ -1139,14 +1276,6 @@ export interface StartCostAllocationTagBackfillRequest {
1139
1276
  export interface StartCostAllocationTagBackfillResponse {
1140
1277
  BackfillRequest?: CostAllocationTagBackfillRequest | undefined;
1141
1278
  }
1142
- export declare class GenerationExistsException extends __BaseException {
1143
- readonly name: "GenerationExistsException";
1144
- readonly $fault: "client";
1145
- Message?: string | undefined;
1146
- constructor(
1147
- opts: __ExceptionOptionType<GenerationExistsException, __BaseException>
1148
- );
1149
- }
1150
1279
  export interface StartSavingsPlansPurchaseRecommendationGenerationRequest {}
1151
1280
  export interface StartSavingsPlansPurchaseRecommendationGenerationResponse {
1152
1281
  RecommendationId?: string | undefined;
@@ -47,6 +47,10 @@ import {
47
47
  GetApproximateUsageRecordsCommandInput,
48
48
  GetApproximateUsageRecordsCommandOutput,
49
49
  } from "../commands/GetApproximateUsageRecordsCommand";
50
+ import {
51
+ GetCommitmentPurchaseAnalysisCommandInput,
52
+ GetCommitmentPurchaseAnalysisCommandOutput,
53
+ } from "../commands/GetCommitmentPurchaseAnalysisCommand";
50
54
  import {
51
55
  GetCostAndUsageCommandInput,
52
56
  GetCostAndUsageCommandOutput,
@@ -111,6 +115,10 @@ import {
111
115
  GetUsageForecastCommandInput,
112
116
  GetUsageForecastCommandOutput,
113
117
  } from "../commands/GetUsageForecastCommand";
118
+ import {
119
+ ListCommitmentPurchaseAnalysesCommandInput,
120
+ ListCommitmentPurchaseAnalysesCommandOutput,
121
+ } from "../commands/ListCommitmentPurchaseAnalysesCommand";
114
122
  import {
115
123
  ListCostAllocationTagBackfillHistoryCommandInput,
116
124
  ListCostAllocationTagBackfillHistoryCommandOutput,
@@ -135,6 +143,10 @@ import {
135
143
  ProvideAnomalyFeedbackCommandInput,
136
144
  ProvideAnomalyFeedbackCommandOutput,
137
145
  } from "../commands/ProvideAnomalyFeedbackCommand";
146
+ import {
147
+ StartCommitmentPurchaseAnalysisCommandInput,
148
+ StartCommitmentPurchaseAnalysisCommandOutput,
149
+ } from "../commands/StartCommitmentPurchaseAnalysisCommand";
138
150
  import {
139
151
  StartCostAllocationTagBackfillCommandInput,
140
152
  StartCostAllocationTagBackfillCommandOutput,
@@ -211,6 +223,10 @@ export declare const se_GetApproximateUsageRecordsCommand: (
211
223
  input: GetApproximateUsageRecordsCommandInput,
212
224
  context: __SerdeContext
213
225
  ) => Promise<__HttpRequest>;
226
+ export declare const se_GetCommitmentPurchaseAnalysisCommand: (
227
+ input: GetCommitmentPurchaseAnalysisCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
214
230
  export declare const se_GetCostAndUsageCommand: (
215
231
  input: GetCostAndUsageCommandInput,
216
232
  context: __SerdeContext
@@ -275,6 +291,10 @@ export declare const se_GetUsageForecastCommand: (
275
291
  input: GetUsageForecastCommandInput,
276
292
  context: __SerdeContext
277
293
  ) => Promise<__HttpRequest>;
294
+ export declare const se_ListCommitmentPurchaseAnalysesCommand: (
295
+ input: ListCommitmentPurchaseAnalysesCommandInput,
296
+ context: __SerdeContext
297
+ ) => Promise<__HttpRequest>;
278
298
  export declare const se_ListCostAllocationTagBackfillHistoryCommand: (
279
299
  input: ListCostAllocationTagBackfillHistoryCommandInput,
280
300
  context: __SerdeContext
@@ -299,6 +319,10 @@ export declare const se_ProvideAnomalyFeedbackCommand: (
299
319
  input: ProvideAnomalyFeedbackCommandInput,
300
320
  context: __SerdeContext
301
321
  ) => Promise<__HttpRequest>;
322
+ export declare const se_StartCommitmentPurchaseAnalysisCommand: (
323
+ input: StartCommitmentPurchaseAnalysisCommandInput,
324
+ context: __SerdeContext
325
+ ) => Promise<__HttpRequest>;
302
326
  export declare const se_StartCostAllocationTagBackfillCommand: (
303
327
  input: StartCostAllocationTagBackfillCommandInput,
304
328
  context: __SerdeContext
@@ -375,6 +399,10 @@ export declare const de_GetApproximateUsageRecordsCommand: (
375
399
  output: __HttpResponse,
376
400
  context: __SerdeContext
377
401
  ) => Promise<GetApproximateUsageRecordsCommandOutput>;
402
+ export declare const de_GetCommitmentPurchaseAnalysisCommand: (
403
+ output: __HttpResponse,
404
+ context: __SerdeContext
405
+ ) => Promise<GetCommitmentPurchaseAnalysisCommandOutput>;
378
406
  export declare const de_GetCostAndUsageCommand: (
379
407
  output: __HttpResponse,
380
408
  context: __SerdeContext
@@ -439,6 +467,10 @@ export declare const de_GetUsageForecastCommand: (
439
467
  output: __HttpResponse,
440
468
  context: __SerdeContext
441
469
  ) => Promise<GetUsageForecastCommandOutput>;
470
+ export declare const de_ListCommitmentPurchaseAnalysesCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<ListCommitmentPurchaseAnalysesCommandOutput>;
442
474
  export declare const de_ListCostAllocationTagBackfillHistoryCommand: (
443
475
  output: __HttpResponse,
444
476
  context: __SerdeContext
@@ -463,6 +495,10 @@ export declare const de_ProvideAnomalyFeedbackCommand: (
463
495
  output: __HttpResponse,
464
496
  context: __SerdeContext
465
497
  ) => Promise<ProvideAnomalyFeedbackCommandOutput>;
498
+ export declare const de_StartCommitmentPurchaseAnalysisCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<StartCommitmentPurchaseAnalysisCommandOutput>;
466
502
  export declare const de_StartCostAllocationTagBackfillCommand: (
467
503
  output: __HttpResponse,
468
504
  context: __SerdeContext
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.696.0",
4
+ "version": "3.699.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cost-explorer",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.696.0",
24
- "@aws-sdk/client-sts": "3.696.0",
23
+ "@aws-sdk/client-sso-oidc": "3.699.0",
24
+ "@aws-sdk/client-sts": "3.699.0",
25
25
  "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.699.0",
27
27
  "@aws-sdk/middleware-host-header": "3.696.0",
28
28
  "@aws-sdk/middleware-logger": "3.696.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.696.0",