@aws-sdk/client-dataexchange 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 { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
10
10
  import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "./commands/CreateDataSetCommand";
11
11
  import { CreateEventActionCommandInput, CreateEventActionCommandOutput } from "./commands/CreateEventActionCommand";
@@ -56,7 +56,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
56
56
  * A function that can calculate the length of a request body.
57
57
  * @internal
58
58
  */
59
- bodyLengthChecker?: (body: any) => number | undefined;
59
+ bodyLengthChecker?: __BodyLengthCalculator;
60
60
  /**
61
61
  * A function that converts a stream into an array of bytes.
62
62
  * @internal
@@ -3,3 +3,4 @@ export * from "./DataExchangeClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { DataExchangeServiceException } from "./models/DataExchangeServiceException";
@@ -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 DataExchange service.
4
+ */
5
+ export declare class DataExchangeServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,14 +1,19 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
2
3
  /**
3
4
  * <p>Access to the resource is denied.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  /**
9
10
  * <p>Access to the resource is denied.</p>
10
11
  */
11
12
  Message: string | undefined;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
17
  }
13
18
  export declare enum ServerSideEncryptionTypes {
14
19
  AES256 = "AES256",
@@ -309,9 +314,9 @@ export declare enum ResourceType {
309
314
  /**
310
315
  * <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
311
316
  */
312
- export interface ConflictException extends __SmithyException, $MetadataBearer {
313
- name: "ConflictException";
314
- $fault: "client";
317
+ export declare class ConflictException extends __BaseException {
318
+ readonly name: "ConflictException";
319
+ readonly $fault: "client";
315
320
  /**
316
321
  * <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
317
322
  */
@@ -324,24 +329,32 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
324
329
  * <p>The type of the resource with the conflict.</p>
325
330
  */
326
331
  ResourceType?: ResourceType | string;
332
+ /**
333
+ * @internal
334
+ */
335
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
327
336
  }
328
337
  /**
329
338
  * An exception occurred with the service.
330
339
  */
331
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
332
- name: "InternalServerException";
333
- $fault: "server";
340
+ export declare class InternalServerException extends __BaseException {
341
+ readonly name: "InternalServerException";
342
+ readonly $fault: "server";
334
343
  /**
335
344
  * The message identifying the service exception that occurred.
336
345
  */
337
346
  Message: string | undefined;
347
+ /**
348
+ * @internal
349
+ */
350
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
338
351
  }
339
352
  /**
340
353
  * <p>The resource couldn't be found.</p>
341
354
  */
342
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
343
- name: "ResourceNotFoundException";
344
- $fault: "client";
355
+ export declare class ResourceNotFoundException extends __BaseException {
356
+ readonly name: "ResourceNotFoundException";
357
+ readonly $fault: "client";
345
358
  /**
346
359
  * <p>The resource couldn't be found.</p>
347
360
  */
@@ -354,17 +367,25 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
354
367
  * <p>The type of resource that couldn't be found.</p>
355
368
  */
356
369
  ResourceType?: ResourceType | string;
370
+ /**
371
+ * @internal
372
+ */
373
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
357
374
  }
358
375
  /**
359
376
  * <p>The limit on the number of requests per second was exceeded.</p>
360
377
  */
361
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
362
- name: "ThrottlingException";
363
- $fault: "client";
378
+ export declare class ThrottlingException extends __BaseException {
379
+ readonly name: "ThrottlingException";
380
+ readonly $fault: "client";
364
381
  /**
365
382
  * <p>The limit on the number of requests per second was exceeded.</p>
366
383
  */
367
384
  Message: string | undefined;
385
+ /**
386
+ * @internal
387
+ */
388
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
368
389
  }
369
390
  export declare enum ExceptionCause {
370
391
  InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
@@ -373,9 +394,9 @@ export declare enum ExceptionCause {
373
394
  /**
374
395
  * <p>The request was invalid.</p>
375
396
  */
376
- export interface ValidationException extends __SmithyException, $MetadataBearer {
377
- name: "ValidationException";
378
- $fault: "client";
397
+ export declare class ValidationException extends __BaseException {
398
+ readonly name: "ValidationException";
399
+ readonly $fault: "client";
379
400
  /**
380
401
  * <p>The message that informs you about what was invalid about the request.</p>
381
402
  */
@@ -384,6 +405,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
384
405
  * <p>The message that informs you about what the exception was.</p>
385
406
  */
386
407
  ExceptionCause?: ExceptionCause | string;
408
+ /**
409
+ * @internal
410
+ */
411
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
387
412
  }
388
413
  export declare enum Code {
389
414
  ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
@@ -523,9 +548,9 @@ export declare enum LimitName {
523
548
  /**
524
549
  * <p>The request has exceeded the quotas imposed by the service.</p>
525
550
  */
526
- export interface ServiceLimitExceededException extends __SmithyException, $MetadataBearer {
527
- name: "ServiceLimitExceededException";
528
- $fault: "client";
551
+ export declare class ServiceLimitExceededException extends __BaseException {
552
+ readonly name: "ServiceLimitExceededException";
553
+ readonly $fault: "client";
529
554
  /**
530
555
  * <p>The name of the quota that was exceeded.</p>
531
556
  */
@@ -538,6 +563,10 @@ export interface ServiceLimitExceededException extends __SmithyException, $Metad
538
563
  * <p>The request has exceeded the quotas imposed by the service.</p>
539
564
  */
540
565
  Message: string | undefined;
566
+ /**
567
+ * @internal
568
+ */
569
+ constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
541
570
  }
542
571
  /**
543
572
  * <p>Information about the published revision.</p>
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
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: DataExchangeClientConfig) => {
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: DataExchangeClientConfig) => {
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 { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
10
10
  import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "./commands/CreateDataSetCommand";
11
11
  import { CreateEventActionCommandInput, CreateEventActionCommandOutput } from "./commands/CreateEventActionCommand";
@@ -44,7 +44,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
44
44
 
45
45
  urlParser?: __UrlParser;
46
46
 
47
- bodyLengthChecker?: (body: any) => number | undefined;
47
+ bodyLengthChecker?: __BodyLengthCalculator;
48
48
 
49
49
  streamCollector?: __StreamCollector;
50
50
 
@@ -3,3 +3,4 @@ export * from "./DataExchangeClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { DataExchangeServiceException } from "./models/DataExchangeServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class DataExchangeServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,10 +1,13 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
6
7
 
7
8
  Message: string | undefined;
9
+
10
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
8
11
  }
9
12
  export declare enum ServerSideEncryptionTypes {
10
13
  AES256 = "AES256",
@@ -183,53 +186,63 @@ export declare enum ResourceType {
183
186
  REVISION = "REVISION"
184
187
  }
185
188
 
186
- export interface ConflictException extends __SmithyException, $MetadataBearer {
187
- name: "ConflictException";
188
- $fault: "client";
189
+ export declare class ConflictException extends __BaseException {
190
+ readonly name: "ConflictException";
191
+ readonly $fault: "client";
189
192
 
190
193
  Message: string | undefined;
191
194
 
192
195
  ResourceId?: string;
193
196
 
194
197
  ResourceType?: ResourceType | string;
198
+
199
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
195
200
  }
196
201
 
197
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
198
- name: "InternalServerException";
199
- $fault: "server";
202
+ export declare class InternalServerException extends __BaseException {
203
+ readonly name: "InternalServerException";
204
+ readonly $fault: "server";
200
205
 
201
206
  Message: string | undefined;
207
+
208
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
202
209
  }
203
210
 
204
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
205
- name: "ResourceNotFoundException";
206
- $fault: "client";
211
+ export declare class ResourceNotFoundException extends __BaseException {
212
+ readonly name: "ResourceNotFoundException";
213
+ readonly $fault: "client";
207
214
 
208
215
  Message: string | undefined;
209
216
 
210
217
  ResourceId?: string;
211
218
 
212
219
  ResourceType?: ResourceType | string;
220
+
221
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
213
222
  }
214
223
 
215
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
216
- name: "ThrottlingException";
217
- $fault: "client";
224
+ export declare class ThrottlingException extends __BaseException {
225
+ readonly name: "ThrottlingException";
226
+ readonly $fault: "client";
218
227
 
219
228
  Message: string | undefined;
229
+
230
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
220
231
  }
221
232
  export declare enum ExceptionCause {
222
233
  InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
223
234
  S3AccessDenied = "S3AccessDenied"
224
235
  }
225
236
 
226
- export interface ValidationException extends __SmithyException, $MetadataBearer {
227
- name: "ValidationException";
228
- $fault: "client";
237
+ export declare class ValidationException extends __BaseException {
238
+ readonly name: "ValidationException";
239
+ readonly $fault: "client";
229
240
 
230
241
  Message: string | undefined;
231
242
 
232
243
  ExceptionCause?: ExceptionCause | string;
244
+
245
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
233
246
  }
234
247
  export declare enum Code {
235
248
  ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
@@ -325,15 +338,17 @@ export declare enum LimitName {
325
338
  Revisions_per_data_set = "Revisions per data set"
326
339
  }
327
340
 
328
- export interface ServiceLimitExceededException extends __SmithyException, $MetadataBearer {
329
- name: "ServiceLimitExceededException";
330
- $fault: "client";
341
+ export declare class ServiceLimitExceededException extends __BaseException {
342
+ readonly name: "ServiceLimitExceededException";
343
+ readonly $fault: "client";
331
344
 
332
345
  LimitName?: LimitName | string;
333
346
 
334
347
  LimitValue?: number;
335
348
 
336
349
  Message: string | undefined;
350
+
351
+ constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
337
352
  }
338
353
 
339
354
  export interface RevisionPublished {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
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: DataExchangeClientConfig) => {
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: DataExchangeClientConfig) => {
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-dataexchange",
3
3
  "description": "AWS SDK for JavaScript Dataexchange 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"