@aws-sdk/client-chime-sdk-identity 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 { CreateAppInstanceAdminCommandInput, CreateAppInstanceAdminCommandOutput } from "./commands/CreateAppInstanceAdminCommand";
10
10
  import { CreateAppInstanceCommandInput, CreateAppInstanceCommandOutput } from "./commands/CreateAppInstanceCommand";
11
11
  import { CreateAppInstanceUserCommandInput, CreateAppInstanceUserCommandOutput } from "./commands/CreateAppInstanceUserCommand";
@@ -52,7 +52,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
52
52
  * A function that can calculate the length of a request body.
53
53
  * @internal
54
54
  */
55
- bodyLengthChecker?: (body: any) => number | undefined;
55
+ bodyLengthChecker?: __BodyLengthCalculator;
56
56
  /**
57
57
  * A function that converts a stream into an array of bytes.
58
58
  * @internal
@@ -3,3 +3,4 @@ export * from "./ChimeSDKIdentityClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ChimeSDKIdentityServiceException } from "./models/ChimeSDKIdentityServiceException";
@@ -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 ChimeSDKIdentity service.
4
+ */
5
+ export declare class ChimeSDKIdentityServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
2
3
  export declare enum AllowMessages {
3
4
  ALL = "ALL",
4
5
  NONE = "NONE"
@@ -398,21 +399,29 @@ export declare enum ErrorCode {
398
399
  /**
399
400
  * <p>The input parameters don't match the service's restrictions.</p>
400
401
  */
401
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
402
- name: "BadRequestException";
403
- $fault: "client";
402
+ export declare class BadRequestException extends __BaseException {
403
+ readonly name: "BadRequestException";
404
+ readonly $fault: "client";
404
405
  Code?: ErrorCode | string;
405
406
  Message?: string;
407
+ /**
408
+ * @internal
409
+ */
410
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
406
411
  }
407
412
  /**
408
413
  * <p>The request could not be processed because of conflict in the current state of the
409
414
  * resource.</p>
410
415
  */
411
- export interface ConflictException extends __SmithyException, $MetadataBearer {
412
- name: "ConflictException";
413
- $fault: "client";
416
+ export declare class ConflictException extends __BaseException {
417
+ readonly name: "ConflictException";
418
+ readonly $fault: "client";
414
419
  Code?: ErrorCode | string;
415
420
  Message?: string;
421
+ /**
422
+ * @internal
423
+ */
424
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
416
425
  }
417
426
  /**
418
427
  * <p>A tag object containing a key-value pair.</p>
@@ -472,56 +481,80 @@ export declare namespace CreateAppInstanceResponse {
472
481
  /**
473
482
  * <p>The client is permanently forbidden from making the request.</p>
474
483
  */
475
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
476
- name: "ForbiddenException";
477
- $fault: "client";
484
+ export declare class ForbiddenException extends __BaseException {
485
+ readonly name: "ForbiddenException";
486
+ readonly $fault: "client";
478
487
  Code?: ErrorCode | string;
479
488
  Message?: string;
489
+ /**
490
+ * @internal
491
+ */
492
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
480
493
  }
481
494
  /**
482
495
  * <p>The request exceeds the resource limit.</p>
483
496
  */
484
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
485
- name: "ResourceLimitExceededException";
486
- $fault: "client";
497
+ export declare class ResourceLimitExceededException extends __BaseException {
498
+ readonly name: "ResourceLimitExceededException";
499
+ readonly $fault: "client";
487
500
  Code?: ErrorCode | string;
488
501
  Message?: string;
502
+ /**
503
+ * @internal
504
+ */
505
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
489
506
  }
490
507
  /**
491
508
  * <p>The service encountered an unexpected error.</p>
492
509
  */
493
- export interface ServiceFailureException extends __SmithyException, $MetadataBearer {
494
- name: "ServiceFailureException";
495
- $fault: "server";
510
+ export declare class ServiceFailureException extends __BaseException {
511
+ readonly name: "ServiceFailureException";
512
+ readonly $fault: "server";
496
513
  Code?: ErrorCode | string;
497
514
  Message?: string;
515
+ /**
516
+ * @internal
517
+ */
518
+ constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
498
519
  }
499
520
  /**
500
521
  * <p>The service is currently unavailable.</p>
501
522
  */
502
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
503
- name: "ServiceUnavailableException";
504
- $fault: "server";
523
+ export declare class ServiceUnavailableException extends __BaseException {
524
+ readonly name: "ServiceUnavailableException";
525
+ readonly $fault: "server";
505
526
  Code?: ErrorCode | string;
506
527
  Message?: string;
528
+ /**
529
+ * @internal
530
+ */
531
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
507
532
  }
508
533
  /**
509
534
  * <p>The client exceeded its request rate limit.</p>
510
535
  */
511
- export interface ThrottledClientException extends __SmithyException, $MetadataBearer {
512
- name: "ThrottledClientException";
513
- $fault: "client";
536
+ export declare class ThrottledClientException extends __BaseException {
537
+ readonly name: "ThrottledClientException";
538
+ readonly $fault: "client";
514
539
  Code?: ErrorCode | string;
515
540
  Message?: string;
541
+ /**
542
+ * @internal
543
+ */
544
+ constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
516
545
  }
517
546
  /**
518
547
  * <p>The client is not currently authorized to make the request.</p>
519
548
  */
520
- export interface UnauthorizedClientException extends __SmithyException, $MetadataBearer {
521
- name: "UnauthorizedClientException";
522
- $fault: "client";
549
+ export declare class UnauthorizedClientException extends __BaseException {
550
+ readonly name: "UnauthorizedClientException";
551
+ readonly $fault: "client";
523
552
  Code?: ErrorCode | string;
524
553
  Message?: string;
554
+ /**
555
+ * @internal
556
+ */
557
+ constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
525
558
  }
526
559
  export interface CreateAppInstanceAdminRequest {
527
560
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) =>
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: ChimeSDKIdentityClientConfig) =>
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: ChimeSDKIdentityClientConfig) =>
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 { CreateAppInstanceAdminCommandInput, CreateAppInstanceAdminCommandOutput } from "./commands/CreateAppInstanceAdminCommand";
10
10
  import { CreateAppInstanceCommandInput, CreateAppInstanceCommandOutput } from "./commands/CreateAppInstanceCommand";
11
11
  import { CreateAppInstanceUserCommandInput, CreateAppInstanceUserCommandOutput } from "./commands/CreateAppInstanceUserCommand";
@@ -40,7 +40,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
40
40
 
41
41
  urlParser?: __UrlParser;
42
42
 
43
- bodyLengthChecker?: (body: any) => number | undefined;
43
+ bodyLengthChecker?: __BodyLengthCalculator;
44
44
 
45
45
  streamCollector?: __StreamCollector;
46
46
 
@@ -3,3 +3,4 @@ export * from "./ChimeSDKIdentityClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ChimeSDKIdentityServiceException } from "./models/ChimeSDKIdentityServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ChimeSDKIdentityServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
2
3
  export declare enum AllowMessages {
3
4
  ALL = "ALL",
4
5
  NONE = "NONE"
@@ -213,18 +214,22 @@ export declare enum ErrorCode {
213
214
  VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist"
214
215
  }
215
216
 
216
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
217
- name: "BadRequestException";
218
- $fault: "client";
217
+ export declare class BadRequestException extends __BaseException {
218
+ readonly name: "BadRequestException";
219
+ readonly $fault: "client";
219
220
  Code?: ErrorCode | string;
220
221
  Message?: string;
222
+
223
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
221
224
  }
222
225
 
223
- export interface ConflictException extends __SmithyException, $MetadataBearer {
224
- name: "ConflictException";
225
- $fault: "client";
226
+ export declare class ConflictException extends __BaseException {
227
+ readonly name: "ConflictException";
228
+ readonly $fault: "client";
226
229
  Code?: ErrorCode | string;
227
230
  Message?: string;
231
+
232
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
228
233
  }
229
234
 
230
235
  export interface Tag {
@@ -260,46 +265,58 @@ export declare namespace CreateAppInstanceResponse {
260
265
  const filterSensitiveLog: (obj: CreateAppInstanceResponse) => any;
261
266
  }
262
267
 
263
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
264
- name: "ForbiddenException";
265
- $fault: "client";
268
+ export declare class ForbiddenException extends __BaseException {
269
+ readonly name: "ForbiddenException";
270
+ readonly $fault: "client";
266
271
  Code?: ErrorCode | string;
267
272
  Message?: string;
273
+
274
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
268
275
  }
269
276
 
270
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
271
- name: "ResourceLimitExceededException";
272
- $fault: "client";
277
+ export declare class ResourceLimitExceededException extends __BaseException {
278
+ readonly name: "ResourceLimitExceededException";
279
+ readonly $fault: "client";
273
280
  Code?: ErrorCode | string;
274
281
  Message?: string;
282
+
283
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
275
284
  }
276
285
 
277
- export interface ServiceFailureException extends __SmithyException, $MetadataBearer {
278
- name: "ServiceFailureException";
279
- $fault: "server";
286
+ export declare class ServiceFailureException extends __BaseException {
287
+ readonly name: "ServiceFailureException";
288
+ readonly $fault: "server";
280
289
  Code?: ErrorCode | string;
281
290
  Message?: string;
291
+
292
+ constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
282
293
  }
283
294
 
284
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
285
- name: "ServiceUnavailableException";
286
- $fault: "server";
295
+ export declare class ServiceUnavailableException extends __BaseException {
296
+ readonly name: "ServiceUnavailableException";
297
+ readonly $fault: "server";
287
298
  Code?: ErrorCode | string;
288
299
  Message?: string;
300
+
301
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
289
302
  }
290
303
 
291
- export interface ThrottledClientException extends __SmithyException, $MetadataBearer {
292
- name: "ThrottledClientException";
293
- $fault: "client";
304
+ export declare class ThrottledClientException extends __BaseException {
305
+ readonly name: "ThrottledClientException";
306
+ readonly $fault: "client";
294
307
  Code?: ErrorCode | string;
295
308
  Message?: string;
309
+
310
+ constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
296
311
  }
297
312
 
298
- export interface UnauthorizedClientException extends __SmithyException, $MetadataBearer {
299
- name: "UnauthorizedClientException";
300
- $fault: "client";
313
+ export declare class UnauthorizedClientException extends __BaseException {
314
+ readonly name: "UnauthorizedClientException";
315
+ readonly $fault: "client";
301
316
  Code?: ErrorCode | string;
302
317
  Message?: string;
318
+
319
+ constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
303
320
  }
304
321
  export interface CreateAppInstanceAdminRequest {
305
322
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) =>
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: ChimeSDKIdentityClientConfig) =>
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: ChimeSDKIdentityClientConfig) =>
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-chime-sdk-identity",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Identity 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",