@aws-sdk/client-redshift-data 3.52.0 → 3.54.1

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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ 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, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput } from "./commands/BatchExecuteStatementCommand";
10
10
  import { CancelStatementCommandInput, CancelStatementCommandOutput } from "./commands/CancelStatementCommand";
11
11
  import { DescribeStatementCommandInput, DescribeStatementCommandOutput } from "./commands/DescribeStatementCommand";
@@ -38,7 +38,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
38
38
  * A function that can calculate the length of a request body.
39
39
  * @internal
40
40
  */
41
- bodyLengthChecker?: (body: any) => number | undefined;
41
+ bodyLengthChecker?: __BodyLengthCalculator;
42
42
  /**
43
43
  * A function that converts a stream into an array of bytes.
44
44
  * @internal
@@ -3,3 +3,4 @@ export * from "./RedshiftDataClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { RedshiftDataServiceException } from "./models/RedshiftDataServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from RedshiftData service.
4
+ */
5
+ export declare class RedshiftDataServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,23 +1,32 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException";
2
3
  /**
3
4
  * <p>The number of active statements exceeds the limit.</p>
4
5
  */
5
- export interface ActiveStatementsExceededException extends __SmithyException, $MetadataBearer {
6
- name: "ActiveStatementsExceededException";
7
- $fault: "client";
6
+ export declare class ActiveStatementsExceededException extends __BaseException {
7
+ readonly name: "ActiveStatementsExceededException";
8
+ readonly $fault: "client";
8
9
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<ActiveStatementsExceededException, __BaseException>);
9
14
  }
10
15
  /**
11
16
  * <p>An SQL statement encountered an environmental error while running.</p>
12
17
  */
13
- export interface BatchExecuteStatementException extends __SmithyException, $MetadataBearer {
14
- name: "BatchExecuteStatementException";
15
- $fault: "server";
18
+ export declare class BatchExecuteStatementException extends __BaseException {
19
+ readonly name: "BatchExecuteStatementException";
20
+ readonly $fault: "server";
16
21
  Message: string | undefined;
17
22
  /**
18
23
  * <p>Statement identifier of the exception.</p>
19
24
  */
20
25
  StatementId: string | undefined;
26
+ /**
27
+ * @internal
28
+ */
29
+ constructor(opts: __ExceptionOptionType<BatchExecuteStatementException, __BaseException>);
21
30
  }
22
31
  export interface BatchExecuteStatementInput {
23
32
  /**
@@ -91,13 +100,17 @@ export declare namespace BatchExecuteStatementOutput {
91
100
  /**
92
101
  * <p>The Amazon Redshift Data API operation failed due to invalid input. </p>
93
102
  */
94
- export interface ValidationException extends __SmithyException, $MetadataBearer {
95
- name: "ValidationException";
96
- $fault: "client";
103
+ export declare class ValidationException extends __BaseException {
104
+ readonly name: "ValidationException";
105
+ readonly $fault: "client";
97
106
  /**
98
107
  * <p>The exception message.</p>
99
108
  */
100
109
  Message?: string;
110
+ /**
111
+ * @internal
112
+ */
113
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
101
114
  }
102
115
  export interface CancelStatementRequest {
103
116
  /**
@@ -127,28 +140,36 @@ export declare namespace CancelStatementResponse {
127
140
  /**
128
141
  * <p>Connection to a database failed.</p>
129
142
  */
130
- export interface DatabaseConnectionException extends __SmithyException, $MetadataBearer {
131
- name: "DatabaseConnectionException";
132
- $fault: "server";
143
+ export declare class DatabaseConnectionException extends __BaseException {
144
+ readonly name: "DatabaseConnectionException";
145
+ readonly $fault: "server";
133
146
  Message: string | undefined;
147
+ /**
148
+ * @internal
149
+ */
150
+ constructor(opts: __ExceptionOptionType<DatabaseConnectionException, __BaseException>);
134
151
  }
135
152
  /**
136
153
  * <p>The Amazon Redshift Data API operation failed due to invalid input. </p>
137
154
  */
138
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
139
- name: "InternalServerException";
140
- $fault: "server";
155
+ export declare class InternalServerException extends __BaseException {
156
+ readonly name: "InternalServerException";
157
+ readonly $fault: "server";
141
158
  /**
142
159
  * <p>The exception message.</p>
143
160
  */
144
161
  Message: string | undefined;
162
+ /**
163
+ * @internal
164
+ */
165
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
145
166
  }
146
167
  /**
147
168
  * <p>The Amazon Redshift Data API operation failed due to a missing resource. </p>
148
169
  */
149
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
150
- name: "ResourceNotFoundException";
151
- $fault: "client";
170
+ export declare class ResourceNotFoundException extends __BaseException {
171
+ readonly name: "ResourceNotFoundException";
172
+ readonly $fault: "client";
152
173
  /**
153
174
  * <p>The exception message.</p>
154
175
  */
@@ -157,6 +178,10 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
157
178
  * <p>Resource identifier associated with the exception.</p>
158
179
  */
159
180
  ResourceId: string | undefined;
181
+ /**
182
+ * @internal
183
+ */
184
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
160
185
  }
161
186
  /**
162
187
  * <p>The properties (metadata) of a column. </p>
@@ -514,9 +539,9 @@ export declare namespace DescribeTableResponse {
514
539
  /**
515
540
  * <p>The SQL statement encountered an environmental error while running.</p>
516
541
  */
517
- export interface ExecuteStatementException extends __SmithyException, $MetadataBearer {
518
- name: "ExecuteStatementException";
519
- $fault: "server";
542
+ export declare class ExecuteStatementException extends __BaseException {
543
+ readonly name: "ExecuteStatementException";
544
+ readonly $fault: "server";
520
545
  /**
521
546
  * <p>The exception message.</p>
522
547
  */
@@ -525,6 +550,10 @@ export interface ExecuteStatementException extends __SmithyException, $MetadataB
525
550
  * <p>Statement identifier of the exception.</p>
526
551
  */
527
552
  StatementId: string | undefined;
553
+ /**
554
+ * @internal
555
+ */
556
+ constructor(opts: __ExceptionOptionType<ExecuteStatementException, __BaseException>);
528
557
  }
529
558
  export interface ExecuteStatementInput {
530
559
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ 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, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOutput } from "./commands/BatchExecuteStatementCommand";
10
10
  import { CancelStatementCommandInput, CancelStatementCommandOutput } from "./commands/CancelStatementCommand";
11
11
  import { DescribeStatementCommandInput, DescribeStatementCommandOutput } from "./commands/DescribeStatementCommand";
@@ -26,7 +26,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
26
26
 
27
27
  urlParser?: __UrlParser;
28
28
 
29
- bodyLengthChecker?: (body: any) => number | undefined;
29
+ bodyLengthChecker?: __BodyLengthCalculator;
30
30
 
31
31
  streamCollector?: __StreamCollector;
32
32
 
@@ -3,3 +3,4 @@ export * from "./RedshiftDataClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { RedshiftDataServiceException } from "./models/RedshiftDataServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class RedshiftDataServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,17 +1,22 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException";
2
3
 
3
- export interface ActiveStatementsExceededException extends __SmithyException, $MetadataBearer {
4
- name: "ActiveStatementsExceededException";
5
- $fault: "client";
4
+ export declare class ActiveStatementsExceededException extends __BaseException {
5
+ readonly name: "ActiveStatementsExceededException";
6
+ readonly $fault: "client";
6
7
  Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<ActiveStatementsExceededException, __BaseException>);
7
10
  }
8
11
 
9
- export interface BatchExecuteStatementException extends __SmithyException, $MetadataBearer {
10
- name: "BatchExecuteStatementException";
11
- $fault: "server";
12
+ export declare class BatchExecuteStatementException extends __BaseException {
13
+ readonly name: "BatchExecuteStatementException";
14
+ readonly $fault: "server";
12
15
  Message: string | undefined;
13
16
 
14
17
  StatementId: string | undefined;
18
+
19
+ constructor(opts: __ExceptionOptionType<BatchExecuteStatementException, __BaseException>);
15
20
  }
16
21
  export interface BatchExecuteStatementInput {
17
22
 
@@ -52,11 +57,13 @@ export declare namespace BatchExecuteStatementOutput {
52
57
  const filterSensitiveLog: (obj: BatchExecuteStatementOutput) => any;
53
58
  }
54
59
 
55
- export interface ValidationException extends __SmithyException, $MetadataBearer {
56
- name: "ValidationException";
57
- $fault: "client";
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
58
63
 
59
64
  Message?: string;
65
+
66
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
60
67
  }
61
68
  export interface CancelStatementRequest {
62
69
 
@@ -75,26 +82,32 @@ export declare namespace CancelStatementResponse {
75
82
  const filterSensitiveLog: (obj: CancelStatementResponse) => any;
76
83
  }
77
84
 
78
- export interface DatabaseConnectionException extends __SmithyException, $MetadataBearer {
79
- name: "DatabaseConnectionException";
80
- $fault: "server";
85
+ export declare class DatabaseConnectionException extends __BaseException {
86
+ readonly name: "DatabaseConnectionException";
87
+ readonly $fault: "server";
81
88
  Message: string | undefined;
89
+
90
+ constructor(opts: __ExceptionOptionType<DatabaseConnectionException, __BaseException>);
82
91
  }
83
92
 
84
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
85
- name: "InternalServerException";
86
- $fault: "server";
93
+ export declare class InternalServerException extends __BaseException {
94
+ readonly name: "InternalServerException";
95
+ readonly $fault: "server";
87
96
 
88
97
  Message: string | undefined;
98
+
99
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
89
100
  }
90
101
 
91
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
92
- name: "ResourceNotFoundException";
93
- $fault: "client";
102
+ export declare class ResourceNotFoundException extends __BaseException {
103
+ readonly name: "ResourceNotFoundException";
104
+ readonly $fault: "client";
94
105
 
95
106
  Message: string | undefined;
96
107
 
97
108
  ResourceId: string | undefined;
109
+
110
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
98
111
  }
99
112
 
100
113
  export interface ColumnMetadata {
@@ -273,13 +286,15 @@ export declare namespace DescribeTableResponse {
273
286
  const filterSensitiveLog: (obj: DescribeTableResponse) => any;
274
287
  }
275
288
 
276
- export interface ExecuteStatementException extends __SmithyException, $MetadataBearer {
277
- name: "ExecuteStatementException";
278
- $fault: "server";
289
+ export declare class ExecuteStatementException extends __BaseException {
290
+ readonly name: "ExecuteStatementException";
291
+ readonly $fault: "server";
279
292
 
280
293
  Message: string | undefined;
281
294
 
282
295
  StatementId: string | undefined;
296
+
297
+ constructor(opts: __ExceptionOptionType<ExecuteStatementException, __BaseException>);
283
298
  }
284
299
  export interface ExecuteStatementInput {
285
300
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RedshiftDataClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift-data",
3
3
  "description": "AWS SDK for JavaScript Redshift Data Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.54.1",
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,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.54.1",
22
+ "@aws-sdk/config-resolver": "3.54.1",
23
+ "@aws-sdk/credential-provider-node": "3.54.1",
24
+ "@aws-sdk/fetch-http-handler": "3.54.1",
25
+ "@aws-sdk/hash-node": "3.54.1",
26
+ "@aws-sdk/invalid-dependency": "3.54.1",
27
+ "@aws-sdk/middleware-content-length": "3.54.1",
28
+ "@aws-sdk/middleware-host-header": "3.54.1",
29
+ "@aws-sdk/middleware-logger": "3.54.1",
30
+ "@aws-sdk/middleware-retry": "3.54.1",
31
+ "@aws-sdk/middleware-serde": "3.54.1",
32
+ "@aws-sdk/middleware-signing": "3.54.1",
33
+ "@aws-sdk/middleware-stack": "3.54.1",
34
+ "@aws-sdk/middleware-user-agent": "3.54.1",
35
+ "@aws-sdk/node-config-provider": "3.54.1",
36
+ "@aws-sdk/node-http-handler": "3.54.1",
37
+ "@aws-sdk/protocol-http": "3.54.1",
38
+ "@aws-sdk/smithy-client": "3.54.1",
39
+ "@aws-sdk/types": "3.54.1",
40
+ "@aws-sdk/url-parser": "3.54.1",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.1",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.1",
48
+ "@aws-sdk/util-user-agent-node": "3.54.1",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0"