@aws-sdk/client-xray 3.252.0 → 3.256.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.
@@ -258,10 +258,10 @@ const serializeAws_restJson1GetInsightImpactGraphCommand = async (input, context
258
258
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/InsightImpactGraph";
259
259
  let body;
260
260
  body = JSON.stringify({
261
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
261
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
262
262
  ...(input.InsightId != null && { InsightId: input.InsightId }),
263
263
  ...(input.NextToken != null && { NextToken: input.NextToken }),
264
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
264
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
265
265
  });
266
266
  return new protocol_http_1.HttpRequest({
267
267
  protocol,
@@ -282,12 +282,12 @@ const serializeAws_restJson1GetInsightSummariesCommand = async (input, context)
282
282
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/InsightSummaries";
283
283
  let body;
284
284
  body = JSON.stringify({
285
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
285
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
286
286
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
287
287
  ...(input.GroupName != null && { GroupName: input.GroupName }),
288
288
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
289
289
  ...(input.NextToken != null && { NextToken: input.NextToken }),
290
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
290
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
291
291
  ...(input.States != null && { States: serializeAws_restJson1InsightStateList(input.States, context) }),
292
292
  });
293
293
  return new protocol_http_1.HttpRequest({
@@ -374,11 +374,11 @@ const serializeAws_restJson1GetServiceGraphCommand = async (input, context) => {
374
374
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ServiceGraph";
375
375
  let body;
376
376
  body = JSON.stringify({
377
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
377
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
378
378
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
379
379
  ...(input.GroupName != null && { GroupName: input.GroupName }),
380
380
  ...(input.NextToken != null && { NextToken: input.NextToken }),
381
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
381
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
382
382
  });
383
383
  return new protocol_http_1.HttpRequest({
384
384
  protocol,
@@ -399,14 +399,14 @@ const serializeAws_restJson1GetTimeSeriesServiceStatisticsCommand = async (input
399
399
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/TimeSeriesServiceStatistics";
400
400
  let body;
401
401
  body = JSON.stringify({
402
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
402
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
403
403
  ...(input.EntitySelectorExpression != null && { EntitySelectorExpression: input.EntitySelectorExpression }),
404
404
  ...(input.ForecastStatistics != null && { ForecastStatistics: input.ForecastStatistics }),
405
405
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
406
406
  ...(input.GroupName != null && { GroupName: input.GroupName }),
407
407
  ...(input.NextToken != null && { NextToken: input.NextToken }),
408
408
  ...(input.Period != null && { Period: input.Period }),
409
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
409
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
410
410
  });
411
411
  return new protocol_http_1.HttpRequest({
412
412
  protocol,
@@ -449,14 +449,14 @@ const serializeAws_restJson1GetTraceSummariesCommand = async (input, context) =>
449
449
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/TraceSummaries";
450
450
  let body;
451
451
  body = JSON.stringify({
452
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
452
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
453
453
  ...(input.FilterExpression != null && { FilterExpression: input.FilterExpression }),
454
454
  ...(input.NextToken != null && { NextToken: input.NextToken }),
455
455
  ...(input.Sampling != null && { Sampling: input.Sampling }),
456
456
  ...(input.SamplingStrategy != null && {
457
457
  SamplingStrategy: serializeAws_restJson1SamplingStrategy(input.SamplingStrategy, context),
458
458
  }),
459
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
459
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
460
460
  ...(input.TimeRangeType != null && { TimeRangeType: input.TimeRangeType }),
461
461
  });
462
462
  return new protocol_http_1.HttpRequest({
@@ -2106,7 +2106,7 @@ const serializeAws_restJson1SamplingStatisticsDocument = (input, context) => {
2106
2106
  ...(input.RequestCount != null && { RequestCount: input.RequestCount }),
2107
2107
  ...(input.RuleName != null && { RuleName: input.RuleName }),
2108
2108
  ...(input.SampledCount != null && { SampledCount: input.SampledCount }),
2109
- ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000).toString() }),
2109
+ ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) }),
2110
2110
  };
2111
2111
  };
2112
2112
  const serializeAws_restJson1SamplingStatisticsDocumentList = (input, context) => {
@@ -2151,7 +2151,7 @@ const serializeAws_restJson1TelemetryRecord = (input, context) => {
2151
2151
  ...(input.SegmentsRejectedCount != null && { SegmentsRejectedCount: input.SegmentsRejectedCount }),
2152
2152
  ...(input.SegmentsSentCount != null && { SegmentsSentCount: input.SegmentsSentCount }),
2153
2153
  ...(input.SegmentsSpilloverCount != null && { SegmentsSpilloverCount: input.SegmentsSpilloverCount }),
2154
- ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000).toString() }),
2154
+ ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) }),
2155
2155
  };
2156
2156
  };
2157
2157
  const serializeAws_restJson1TelemetryRecordList = (input, context) => {
@@ -243,10 +243,10 @@ export const serializeAws_restJson1GetInsightImpactGraphCommand = async (input,
243
243
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/InsightImpactGraph";
244
244
  let body;
245
245
  body = JSON.stringify({
246
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
246
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
247
247
  ...(input.InsightId != null && { InsightId: input.InsightId }),
248
248
  ...(input.NextToken != null && { NextToken: input.NextToken }),
249
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
249
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
250
250
  });
251
251
  return new __HttpRequest({
252
252
  protocol,
@@ -266,12 +266,12 @@ export const serializeAws_restJson1GetInsightSummariesCommand = async (input, co
266
266
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/InsightSummaries";
267
267
  let body;
268
268
  body = JSON.stringify({
269
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
269
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
270
270
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
271
271
  ...(input.GroupName != null && { GroupName: input.GroupName }),
272
272
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
273
273
  ...(input.NextToken != null && { NextToken: input.NextToken }),
274
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
274
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
275
275
  ...(input.States != null && { States: serializeAws_restJson1InsightStateList(input.States, context) }),
276
276
  });
277
277
  return new __HttpRequest({
@@ -354,11 +354,11 @@ export const serializeAws_restJson1GetServiceGraphCommand = async (input, contex
354
354
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ServiceGraph";
355
355
  let body;
356
356
  body = JSON.stringify({
357
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
357
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
358
358
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
359
359
  ...(input.GroupName != null && { GroupName: input.GroupName }),
360
360
  ...(input.NextToken != null && { NextToken: input.NextToken }),
361
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
361
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
362
362
  });
363
363
  return new __HttpRequest({
364
364
  protocol,
@@ -378,14 +378,14 @@ export const serializeAws_restJson1GetTimeSeriesServiceStatisticsCommand = async
378
378
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/TimeSeriesServiceStatistics";
379
379
  let body;
380
380
  body = JSON.stringify({
381
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
381
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
382
382
  ...(input.EntitySelectorExpression != null && { EntitySelectorExpression: input.EntitySelectorExpression }),
383
383
  ...(input.ForecastStatistics != null && { ForecastStatistics: input.ForecastStatistics }),
384
384
  ...(input.GroupARN != null && { GroupARN: input.GroupARN }),
385
385
  ...(input.GroupName != null && { GroupName: input.GroupName }),
386
386
  ...(input.NextToken != null && { NextToken: input.NextToken }),
387
387
  ...(input.Period != null && { Period: input.Period }),
388
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
388
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
389
389
  });
390
390
  return new __HttpRequest({
391
391
  protocol,
@@ -426,14 +426,14 @@ export const serializeAws_restJson1GetTraceSummariesCommand = async (input, cont
426
426
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/TraceSummaries";
427
427
  let body;
428
428
  body = JSON.stringify({
429
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
429
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
430
430
  ...(input.FilterExpression != null && { FilterExpression: input.FilterExpression }),
431
431
  ...(input.NextToken != null && { NextToken: input.NextToken }),
432
432
  ...(input.Sampling != null && { Sampling: input.Sampling }),
433
433
  ...(input.SamplingStrategy != null && {
434
434
  SamplingStrategy: serializeAws_restJson1SamplingStrategy(input.SamplingStrategy, context),
435
435
  }),
436
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
436
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
437
437
  ...(input.TimeRangeType != null && { TimeRangeType: input.TimeRangeType }),
438
438
  });
439
439
  return new __HttpRequest({
@@ -2042,7 +2042,7 @@ const serializeAws_restJson1SamplingStatisticsDocument = (input, context) => {
2042
2042
  ...(input.RequestCount != null && { RequestCount: input.RequestCount }),
2043
2043
  ...(input.RuleName != null && { RuleName: input.RuleName }),
2044
2044
  ...(input.SampledCount != null && { SampledCount: input.SampledCount }),
2045
- ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000).toString() }),
2045
+ ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) }),
2046
2046
  };
2047
2047
  };
2048
2048
  const serializeAws_restJson1SamplingStatisticsDocumentList = (input, context) => {
@@ -2087,7 +2087,7 @@ const serializeAws_restJson1TelemetryRecord = (input, context) => {
2087
2087
  ...(input.SegmentsRejectedCount != null && { SegmentsRejectedCount: input.SegmentsRejectedCount }),
2088
2088
  ...(input.SegmentsSentCount != null && { SegmentsSentCount: input.SegmentsSentCount }),
2089
2089
  ...(input.SegmentsSpilloverCount != null && { SegmentsSpilloverCount: input.SegmentsSpilloverCount }),
2090
- ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000).toString() }),
2090
+ ...(input.Timestamp != null && { Timestamp: Math.round(input.Timestamp.getTime() / 1000) }),
2091
2091
  };
2092
2092
  };
2093
2093
  const serializeAws_restJson1TelemetryRecordList = (input, context) => {
@@ -5,8 +5,8 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
5
5
  import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
+ import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
10
  import { BatchGetTracesCommandInput, BatchGetTracesCommandOutput } from "./commands/BatchGetTracesCommand";
11
11
  import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
12
12
  import { CreateSamplingRuleCommandInput, CreateSamplingRuleCommandOutput } from "./commands/CreateSamplingRuleCommand";
@@ -46,11 +46,11 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
46
46
  */
47
47
  requestHandler?: __HttpHandler;
48
48
  /**
49
- * A constructor for a class implementing the {@link __Hash} interface
49
+ * A constructor for a class implementing the {@link __Checksum} interface
50
50
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
51
51
  * @internal
52
52
  */
53
- sha256?: __HashConstructor;
53
+ sha256?: __ChecksumConstructor | __HashConstructor;
54
54
  /**
55
55
  * The function that will be used to convert strings into HTTP endpoints.
56
56
  * @internal
@@ -136,9 +136,9 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
136
136
  */
137
137
  defaultUserAgentProvider?: Provider<__UserAgent>;
138
138
  /**
139
- * The {@link DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
139
+ * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
140
140
  */
141
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
141
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
142
142
  }
143
143
  declare type XRayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
144
144
  /**
@@ -25,12 +25,13 @@ import {
25
25
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
26
  import {
27
27
  Client as __Client,
28
- DefaultsMode,
28
+ DefaultsMode as __DefaultsMode,
29
29
  SmithyConfiguration as __SmithyConfiguration,
30
30
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
31
  } from "@aws-sdk/smithy-client";
32
32
  import {
33
33
  BodyLengthCalculator as __BodyLengthCalculator,
34
+ ChecksumConstructor as __ChecksumConstructor,
34
35
  Credentials as __Credentials,
35
36
  Decoder as __Decoder,
36
37
  Encoder as __Encoder,
@@ -233,7 +234,7 @@ export declare type ServiceOutputTypes =
233
234
  export interface ClientDefaults
234
235
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
235
236
  requestHandler?: __HttpHandler;
236
- sha256?: __HashConstructor;
237
+ sha256?: __ChecksumConstructor | __HashConstructor;
237
238
  urlParser?: __UrlParser;
238
239
  bodyLengthChecker?: __BodyLengthCalculator;
239
240
  streamCollector?: __StreamCollector;
@@ -252,7 +253,7 @@ export interface ClientDefaults
252
253
  region?: string | __Provider<string>;
253
254
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
254
255
  defaultUserAgentProvider?: Provider<__UserAgent>;
255
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
256
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
256
257
  }
257
258
  declare type XRayClientConfigType = Partial<
258
259
  __SmithyConfiguration<__HttpHandlerOptions>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-xray",
3
3
  "description": "AWS SDK for JavaScript Xray Client for Node.js, Browser and React Native",
4
- "version": "3.252.0",
4
+ "version": "3.256.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",
@@ -18,39 +18,39 @@
18
18
  "module": "./dist-es/index.js",
19
19
  "sideEffects": false,
20
20
  "dependencies": {
21
- "@aws-crypto/sha256-browser": "2.0.0",
22
- "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.252.0",
24
- "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.252.0",
26
- "@aws-sdk/fetch-http-handler": "3.226.0",
27
- "@aws-sdk/hash-node": "3.226.0",
28
- "@aws-sdk/invalid-dependency": "3.226.0",
29
- "@aws-sdk/middleware-content-length": "3.226.0",
30
- "@aws-sdk/middleware-endpoint": "3.226.0",
31
- "@aws-sdk/middleware-host-header": "3.226.0",
32
- "@aws-sdk/middleware-logger": "3.226.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.226.0",
34
- "@aws-sdk/middleware-retry": "3.235.0",
35
- "@aws-sdk/middleware-serde": "3.226.0",
36
- "@aws-sdk/middleware-signing": "3.226.0",
37
- "@aws-sdk/middleware-stack": "3.226.0",
38
- "@aws-sdk/middleware-user-agent": "3.226.0",
39
- "@aws-sdk/node-config-provider": "3.226.0",
40
- "@aws-sdk/node-http-handler": "3.226.0",
41
- "@aws-sdk/protocol-http": "3.226.0",
42
- "@aws-sdk/smithy-client": "3.234.0",
43
- "@aws-sdk/types": "3.226.0",
44
- "@aws-sdk/url-parser": "3.226.0",
21
+ "@aws-crypto/sha256-browser": "3.0.0",
22
+ "@aws-crypto/sha256-js": "3.0.0",
23
+ "@aws-sdk/client-sts": "3.256.0",
24
+ "@aws-sdk/config-resolver": "3.254.0",
25
+ "@aws-sdk/credential-provider-node": "3.256.0",
26
+ "@aws-sdk/fetch-http-handler": "3.254.0",
27
+ "@aws-sdk/hash-node": "3.254.0",
28
+ "@aws-sdk/invalid-dependency": "3.254.0",
29
+ "@aws-sdk/middleware-content-length": "3.254.0",
30
+ "@aws-sdk/middleware-endpoint": "3.254.0",
31
+ "@aws-sdk/middleware-host-header": "3.254.0",
32
+ "@aws-sdk/middleware-logger": "3.254.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.254.0",
34
+ "@aws-sdk/middleware-retry": "3.254.0",
35
+ "@aws-sdk/middleware-serde": "3.254.0",
36
+ "@aws-sdk/middleware-signing": "3.254.0",
37
+ "@aws-sdk/middleware-stack": "3.254.0",
38
+ "@aws-sdk/middleware-user-agent": "3.254.0",
39
+ "@aws-sdk/node-config-provider": "3.254.0",
40
+ "@aws-sdk/node-http-handler": "3.254.0",
41
+ "@aws-sdk/protocol-http": "3.254.0",
42
+ "@aws-sdk/smithy-client": "3.254.0",
43
+ "@aws-sdk/types": "3.254.0",
44
+ "@aws-sdk/url-parser": "3.254.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.234.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.234.0",
50
- "@aws-sdk/util-endpoints": "3.245.0",
51
- "@aws-sdk/util-retry": "3.229.0",
52
- "@aws-sdk/util-user-agent-browser": "3.226.0",
53
- "@aws-sdk/util-user-agent-node": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.254.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.254.0",
50
+ "@aws-sdk/util-endpoints": "3.254.0",
51
+ "@aws-sdk/util-retry": "3.254.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.254.0",
53
+ "@aws-sdk/util-user-agent-node": "3.254.0",
54
54
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
55
  "@aws-sdk/util-utf8-node": "3.208.0",
56
56
  "tslib": "^2.3.1"