@aws-sdk/client-braket 3.51.0 → 3.54.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.
@@ -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 { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
11
11
  import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
@@ -41,7 +41,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
41
41
  * A function that can calculate the length of a request body.
42
42
  * @internal
43
43
  */
44
- bodyLengthChecker?: (body: any) => number | undefined;
44
+ bodyLengthChecker?: __BodyLengthCalculator;
45
45
  /**
46
46
  * A function that converts a stream into an array of bytes.
47
47
  * @internal
@@ -3,3 +3,4 @@ export * from "./BraketClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { BraketServiceException } from "./models/BraketServiceException";
@@ -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 Braket service.
4
+ */
5
+ export declare class BraketServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,12 +1,15 @@
1
- import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
+ import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
3
  /**
4
4
  * <p>You do not have sufficient access to perform this action.</p>
5
5
  */
6
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
7
- name: "AccessDeniedException";
8
- $fault: "client";
9
- message?: string;
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
13
  }
11
14
  /**
12
15
  * <p>The container image used to create an Amazon Braket job.</p>
@@ -128,34 +131,46 @@ export declare namespace GetDeviceResponse {
128
131
  /**
129
132
  * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
130
133
  */
131
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
132
- name: "InternalServiceException";
133
- $fault: "server";
134
- message?: string;
134
+ export declare class InternalServiceException extends __BaseException {
135
+ readonly name: "InternalServiceException";
136
+ readonly $fault: "server";
137
+ /**
138
+ * @internal
139
+ */
140
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
135
141
  }
136
142
  /**
137
143
  * <p>The specified resource was not found.</p>
138
144
  */
139
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
140
- name: "ResourceNotFoundException";
141
- $fault: "client";
142
- message?: string;
145
+ export declare class ResourceNotFoundException extends __BaseException {
146
+ readonly name: "ResourceNotFoundException";
147
+ readonly $fault: "client";
148
+ /**
149
+ * @internal
150
+ */
151
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
143
152
  }
144
153
  /**
145
154
  * <p>The throttling rate limit is met.</p>
146
155
  */
147
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
148
- name: "ThrottlingException";
149
- $fault: "client";
150
- message?: string;
156
+ export declare class ThrottlingException extends __BaseException {
157
+ readonly name: "ThrottlingException";
158
+ readonly $fault: "client";
159
+ /**
160
+ * @internal
161
+ */
162
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
151
163
  }
152
164
  /**
153
165
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
154
166
  */
155
- export interface ValidationException extends __SmithyException, $MetadataBearer {
156
- name: "ValidationException";
157
- $fault: "client";
158
- message?: string;
167
+ export declare class ValidationException extends __BaseException {
168
+ readonly name: "ValidationException";
169
+ readonly $fault: "client";
170
+ /**
171
+ * @internal
172
+ */
173
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
159
174
  }
160
175
  /**
161
176
  * <p>The filter to use for searching devices.</p>
@@ -278,10 +293,13 @@ export declare namespace CancelJobResponse {
278
293
  /**
279
294
  * <p>An error occurred due to a conflict.</p>
280
295
  */
281
- export interface ConflictException extends __SmithyException, $MetadataBearer {
282
- name: "ConflictException";
283
- $fault: "client";
284
- message?: string;
296
+ export declare class ConflictException extends __BaseException {
297
+ readonly name: "ConflictException";
298
+ readonly $fault: "client";
299
+ /**
300
+ * @internal
301
+ */
302
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
285
303
  }
286
304
  /**
287
305
  * <p>Contains information about the output locations for job checkpoint data.</p>
@@ -553,18 +571,24 @@ export declare namespace CreateJobResponse {
553
571
  /**
554
572
  * <p>The specified device has been retired.</p>
555
573
  */
556
- export interface DeviceRetiredException extends __SmithyException, $MetadataBearer {
557
- name: "DeviceRetiredException";
558
- $fault: "client";
559
- message?: string;
574
+ export declare class DeviceRetiredException extends __BaseException {
575
+ readonly name: "DeviceRetiredException";
576
+ readonly $fault: "client";
577
+ /**
578
+ * @internal
579
+ */
580
+ constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
560
581
  }
561
582
  /**
562
583
  * <p>The request failed because a service quota is exceeded.</p>
563
584
  */
564
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
565
- name: "ServiceQuotaExceededException";
566
- $fault: "client";
567
- message?: string;
585
+ export declare class ServiceQuotaExceededException extends __BaseException {
586
+ readonly name: "ServiceQuotaExceededException";
587
+ readonly $fault: "client";
588
+ /**
589
+ * @internal
590
+ */
591
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
568
592
  }
569
593
  export interface GetJobRequest {
570
594
  /**
@@ -955,10 +979,13 @@ export declare namespace CreateQuantumTaskResponse {
955
979
  /**
956
980
  * <p>The specified device is currently offline.</p>
957
981
  */
958
- export interface DeviceOfflineException extends __SmithyException, $MetadataBearer {
959
- name: "DeviceOfflineException";
960
- $fault: "client";
961
- message?: string;
982
+ export declare class DeviceOfflineException extends __BaseException {
983
+ readonly name: "DeviceOfflineException";
984
+ readonly $fault: "client";
985
+ /**
986
+ * @internal
987
+ */
988
+ constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
962
989
  }
963
990
  export interface GetQuantumTaskRequest {
964
991
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
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: BraketClientConfig) => {
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: BraketClientConfig) => {
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 { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
11
11
  import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
@@ -29,7 +29,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
29
29
 
30
30
  urlParser?: __UrlParser;
31
31
 
32
- bodyLengthChecker?: (body: any) => number | undefined;
32
+ bodyLengthChecker?: __BodyLengthCalculator;
33
33
 
34
34
  streamCollector?: __StreamCollector;
35
35
 
@@ -3,3 +3,4 @@ export * from "./BraketClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { BraketServiceException } from "./models/BraketServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class BraketServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,10 +1,11 @@
1
- import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
+ import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
3
 
4
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
5
- name: "AccessDeniedException";
6
- $fault: "client";
7
- message?: string;
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
8
9
  }
9
10
 
10
11
  export interface ContainerImage {
@@ -79,28 +80,32 @@ export declare namespace GetDeviceResponse {
79
80
  const filterSensitiveLog: (obj: GetDeviceResponse) => any;
80
81
  }
81
82
 
82
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
83
- name: "InternalServiceException";
84
- $fault: "server";
85
- message?: string;
83
+ export declare class InternalServiceException extends __BaseException {
84
+ readonly name: "InternalServiceException";
85
+ readonly $fault: "server";
86
+
87
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
86
88
  }
87
89
 
88
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
89
- name: "ResourceNotFoundException";
90
- $fault: "client";
91
- message?: string;
90
+ export declare class ResourceNotFoundException extends __BaseException {
91
+ readonly name: "ResourceNotFoundException";
92
+ readonly $fault: "client";
93
+
94
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
92
95
  }
93
96
 
94
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
95
- name: "ThrottlingException";
96
- $fault: "client";
97
- message?: string;
97
+ export declare class ThrottlingException extends __BaseException {
98
+ readonly name: "ThrottlingException";
99
+ readonly $fault: "client";
100
+
101
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
98
102
  }
99
103
 
100
- export interface ValidationException extends __SmithyException, $MetadataBearer {
101
- name: "ValidationException";
102
- $fault: "client";
103
- message?: string;
104
+ export declare class ValidationException extends __BaseException {
105
+ readonly name: "ValidationException";
106
+ readonly $fault: "client";
107
+
108
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
104
109
  }
105
110
 
106
111
  export interface SearchDevicesFilter {
@@ -175,10 +180,11 @@ export declare namespace CancelJobResponse {
175
180
  const filterSensitiveLog: (obj: CancelJobResponse) => any;
176
181
  }
177
182
 
178
- export interface ConflictException extends __SmithyException, $MetadataBearer {
179
- name: "ConflictException";
180
- $fault: "client";
181
- message?: string;
183
+ export declare class ConflictException extends __BaseException {
184
+ readonly name: "ConflictException";
185
+ readonly $fault: "client";
186
+
187
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
182
188
  }
183
189
 
184
190
  export interface JobCheckpointConfig {
@@ -346,16 +352,18 @@ export declare namespace CreateJobResponse {
346
352
  const filterSensitiveLog: (obj: CreateJobResponse) => any;
347
353
  }
348
354
 
349
- export interface DeviceRetiredException extends __SmithyException, $MetadataBearer {
350
- name: "DeviceRetiredException";
351
- $fault: "client";
352
- message?: string;
355
+ export declare class DeviceRetiredException extends __BaseException {
356
+ readonly name: "DeviceRetiredException";
357
+ readonly $fault: "client";
358
+
359
+ constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
353
360
  }
354
361
 
355
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
356
- name: "ServiceQuotaExceededException";
357
- $fault: "client";
358
- message?: string;
362
+ export declare class ServiceQuotaExceededException extends __BaseException {
363
+ readonly name: "ServiceQuotaExceededException";
364
+ readonly $fault: "client";
365
+
366
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
359
367
  }
360
368
  export interface GetJobRequest {
361
369
 
@@ -589,10 +597,11 @@ export declare namespace CreateQuantumTaskResponse {
589
597
  const filterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
590
598
  }
591
599
 
592
- export interface DeviceOfflineException extends __SmithyException, $MetadataBearer {
593
- name: "DeviceOfflineException";
594
- $fault: "client";
595
- message?: string;
600
+ export declare class DeviceOfflineException extends __BaseException {
601
+ readonly name: "DeviceOfflineException";
602
+ readonly $fault: "client";
603
+
604
+ constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
596
605
  }
597
606
  export interface GetQuantumTaskRequest {
598
607
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BraketClientConfig) => {
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: BraketClientConfig) => {
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: BraketClientConfig) => {
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-braket",
3
3
  "description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
4
- "version": "3.51.0",
4
+ "version": "3.54.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",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,41 +18,41 @@
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.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.51.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.51.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
21
+ "@aws-sdk/client-sts": "3.54.0",
22
+ "@aws-sdk/config-resolver": "3.54.0",
23
+ "@aws-sdk/credential-provider-node": "3.54.0",
24
+ "@aws-sdk/fetch-http-handler": "3.54.0",
25
+ "@aws-sdk/hash-node": "3.54.0",
26
+ "@aws-sdk/invalid-dependency": "3.54.0",
27
+ "@aws-sdk/middleware-content-length": "3.54.0",
28
+ "@aws-sdk/middleware-host-header": "3.54.0",
29
+ "@aws-sdk/middleware-logger": "3.54.0",
30
+ "@aws-sdk/middleware-retry": "3.54.0",
31
+ "@aws-sdk/middleware-serde": "3.54.0",
32
+ "@aws-sdk/middleware-signing": "3.54.0",
33
+ "@aws-sdk/middleware-stack": "3.54.0",
34
+ "@aws-sdk/middleware-user-agent": "3.54.0",
35
+ "@aws-sdk/node-config-provider": "3.54.0",
36
+ "@aws-sdk/node-http-handler": "3.54.0",
37
+ "@aws-sdk/protocol-http": "3.54.0",
38
+ "@aws-sdk/smithy-client": "3.54.0",
39
+ "@aws-sdk/types": "3.54.0",
40
+ "@aws-sdk/url-parser": "3.54.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-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.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.0",
48
+ "@aws-sdk/util-user-agent-node": "3.54.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "@types/uuid": "^8.3.0",