@aws-sdk/client-appconfig 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 { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
10
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
11
11
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
@@ -61,7 +61,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
61
61
  * A function that can calculate the length of a request body.
62
62
  * @internal
63
63
  */
64
- bodyLengthChecker?: (body: any) => number | undefined;
64
+ bodyLengthChecker?: __BodyLengthCalculator;
65
65
  /**
66
66
  * A function that converts a stream into an array of bytes.
67
67
  * @internal
@@ -3,3 +3,4 @@ export * from "./AppConfigClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppConfigServiceException } from "./models/AppConfigServiceException";
@@ -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 AppConfig service.
4
+ */
5
+ export declare class AppConfigServiceException 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 { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
2
3
  export interface Application {
3
4
  /**
4
5
  * <p>The application ID.</p>
@@ -83,9 +84,9 @@ export declare enum BadRequestReason {
83
84
  /**
84
85
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
85
86
  */
86
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
87
- name: "BadRequestException";
88
- $fault: "client";
87
+ export declare class BadRequestException extends __BaseException {
88
+ readonly name: "BadRequestException";
89
+ readonly $fault: "client";
89
90
  Message?: string;
90
91
  Reason?: BadRequestReason | string;
91
92
  /**
@@ -93,6 +94,10 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
93
94
  * a call.</p>
94
95
  */
95
96
  Details?: BadRequestDetails;
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
96
101
  }
97
102
  export interface CreateApplicationRequest {
98
103
  /**
@@ -121,10 +126,14 @@ export declare namespace CreateApplicationRequest {
121
126
  /**
122
127
  * <p>There was an internal failure in the AppConfig service.</p>
123
128
  */
124
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
125
- name: "InternalServerException";
126
- $fault: "server";
129
+ export declare class InternalServerException extends __BaseException {
130
+ readonly name: "InternalServerException";
131
+ readonly $fault: "server";
127
132
  Message?: string;
133
+ /**
134
+ * @internal
135
+ */
136
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
128
137
  }
129
138
  export declare enum ValidatorType {
130
139
  JSON_SCHEMA = "JSON_SCHEMA",
@@ -280,11 +289,15 @@ export declare namespace CreateConfigurationProfileRequest {
280
289
  /**
281
290
  * <p>The requested resource could not be found.</p>
282
291
  */
283
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
284
- name: "ResourceNotFoundException";
285
- $fault: "client";
292
+ export declare class ResourceNotFoundException extends __BaseException {
293
+ readonly name: "ResourceNotFoundException";
294
+ readonly $fault: "client";
286
295
  Message?: string;
287
296
  ResourceName?: string;
297
+ /**
298
+ * @internal
299
+ */
300
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
288
301
  }
289
302
  export declare enum GrowthType {
290
303
  EXPONENTIAL = "EXPONENTIAL",
@@ -507,10 +520,14 @@ export declare namespace Environment {
507
520
  * <p>The request could not be processed because of conflict in the current state of the
508
521
  * resource.</p>
509
522
  */
510
- export interface ConflictException extends __SmithyException, $MetadataBearer {
511
- name: "ConflictException";
512
- $fault: "client";
523
+ export declare class ConflictException extends __BaseException {
524
+ readonly name: "ConflictException";
525
+ readonly $fault: "client";
513
526
  Message?: string;
527
+ /**
528
+ * @internal
529
+ */
530
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
514
531
  }
515
532
  export interface CreateHostedConfigurationVersionRequest {
516
533
  /**
@@ -587,22 +604,30 @@ export declare enum BytesMeasure {
587
604
  /**
588
605
  * <p>The configuration size is too large.</p>
589
606
  */
590
- export interface PayloadTooLargeException extends __SmithyException, $MetadataBearer {
591
- name: "PayloadTooLargeException";
592
- $fault: "client";
607
+ export declare class PayloadTooLargeException extends __BaseException {
608
+ readonly name: "PayloadTooLargeException";
609
+ readonly $fault: "client";
593
610
  Message?: string;
594
611
  Measure?: BytesMeasure | string;
595
612
  Limit?: number;
596
613
  Size?: number;
614
+ /**
615
+ * @internal
616
+ */
617
+ constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
597
618
  }
598
619
  /**
599
620
  * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted
600
621
  * configuration store. Delete one or more versions and try again.</p>
601
622
  */
602
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
603
- name: "ServiceQuotaExceededException";
604
- $fault: "client";
623
+ export declare class ServiceQuotaExceededException extends __BaseException {
624
+ readonly name: "ServiceQuotaExceededException";
625
+ readonly $fault: "client";
605
626
  Message?: string;
627
+ /**
628
+ * @internal
629
+ */
630
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
606
631
  }
607
632
  export interface DeleteApplicationRequest {
608
633
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppConfigClientConfig) => {
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: AppConfigClientConfig) => {
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: AppConfigClientConfig) => {
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 { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
10
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
11
11
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
@@ -49,7 +49,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
49
49
 
50
50
  urlParser?: __UrlParser;
51
51
 
52
- bodyLengthChecker?: (body: any) => number | undefined;
52
+ bodyLengthChecker?: __BodyLengthCalculator;
53
53
 
54
54
  streamCollector?: __StreamCollector;
55
55
 
@@ -3,3 +3,4 @@ export * from "./AppConfigClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppConfigServiceException } from "./models/AppConfigServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AppConfigServiceException 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 { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
2
3
  export interface Application {
3
4
 
4
5
  Id?: string;
@@ -53,13 +54,15 @@ export declare enum BadRequestReason {
53
54
  INVALID_CONFIGURATION = "InvalidConfiguration"
54
55
  }
55
56
 
56
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
57
- name: "BadRequestException";
58
- $fault: "client";
57
+ export declare class BadRequestException extends __BaseException {
58
+ readonly name: "BadRequestException";
59
+ readonly $fault: "client";
59
60
  Message?: string;
60
61
  Reason?: BadRequestReason | string;
61
62
 
62
63
  Details?: BadRequestDetails;
64
+
65
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
63
66
  }
64
67
  export interface CreateApplicationRequest {
65
68
 
@@ -76,10 +79,12 @@ export declare namespace CreateApplicationRequest {
76
79
  const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
77
80
  }
78
81
 
79
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
80
- name: "InternalServerException";
81
- $fault: "server";
82
+ export declare class InternalServerException extends __BaseException {
83
+ readonly name: "InternalServerException";
84
+ readonly $fault: "server";
82
85
  Message?: string;
86
+
87
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
83
88
  }
84
89
  export declare enum ValidatorType {
85
90
  JSON_SCHEMA = "JSON_SCHEMA",
@@ -143,11 +148,13 @@ export declare namespace CreateConfigurationProfileRequest {
143
148
  const filterSensitiveLog: (obj: CreateConfigurationProfileRequest) => any;
144
149
  }
145
150
 
146
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
147
- name: "ResourceNotFoundException";
148
- $fault: "client";
151
+ export declare class ResourceNotFoundException extends __BaseException {
152
+ readonly name: "ResourceNotFoundException";
153
+ readonly $fault: "client";
149
154
  Message?: string;
150
155
  ResourceName?: string;
156
+
157
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
151
158
  }
152
159
  export declare enum GrowthType {
153
160
  EXPONENTIAL = "EXPONENTIAL",
@@ -257,10 +264,12 @@ export declare namespace Environment {
257
264
  const filterSensitiveLog: (obj: Environment) => any;
258
265
  }
259
266
 
260
- export interface ConflictException extends __SmithyException, $MetadataBearer {
261
- name: "ConflictException";
262
- $fault: "client";
267
+ export declare class ConflictException extends __BaseException {
268
+ readonly name: "ConflictException";
269
+ readonly $fault: "client";
263
270
  Message?: string;
271
+
272
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
264
273
  }
265
274
  export interface CreateHostedConfigurationVersionRequest {
266
275
 
@@ -302,19 +311,23 @@ export declare enum BytesMeasure {
302
311
  KILOBYTES = "KILOBYTES"
303
312
  }
304
313
 
305
- export interface PayloadTooLargeException extends __SmithyException, $MetadataBearer {
306
- name: "PayloadTooLargeException";
307
- $fault: "client";
314
+ export declare class PayloadTooLargeException extends __BaseException {
315
+ readonly name: "PayloadTooLargeException";
316
+ readonly $fault: "client";
308
317
  Message?: string;
309
318
  Measure?: BytesMeasure | string;
310
319
  Limit?: number;
311
320
  Size?: number;
321
+
322
+ constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
312
323
  }
313
324
 
314
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
315
- name: "ServiceQuotaExceededException";
316
- $fault: "client";
325
+ export declare class ServiceQuotaExceededException extends __BaseException {
326
+ readonly name: "ServiceQuotaExceededException";
327
+ readonly $fault: "client";
317
328
  Message?: string;
329
+
330
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
318
331
  }
319
332
  export interface DeleteApplicationRequest {
320
333
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppConfigClientConfig) => {
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: AppConfigClientConfig) => {
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: AppConfigClientConfig) => {
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-appconfig",
3
3
  "description": "AWS SDK for JavaScript Appconfig 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,40 +18,40 @@
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
  },
53
53
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
54
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
55
55
  "@tsconfig/recommended": "1.0.1",
56
56
  "@types/node": "^12.7.5",
57
57
  "concurrently": "7.0.0",