@aws-sdk/client-apprunner 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 { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "./commands/AssociateCustomDomainCommand";
10
10
  import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
11
11
  import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
@@ -54,7 +54,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
54
54
  * A function that can calculate the length of a request body.
55
55
  * @internal
56
56
  */
57
- bodyLengthChecker?: (body: any) => number | undefined;
57
+ bodyLengthChecker?: __BodyLengthCalculator;
58
58
  /**
59
59
  * A function that converts a stream into an array of bytes.
60
60
  * @internal
@@ -3,3 +3,4 @@ export * from "./AppRunnerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppRunnerServiceException } from "./models/AppRunnerServiceException";
@@ -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 AppRunner service.
4
+ */
5
+ export declare class AppRunnerServiceException 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 { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
2
3
  export interface AssociateCustomDomainRequest {
3
4
  /**
4
5
  * <p>The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.</p>
@@ -119,26 +120,38 @@ export declare namespace AssociateCustomDomainResponse {
119
120
  /**
120
121
  * <p>An unexpected service exception occurred.</p>
121
122
  */
122
- export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
123
- name: "InternalServiceErrorException";
124
- $fault: "server";
123
+ export declare class InternalServiceErrorException extends __BaseException {
124
+ readonly name: "InternalServiceErrorException";
125
+ readonly $fault: "server";
125
126
  Message?: string;
127
+ /**
128
+ * @internal
129
+ */
130
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
126
131
  }
127
132
  /**
128
133
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
129
134
  */
130
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
131
- name: "InvalidRequestException";
132
- $fault: "client";
135
+ export declare class InvalidRequestException extends __BaseException {
136
+ readonly name: "InvalidRequestException";
137
+ readonly $fault: "client";
133
138
  Message?: string;
139
+ /**
140
+ * @internal
141
+ */
142
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
134
143
  }
135
144
  /**
136
145
  * <p>You can't perform this action when the resource is in its current state.</p>
137
146
  */
138
- export interface InvalidStateException extends __SmithyException, $MetadataBearer {
139
- name: "InvalidStateException";
140
- $fault: "client";
147
+ export declare class InvalidStateException extends __BaseException {
148
+ readonly name: "InvalidStateException";
149
+ readonly $fault: "client";
141
150
  Message?: string;
151
+ /**
152
+ * @internal
153
+ */
154
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
142
155
  }
143
156
  /**
144
157
  * <p>Describes a tag that is applied to an App Runner resource. A tag is a metadata item consisting of a key-value pair.</p>
@@ -288,10 +301,14 @@ export declare namespace CreateAutoScalingConfigurationResponse {
288
301
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
289
302
  * <i>Amazon Web Services General Reference</i>.</p>
290
303
  */
291
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
292
- name: "ServiceQuotaExceededException";
293
- $fault: "client";
304
+ export declare class ServiceQuotaExceededException extends __BaseException {
305
+ readonly name: "ServiceQuotaExceededException";
306
+ readonly $fault: "client";
294
307
  Message?: string;
308
+ /**
309
+ * @internal
310
+ */
311
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
295
312
  }
296
313
  export declare enum ProviderType {
297
314
  GITHUB = "GITHUB"
@@ -526,7 +543,10 @@ export declare namespace AuthenticationConfiguration {
526
543
  const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
527
544
  }
528
545
  export declare enum Runtime {
546
+ CORRETTO_11 = "CORRETTO_11",
547
+ CORRETTO_8 = "CORRETTO_8",
529
548
  NODEJS_12 = "NODEJS_12",
549
+ NODEJS_14 = "NODEJS_14",
530
550
  PYTHON_3 = "PYTHON_3"
531
551
  }
532
552
  /**
@@ -1044,10 +1064,14 @@ export declare namespace DeleteAutoScalingConfigurationResponse {
1044
1064
  /**
1045
1065
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
1046
1066
  */
1047
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
1048
- name: "ResourceNotFoundException";
1049
- $fault: "client";
1067
+ export declare class ResourceNotFoundException extends __BaseException {
1068
+ readonly name: "ResourceNotFoundException";
1069
+ readonly $fault: "client";
1050
1070
  Message?: string;
1071
+ /**
1072
+ * @internal
1073
+ */
1074
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1051
1075
  }
1052
1076
  export interface DeleteConnectionRequest {
1053
1077
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
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: AppRunnerClientConfig) => {
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: AppRunnerClientConfig) => {
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 { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "./commands/AssociateCustomDomainCommand";
10
10
  import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
11
11
  import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
@@ -42,7 +42,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
42
42
 
43
43
  urlParser?: __UrlParser;
44
44
 
45
- bodyLengthChecker?: (body: any) => number | undefined;
45
+ bodyLengthChecker?: __BodyLengthCalculator;
46
46
 
47
47
  streamCollector?: __StreamCollector;
48
48
 
@@ -3,3 +3,4 @@ export * from "./AppRunnerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppRunnerServiceException } from "./models/AppRunnerServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AppRunnerServiceException 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 { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
2
3
  export interface AssociateCustomDomainRequest {
3
4
 
4
5
  ServiceArn: string | undefined;
@@ -68,22 +69,28 @@ export declare namespace AssociateCustomDomainResponse {
68
69
  const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
69
70
  }
70
71
 
71
- export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
72
- name: "InternalServiceErrorException";
73
- $fault: "server";
72
+ export declare class InternalServiceErrorException extends __BaseException {
73
+ readonly name: "InternalServiceErrorException";
74
+ readonly $fault: "server";
74
75
  Message?: string;
76
+
77
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
75
78
  }
76
79
 
77
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
78
- name: "InvalidRequestException";
79
- $fault: "client";
80
+ export declare class InvalidRequestException extends __BaseException {
81
+ readonly name: "InvalidRequestException";
82
+ readonly $fault: "client";
80
83
  Message?: string;
84
+
85
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
81
86
  }
82
87
 
83
- export interface InvalidStateException extends __SmithyException, $MetadataBearer {
84
- name: "InvalidStateException";
85
- $fault: "client";
88
+ export declare class InvalidStateException extends __BaseException {
89
+ readonly name: "InvalidStateException";
90
+ readonly $fault: "client";
86
91
  Message?: string;
92
+
93
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
87
94
  }
88
95
 
89
96
  export interface Tag {
@@ -152,10 +159,12 @@ export declare namespace CreateAutoScalingConfigurationResponse {
152
159
  const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
153
160
  }
154
161
 
155
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
156
- name: "ServiceQuotaExceededException";
157
- $fault: "client";
162
+ export declare class ServiceQuotaExceededException extends __BaseException {
163
+ readonly name: "ServiceQuotaExceededException";
164
+ readonly $fault: "client";
158
165
  Message?: string;
166
+
167
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
159
168
  }
160
169
  export declare enum ProviderType {
161
170
  GITHUB = "GITHUB"
@@ -284,7 +293,10 @@ export declare namespace AuthenticationConfiguration {
284
293
  const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
285
294
  }
286
295
  export declare enum Runtime {
296
+ CORRETTO_11 = "CORRETTO_11",
297
+ CORRETTO_8 = "CORRETTO_8",
287
298
  NODEJS_12 = "NODEJS_12",
299
+ NODEJS_14 = "NODEJS_14",
288
300
  PYTHON_3 = "PYTHON_3"
289
301
  }
290
302
 
@@ -549,10 +561,12 @@ export declare namespace DeleteAutoScalingConfigurationResponse {
549
561
  const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
550
562
  }
551
563
 
552
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
553
- name: "ResourceNotFoundException";
554
- $fault: "client";
564
+ export declare class ResourceNotFoundException extends __BaseException {
565
+ readonly name: "ResourceNotFoundException";
566
+ readonly $fault: "client";
555
567
  Message?: string;
568
+
569
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
556
570
  }
557
571
  export interface DeleteConnectionRequest {
558
572
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
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: AppRunnerClientConfig) => {
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: AppRunnerClientConfig) => {
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-apprunner",
3
3
  "description": "AWS SDK for JavaScript Apprunner 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"