@aws-sdk/client-kinesis-video-media 3.303.0 → 3.309.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.
@@ -37,10 +37,10 @@ class GetMediaCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1GetMediaCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_GetMediaCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetMediaCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_GetMediaCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.GetMediaCommand = GetMediaCommand;
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.deserializeAws_restJson1GetMediaCommand = exports.serializeAws_restJson1GetMediaCommand = void 0;
3
+ exports.de_GetMediaCommand = exports.se_GetMediaCommand = void 0;
4
4
  const protocol_http_1 = require("@aws-sdk/protocol-http");
5
5
  const smithy_client_1 = require("@aws-sdk/smithy-client");
6
6
  const KinesisVideoMediaServiceException_1 = require("../models/KinesisVideoMediaServiceException");
7
7
  const models_0_1 = require("../models/models_0");
8
- const serializeAws_restJson1GetMediaCommand = async (input, context) => {
8
+ const se_GetMediaCommand = async (input, context) => {
9
9
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
10
10
  const headers = {
11
11
  "content-type": "application/json",
@@ -13,9 +13,7 @@ const serializeAws_restJson1GetMediaCommand = async (input, context) => {
13
13
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/getMedia";
14
14
  let body;
15
15
  body = JSON.stringify({
16
- ...(input.StartSelector != null && {
17
- StartSelector: serializeAws_restJson1StartSelector(input.StartSelector, context),
18
- }),
16
+ ...(input.StartSelector != null && { StartSelector: se_StartSelector(input.StartSelector, context) }),
19
17
  ...(input.StreamARN != null && { StreamARN: input.StreamARN }),
20
18
  ...(input.StreamName != null && { StreamName: input.StreamName }),
21
19
  });
@@ -29,10 +27,10 @@ const serializeAws_restJson1GetMediaCommand = async (input, context) => {
29
27
  body,
30
28
  });
31
29
  };
32
- exports.serializeAws_restJson1GetMediaCommand = serializeAws_restJson1GetMediaCommand;
33
- const deserializeAws_restJson1GetMediaCommand = async (output, context) => {
30
+ exports.se_GetMediaCommand = se_GetMediaCommand;
31
+ const de_GetMediaCommand = async (output, context) => {
34
32
  if (output.statusCode !== 200 && output.statusCode >= 300) {
35
- return deserializeAws_restJson1GetMediaCommandError(output, context);
33
+ return de_GetMediaCommandError(output, context);
36
34
  }
37
35
  const contents = map({
38
36
  $metadata: deserializeMetadata(output),
@@ -43,8 +41,8 @@ const deserializeAws_restJson1GetMediaCommand = async (output, context) => {
43
41
  contents.Payload = data;
44
42
  return contents;
45
43
  };
46
- exports.deserializeAws_restJson1GetMediaCommand = deserializeAws_restJson1GetMediaCommand;
47
- const deserializeAws_restJson1GetMediaCommandError = async (output, context) => {
44
+ exports.de_GetMediaCommand = de_GetMediaCommand;
45
+ const de_GetMediaCommandError = async (output, context) => {
48
46
  const parsedOutput = {
49
47
  ...output,
50
48
  body: await parseErrorBody(output.body, context),
@@ -53,22 +51,22 @@ const deserializeAws_restJson1GetMediaCommandError = async (output, context) =>
53
51
  switch (errorCode) {
54
52
  case "ClientLimitExceededException":
55
53
  case "com.amazonaws.kinesisvideomedia#ClientLimitExceededException":
56
- throw await deserializeAws_restJson1ClientLimitExceededExceptionResponse(parsedOutput, context);
54
+ throw await de_ClientLimitExceededExceptionRes(parsedOutput, context);
57
55
  case "ConnectionLimitExceededException":
58
56
  case "com.amazonaws.kinesisvideomedia#ConnectionLimitExceededException":
59
- throw await deserializeAws_restJson1ConnectionLimitExceededExceptionResponse(parsedOutput, context);
57
+ throw await de_ConnectionLimitExceededExceptionRes(parsedOutput, context);
60
58
  case "InvalidArgumentException":
61
59
  case "com.amazonaws.kinesisvideomedia#InvalidArgumentException":
62
- throw await deserializeAws_restJson1InvalidArgumentExceptionResponse(parsedOutput, context);
60
+ throw await de_InvalidArgumentExceptionRes(parsedOutput, context);
63
61
  case "InvalidEndpointException":
64
62
  case "com.amazonaws.kinesisvideomedia#InvalidEndpointException":
65
- throw await deserializeAws_restJson1InvalidEndpointExceptionResponse(parsedOutput, context);
63
+ throw await de_InvalidEndpointExceptionRes(parsedOutput, context);
66
64
  case "NotAuthorizedException":
67
65
  case "com.amazonaws.kinesisvideomedia#NotAuthorizedException":
68
- throw await deserializeAws_restJson1NotAuthorizedExceptionResponse(parsedOutput, context);
66
+ throw await de_NotAuthorizedExceptionRes(parsedOutput, context);
69
67
  case "ResourceNotFoundException":
70
68
  case "com.amazonaws.kinesisvideomedia#ResourceNotFoundException":
71
- throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
69
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
72
70
  default:
73
71
  const parsedBody = parsedOutput.body;
74
72
  (0, smithy_client_1.throwDefaultError)({
@@ -80,7 +78,7 @@ const deserializeAws_restJson1GetMediaCommandError = async (output, context) =>
80
78
  }
81
79
  };
82
80
  const map = smithy_client_1.map;
83
- const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (parsedOutput, context) => {
81
+ const de_ClientLimitExceededExceptionRes = async (parsedOutput, context) => {
84
82
  const contents = map({});
85
83
  const data = parsedOutput.body;
86
84
  if (data.Message != null) {
@@ -92,7 +90,7 @@ const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (pars
92
90
  });
93
91
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
94
92
  };
95
- const deserializeAws_restJson1ConnectionLimitExceededExceptionResponse = async (parsedOutput, context) => {
93
+ const de_ConnectionLimitExceededExceptionRes = async (parsedOutput, context) => {
96
94
  const contents = map({});
97
95
  const data = parsedOutput.body;
98
96
  if (data.Message != null) {
@@ -104,7 +102,7 @@ const deserializeAws_restJson1ConnectionLimitExceededExceptionResponse = async (
104
102
  });
105
103
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
106
104
  };
107
- const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOutput, context) => {
105
+ const de_InvalidArgumentExceptionRes = async (parsedOutput, context) => {
108
106
  const contents = map({});
109
107
  const data = parsedOutput.body;
110
108
  if (data.Message != null) {
@@ -116,7 +114,7 @@ const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOu
116
114
  });
117
115
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
118
116
  };
119
- const deserializeAws_restJson1InvalidEndpointExceptionResponse = async (parsedOutput, context) => {
117
+ const de_InvalidEndpointExceptionRes = async (parsedOutput, context) => {
120
118
  const contents = map({});
121
119
  const data = parsedOutput.body;
122
120
  if (data.Message != null) {
@@ -128,7 +126,7 @@ const deserializeAws_restJson1InvalidEndpointExceptionResponse = async (parsedOu
128
126
  });
129
127
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
130
128
  };
131
- const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutput, context) => {
129
+ const de_NotAuthorizedExceptionRes = async (parsedOutput, context) => {
132
130
  const contents = map({});
133
131
  const data = parsedOutput.body;
134
132
  if (data.Message != null) {
@@ -140,7 +138,7 @@ const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutp
140
138
  });
141
139
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
142
140
  };
143
- const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedOutput, context) => {
141
+ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
144
142
  const contents = map({});
145
143
  const data = parsedOutput.body;
146
144
  if (data.Message != null) {
@@ -152,7 +150,7 @@ const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedO
152
150
  });
153
151
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
154
152
  };
155
- const serializeAws_restJson1StartSelector = (input, context) => {
153
+ const se_StartSelector = (input, context) => {
156
154
  return {
157
155
  ...(input.AfterFragmentNumber != null && { AfterFragmentNumber: input.AfterFragmentNumber }),
158
156
  ...(input.ContinuationToken != null && { ContinuationToken: input.ContinuationToken }),
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetMediaOutputFilterSensitiveLog } from "../models/models_0";
5
- import { deserializeAws_restJson1GetMediaCommand, serializeAws_restJson1GetMediaCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_GetMediaCommand, se_GetMediaCommand } from "../protocols/Aws_restJson1";
6
6
  export class GetMediaCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class GetMediaCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1GetMediaCommand(input, context);
37
+ return se_GetMediaCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1GetMediaCommand(output, context);
40
+ return de_GetMediaCommand(output, context);
41
41
  }
42
42
  }
@@ -2,7 +2,7 @@ import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
2
2
  import { decorateServiceException as __decorateServiceException, expectString as __expectString, map as __map, throwDefaultError, } from "@aws-sdk/smithy-client";
3
3
  import { KinesisVideoMediaServiceException as __BaseException } from "../models/KinesisVideoMediaServiceException";
4
4
  import { ClientLimitExceededException, ConnectionLimitExceededException, InvalidArgumentException, InvalidEndpointException, NotAuthorizedException, ResourceNotFoundException, } from "../models/models_0";
5
- export const serializeAws_restJson1GetMediaCommand = async (input, context) => {
5
+ export const se_GetMediaCommand = async (input, context) => {
6
6
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
7
7
  const headers = {
8
8
  "content-type": "application/json",
@@ -10,9 +10,7 @@ export const serializeAws_restJson1GetMediaCommand = async (input, context) => {
10
10
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/getMedia";
11
11
  let body;
12
12
  body = JSON.stringify({
13
- ...(input.StartSelector != null && {
14
- StartSelector: serializeAws_restJson1StartSelector(input.StartSelector, context),
15
- }),
13
+ ...(input.StartSelector != null && { StartSelector: se_StartSelector(input.StartSelector, context) }),
16
14
  ...(input.StreamARN != null && { StreamARN: input.StreamARN }),
17
15
  ...(input.StreamName != null && { StreamName: input.StreamName }),
18
16
  });
@@ -26,9 +24,9 @@ export const serializeAws_restJson1GetMediaCommand = async (input, context) => {
26
24
  body,
27
25
  });
28
26
  };
29
- export const deserializeAws_restJson1GetMediaCommand = async (output, context) => {
27
+ export const de_GetMediaCommand = async (output, context) => {
30
28
  if (output.statusCode !== 200 && output.statusCode >= 300) {
31
- return deserializeAws_restJson1GetMediaCommandError(output, context);
29
+ return de_GetMediaCommandError(output, context);
32
30
  }
33
31
  const contents = map({
34
32
  $metadata: deserializeMetadata(output),
@@ -39,7 +37,7 @@ export const deserializeAws_restJson1GetMediaCommand = async (output, context) =
39
37
  contents.Payload = data;
40
38
  return contents;
41
39
  };
42
- const deserializeAws_restJson1GetMediaCommandError = async (output, context) => {
40
+ const de_GetMediaCommandError = async (output, context) => {
43
41
  const parsedOutput = {
44
42
  ...output,
45
43
  body: await parseErrorBody(output.body, context),
@@ -48,22 +46,22 @@ const deserializeAws_restJson1GetMediaCommandError = async (output, context) =>
48
46
  switch (errorCode) {
49
47
  case "ClientLimitExceededException":
50
48
  case "com.amazonaws.kinesisvideomedia#ClientLimitExceededException":
51
- throw await deserializeAws_restJson1ClientLimitExceededExceptionResponse(parsedOutput, context);
49
+ throw await de_ClientLimitExceededExceptionRes(parsedOutput, context);
52
50
  case "ConnectionLimitExceededException":
53
51
  case "com.amazonaws.kinesisvideomedia#ConnectionLimitExceededException":
54
- throw await deserializeAws_restJson1ConnectionLimitExceededExceptionResponse(parsedOutput, context);
52
+ throw await de_ConnectionLimitExceededExceptionRes(parsedOutput, context);
55
53
  case "InvalidArgumentException":
56
54
  case "com.amazonaws.kinesisvideomedia#InvalidArgumentException":
57
- throw await deserializeAws_restJson1InvalidArgumentExceptionResponse(parsedOutput, context);
55
+ throw await de_InvalidArgumentExceptionRes(parsedOutput, context);
58
56
  case "InvalidEndpointException":
59
57
  case "com.amazonaws.kinesisvideomedia#InvalidEndpointException":
60
- throw await deserializeAws_restJson1InvalidEndpointExceptionResponse(parsedOutput, context);
58
+ throw await de_InvalidEndpointExceptionRes(parsedOutput, context);
61
59
  case "NotAuthorizedException":
62
60
  case "com.amazonaws.kinesisvideomedia#NotAuthorizedException":
63
- throw await deserializeAws_restJson1NotAuthorizedExceptionResponse(parsedOutput, context);
61
+ throw await de_NotAuthorizedExceptionRes(parsedOutput, context);
64
62
  case "ResourceNotFoundException":
65
63
  case "com.amazonaws.kinesisvideomedia#ResourceNotFoundException":
66
- throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
64
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
67
65
  default:
68
66
  const parsedBody = parsedOutput.body;
69
67
  throwDefaultError({
@@ -75,7 +73,7 @@ const deserializeAws_restJson1GetMediaCommandError = async (output, context) =>
75
73
  }
76
74
  };
77
75
  const map = __map;
78
- const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (parsedOutput, context) => {
76
+ const de_ClientLimitExceededExceptionRes = async (parsedOutput, context) => {
79
77
  const contents = map({});
80
78
  const data = parsedOutput.body;
81
79
  if (data.Message != null) {
@@ -87,7 +85,7 @@ const deserializeAws_restJson1ClientLimitExceededExceptionResponse = async (pars
87
85
  });
88
86
  return __decorateServiceException(exception, parsedOutput.body);
89
87
  };
90
- const deserializeAws_restJson1ConnectionLimitExceededExceptionResponse = async (parsedOutput, context) => {
88
+ const de_ConnectionLimitExceededExceptionRes = async (parsedOutput, context) => {
91
89
  const contents = map({});
92
90
  const data = parsedOutput.body;
93
91
  if (data.Message != null) {
@@ -99,7 +97,7 @@ const deserializeAws_restJson1ConnectionLimitExceededExceptionResponse = async (
99
97
  });
100
98
  return __decorateServiceException(exception, parsedOutput.body);
101
99
  };
102
- const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOutput, context) => {
100
+ const de_InvalidArgumentExceptionRes = async (parsedOutput, context) => {
103
101
  const contents = map({});
104
102
  const data = parsedOutput.body;
105
103
  if (data.Message != null) {
@@ -111,7 +109,7 @@ const deserializeAws_restJson1InvalidArgumentExceptionResponse = async (parsedOu
111
109
  });
112
110
  return __decorateServiceException(exception, parsedOutput.body);
113
111
  };
114
- const deserializeAws_restJson1InvalidEndpointExceptionResponse = async (parsedOutput, context) => {
112
+ const de_InvalidEndpointExceptionRes = async (parsedOutput, context) => {
115
113
  const contents = map({});
116
114
  const data = parsedOutput.body;
117
115
  if (data.Message != null) {
@@ -123,7 +121,7 @@ const deserializeAws_restJson1InvalidEndpointExceptionResponse = async (parsedOu
123
121
  });
124
122
  return __decorateServiceException(exception, parsedOutput.body);
125
123
  };
126
- const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutput, context) => {
124
+ const de_NotAuthorizedExceptionRes = async (parsedOutput, context) => {
127
125
  const contents = map({});
128
126
  const data = parsedOutput.body;
129
127
  if (data.Message != null) {
@@ -135,7 +133,7 @@ const deserializeAws_restJson1NotAuthorizedExceptionResponse = async (parsedOutp
135
133
  });
136
134
  return __decorateServiceException(exception, parsedOutput.body);
137
135
  };
138
- const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedOutput, context) => {
136
+ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
139
137
  const contents = map({});
140
138
  const data = parsedOutput.body;
141
139
  if (data.Message != null) {
@@ -147,7 +145,7 @@ const deserializeAws_restJson1ResourceNotFoundExceptionResponse = async (parsedO
147
145
  });
148
146
  return __decorateServiceException(exception, parsedOutput.body);
149
147
  };
150
- const serializeAws_restJson1StartSelector = (input, context) => {
148
+ const se_StartSelector = (input, context) => {
151
149
  return {
152
150
  ...(input.AfterFragmentNumber != null && { AfterFragmentNumber: input.AfterFragmentNumber }),
153
151
  ...(input.ContinuationToken != null && { ContinuationToken: input.ContinuationToken }),
@@ -1,5 +1,11 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { GetMediaCommandInput, GetMediaCommandOutput } from "../commands/GetMediaCommand";
4
- export declare const serializeAws_restJson1GetMediaCommand: (input: GetMediaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
5
- export declare const deserializeAws_restJson1GetMediaCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<GetMediaCommandOutput>;
4
+ /**
5
+ * serializeAws_restJson1GetMediaCommand
6
+ */
7
+ export declare const se_GetMediaCommand: (input: GetMediaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
+ /**
9
+ * deserializeAws_restJson1GetMediaCommand
10
+ */
11
+ export declare const de_GetMediaCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<GetMediaCommandOutput>;
@@ -10,11 +10,11 @@ import {
10
10
  GetMediaCommandInput,
11
11
  GetMediaCommandOutput,
12
12
  } from "../commands/GetMediaCommand";
13
- export declare const serializeAws_restJson1GetMediaCommand: (
13
+ export declare const se_GetMediaCommand: (
14
14
  input: GetMediaCommandInput,
15
15
  context: __SerdeContext
16
16
  ) => Promise<__HttpRequest>;
17
- export declare const deserializeAws_restJson1GetMediaCommand: (
17
+ export declare const de_GetMediaCommand: (
18
18
  output: __HttpResponse,
19
19
  context: __SerdeContext & __SdkStreamSerdeContext
20
20
  ) => Promise<GetMediaCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-media",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Media Client for Node.js, Browser and React Native",
4
- "version": "3.303.0",
4
+ "version": "3.309.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",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.303.0",
25
- "@aws-sdk/config-resolver": "3.303.0",
26
- "@aws-sdk/credential-provider-node": "3.303.0",
27
- "@aws-sdk/fetch-http-handler": "3.303.0",
28
- "@aws-sdk/hash-node": "3.303.0",
29
- "@aws-sdk/invalid-dependency": "3.303.0",
30
- "@aws-sdk/middleware-content-length": "3.303.0",
31
- "@aws-sdk/middleware-endpoint": "3.303.0",
32
- "@aws-sdk/middleware-host-header": "3.303.0",
33
- "@aws-sdk/middleware-logger": "3.303.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
- "@aws-sdk/middleware-retry": "3.303.0",
36
- "@aws-sdk/middleware-serde": "3.303.0",
37
- "@aws-sdk/middleware-signing": "3.303.0",
38
- "@aws-sdk/middleware-stack": "3.303.0",
39
- "@aws-sdk/middleware-user-agent": "3.303.0",
40
- "@aws-sdk/node-config-provider": "3.303.0",
41
- "@aws-sdk/node-http-handler": "3.303.0",
42
- "@aws-sdk/protocol-http": "3.303.0",
43
- "@aws-sdk/smithy-client": "3.303.0",
44
- "@aws-sdk/types": "3.303.0",
45
- "@aws-sdk/url-parser": "3.303.0",
24
+ "@aws-sdk/client-sts": "3.309.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.309.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.309.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
46
  "@aws-sdk/util-base64": "3.303.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.303.0",
48
48
  "@aws-sdk/util-body-length-node": "3.303.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
- "@aws-sdk/util-endpoints": "3.303.0",
52
- "@aws-sdk/util-retry": "3.303.0",
53
- "@aws-sdk/util-stream-browser": "3.303.0",
54
- "@aws-sdk/util-stream-node": "3.303.0",
55
- "@aws-sdk/util-user-agent-browser": "3.303.0",
56
- "@aws-sdk/util-user-agent-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.309.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.309.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-stream-browser": "3.306.0",
54
+ "@aws-sdk/util-stream-node": "3.306.0",
55
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
56
+ "@aws-sdk/util-user-agent-node": "3.306.0",
57
57
  "@aws-sdk/util-utf8": "3.303.0",
58
58
  "tslib": "^2.5.0"
59
59
  },