@aws-sdk/client-imagebuilder 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.
- package/CHANGELOG.md +28 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ImagebuilderServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +244 -4
- package/dist-cjs/protocols/Aws_restJson1.js +808 -2825
- package/dist-es/index.js +1 -0
- package/dist-es/models/ImagebuilderServiceException.js +12 -0
- package/dist-es/models/models_0.js +218 -1
- package/dist-es/protocols/Aws_restJson1.js +1526 -3044
- package/dist-types/Imagebuilder.d.ts +11 -1
- package/dist-types/ImagebuilderClient.d.ts +2 -2
- package/dist-types/commands/CreateComponentCommand.d.ts +11 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +229 -80
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ImagebuilderClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ImagebuilderServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +128 -69
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
|
|
2
3
|
|
|
3
4
|
export interface SystemsManagerAgent {
|
|
4
5
|
|
|
@@ -104,10 +105,11 @@ export declare enum BuildType {
|
|
|
104
105
|
USER_INITIATED = "USER_INITIATED"
|
|
105
106
|
}
|
|
106
107
|
|
|
107
|
-
export
|
|
108
|
-
name: "CallRateLimitExceededException";
|
|
109
|
-
$fault: "client";
|
|
110
|
-
|
|
108
|
+
export declare class CallRateLimitExceededException extends __BaseException {
|
|
109
|
+
readonly name: "CallRateLimitExceededException";
|
|
110
|
+
readonly $fault: "client";
|
|
111
|
+
|
|
112
|
+
constructor(opts: __ExceptionOptionType<CallRateLimitExceededException, __BaseException>);
|
|
111
113
|
}
|
|
112
114
|
export interface CancelImageCreationRequest {
|
|
113
115
|
|
|
@@ -132,46 +134,53 @@ export declare namespace CancelImageCreationResponse {
|
|
|
132
134
|
const filterSensitiveLog: (obj: CancelImageCreationResponse) => any;
|
|
133
135
|
}
|
|
134
136
|
|
|
135
|
-
export
|
|
136
|
-
name: "ClientException";
|
|
137
|
-
$fault: "client";
|
|
138
|
-
|
|
137
|
+
export declare class ClientException extends __BaseException {
|
|
138
|
+
readonly name: "ClientException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
|
|
141
|
+
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
139
142
|
}
|
|
140
143
|
|
|
141
|
-
export
|
|
142
|
-
name: "ForbiddenException";
|
|
143
|
-
$fault: "client";
|
|
144
|
-
|
|
144
|
+
export declare class ForbiddenException extends __BaseException {
|
|
145
|
+
readonly name: "ForbiddenException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
|
|
148
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
145
149
|
}
|
|
146
150
|
|
|
147
|
-
export
|
|
148
|
-
name: "IdempotentParameterMismatchException";
|
|
149
|
-
$fault: "client";
|
|
150
|
-
|
|
151
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
152
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
|
|
155
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
151
156
|
}
|
|
152
157
|
|
|
153
|
-
export
|
|
154
|
-
name: "InvalidRequestException";
|
|
155
|
-
$fault: "client";
|
|
156
|
-
|
|
158
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
159
|
+
readonly name: "InvalidRequestException";
|
|
160
|
+
readonly $fault: "client";
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
157
163
|
}
|
|
158
164
|
|
|
159
|
-
export
|
|
160
|
-
name: "ResourceInUseException";
|
|
161
|
-
$fault: "client";
|
|
162
|
-
|
|
165
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
166
|
+
readonly name: "ResourceInUseException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
|
|
169
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
163
170
|
}
|
|
164
171
|
|
|
165
|
-
export
|
|
166
|
-
name: "ServiceException";
|
|
167
|
-
$fault: "server";
|
|
168
|
-
|
|
172
|
+
export declare class ServiceException extends __BaseException {
|
|
173
|
+
readonly name: "ServiceException";
|
|
174
|
+
readonly $fault: "server";
|
|
175
|
+
|
|
176
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
169
177
|
}
|
|
170
178
|
|
|
171
|
-
export
|
|
172
|
-
name: "ServiceUnavailableException";
|
|
173
|
-
$fault: "server";
|
|
174
|
-
|
|
179
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
180
|
+
readonly name: "ServiceUnavailableException";
|
|
181
|
+
readonly $fault: "server";
|
|
182
|
+
|
|
183
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
175
184
|
}
|
|
176
185
|
|
|
177
186
|
export interface ComponentParameterDetail {
|
|
@@ -544,22 +553,25 @@ export declare namespace CreateComponentResponse {
|
|
|
544
553
|
const filterSensitiveLog: (obj: CreateComponentResponse) => any;
|
|
545
554
|
}
|
|
546
555
|
|
|
547
|
-
export
|
|
548
|
-
name: "InvalidParameterCombinationException";
|
|
549
|
-
$fault: "client";
|
|
550
|
-
|
|
556
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
557
|
+
readonly name: "InvalidParameterCombinationException";
|
|
558
|
+
readonly $fault: "client";
|
|
559
|
+
|
|
560
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
551
561
|
}
|
|
552
562
|
|
|
553
|
-
export
|
|
554
|
-
name: "InvalidVersionNumberException";
|
|
555
|
-
$fault: "client";
|
|
556
|
-
|
|
563
|
+
export declare class InvalidVersionNumberException extends __BaseException {
|
|
564
|
+
readonly name: "InvalidVersionNumberException";
|
|
565
|
+
readonly $fault: "client";
|
|
566
|
+
|
|
567
|
+
constructor(opts: __ExceptionOptionType<InvalidVersionNumberException, __BaseException>);
|
|
557
568
|
}
|
|
558
569
|
|
|
559
|
-
export
|
|
560
|
-
name: "ServiceQuotaExceededException";
|
|
561
|
-
$fault: "client";
|
|
562
|
-
|
|
570
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
571
|
+
readonly name: "ServiceQuotaExceededException";
|
|
572
|
+
readonly $fault: "client";
|
|
573
|
+
|
|
574
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
563
575
|
}
|
|
564
576
|
export interface CreateContainerRecipeRequest {
|
|
565
577
|
|
|
@@ -614,10 +626,50 @@ export declare namespace CreateContainerRecipeResponse {
|
|
|
614
626
|
const filterSensitiveLog: (obj: CreateContainerRecipeResponse) => any;
|
|
615
627
|
}
|
|
616
628
|
|
|
617
|
-
export
|
|
618
|
-
name: "ResourceAlreadyExistsException";
|
|
619
|
-
$fault: "client";
|
|
620
|
-
|
|
629
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
630
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
631
|
+
readonly $fault: "client";
|
|
632
|
+
|
|
633
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
export interface FastLaunchLaunchTemplateSpecification {
|
|
637
|
+
|
|
638
|
+
launchTemplateId?: string;
|
|
639
|
+
|
|
640
|
+
launchTemplateName?: string;
|
|
641
|
+
|
|
642
|
+
launchTemplateVersion?: string;
|
|
643
|
+
}
|
|
644
|
+
export declare namespace FastLaunchLaunchTemplateSpecification {
|
|
645
|
+
|
|
646
|
+
const filterSensitiveLog: (obj: FastLaunchLaunchTemplateSpecification) => any;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export interface FastLaunchSnapshotConfiguration {
|
|
650
|
+
|
|
651
|
+
targetResourceCount?: number;
|
|
652
|
+
}
|
|
653
|
+
export declare namespace FastLaunchSnapshotConfiguration {
|
|
654
|
+
|
|
655
|
+
const filterSensitiveLog: (obj: FastLaunchSnapshotConfiguration) => any;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
export interface FastLaunchConfiguration {
|
|
659
|
+
|
|
660
|
+
enabled: boolean | undefined;
|
|
661
|
+
|
|
662
|
+
snapshotConfiguration?: FastLaunchSnapshotConfiguration;
|
|
663
|
+
|
|
664
|
+
maxParallelLaunches?: number;
|
|
665
|
+
|
|
666
|
+
launchTemplate?: FastLaunchLaunchTemplateSpecification;
|
|
667
|
+
|
|
668
|
+
accountId?: string;
|
|
669
|
+
}
|
|
670
|
+
export declare namespace FastLaunchConfiguration {
|
|
671
|
+
|
|
672
|
+
const filterSensitiveLog: (obj: FastLaunchConfiguration) => any;
|
|
621
673
|
}
|
|
622
674
|
|
|
623
675
|
export interface LaunchTemplateConfiguration {
|
|
@@ -666,6 +718,8 @@ export interface Distribution {
|
|
|
666
718
|
launchTemplateConfigurations?: LaunchTemplateConfiguration[];
|
|
667
719
|
|
|
668
720
|
s3ExportConfiguration?: S3ExportConfiguration;
|
|
721
|
+
|
|
722
|
+
fastLaunchConfigurations?: FastLaunchConfiguration[];
|
|
669
723
|
}
|
|
670
724
|
export declare namespace Distribution {
|
|
671
725
|
|
|
@@ -953,10 +1007,11 @@ export declare namespace DeleteComponentResponse {
|
|
|
953
1007
|
const filterSensitiveLog: (obj: DeleteComponentResponse) => any;
|
|
954
1008
|
}
|
|
955
1009
|
|
|
956
|
-
export
|
|
957
|
-
name: "ResourceDependencyException";
|
|
958
|
-
$fault: "client";
|
|
959
|
-
|
|
1010
|
+
export declare class ResourceDependencyException extends __BaseException {
|
|
1011
|
+
readonly name: "ResourceDependencyException";
|
|
1012
|
+
readonly $fault: "client";
|
|
1013
|
+
|
|
1014
|
+
constructor(opts: __ExceptionOptionType<ResourceDependencyException, __BaseException>);
|
|
960
1015
|
}
|
|
961
1016
|
export interface DeleteContainerRecipeRequest {
|
|
962
1017
|
|
|
@@ -1162,10 +1217,11 @@ export declare namespace GetComponentPolicyResponse {
|
|
|
1162
1217
|
const filterSensitiveLog: (obj: GetComponentPolicyResponse) => any;
|
|
1163
1218
|
}
|
|
1164
1219
|
|
|
1165
|
-
export
|
|
1166
|
-
name: "ResourceNotFoundException";
|
|
1167
|
-
$fault: "client";
|
|
1168
|
-
|
|
1220
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1221
|
+
readonly name: "ResourceNotFoundException";
|
|
1222
|
+
readonly $fault: "client";
|
|
1223
|
+
|
|
1224
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1169
1225
|
}
|
|
1170
1226
|
export interface GetContainerRecipeRequest {
|
|
1171
1227
|
|
|
@@ -1597,10 +1653,11 @@ export declare namespace ImportVmImageResponse {
|
|
|
1597
1653
|
const filterSensitiveLog: (obj: ImportVmImageResponse) => any;
|
|
1598
1654
|
}
|
|
1599
1655
|
|
|
1600
|
-
export
|
|
1601
|
-
name: "InvalidPaginationTokenException";
|
|
1602
|
-
$fault: "client";
|
|
1603
|
-
|
|
1656
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
1657
|
+
readonly name: "InvalidPaginationTokenException";
|
|
1658
|
+
readonly $fault: "client";
|
|
1659
|
+
|
|
1660
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
1604
1661
|
}
|
|
1605
1662
|
export interface ListComponentBuildVersionsRequest {
|
|
1606
1663
|
|
|
@@ -2011,10 +2068,11 @@ export declare namespace ListInfrastructureConfigurationsResponse {
|
|
|
2011
2068
|
const filterSensitiveLog: (obj: ListInfrastructureConfigurationsResponse) => any;
|
|
2012
2069
|
}
|
|
2013
2070
|
|
|
2014
|
-
export
|
|
2015
|
-
name: "InvalidParameterException";
|
|
2016
|
-
$fault: "client";
|
|
2017
|
-
|
|
2071
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
2072
|
+
readonly name: "InvalidParameterException";
|
|
2073
|
+
readonly $fault: "client";
|
|
2074
|
+
|
|
2075
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
2018
2076
|
}
|
|
2019
2077
|
export interface ListTagsForResourceRequest {
|
|
2020
2078
|
|
|
@@ -2035,10 +2093,11 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
2035
2093
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2036
2094
|
}
|
|
2037
2095
|
|
|
2038
|
-
export
|
|
2039
|
-
name: "InvalidParameterValueException";
|
|
2040
|
-
$fault: "client";
|
|
2041
|
-
|
|
2096
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
2097
|
+
readonly name: "InvalidParameterValueException";
|
|
2098
|
+
readonly $fault: "client";
|
|
2099
|
+
|
|
2100
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
2042
2101
|
}
|
|
2043
2102
|
export interface PutComponentPolicyRequest {
|
|
2044
2103
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
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: (
|
|
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: ImagebuilderClientConfig) => {
|
|
|
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: (
|
|
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: ImagebuilderClientConfig) => {
|
|
|
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: (
|
|
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-imagebuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
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.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
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",
|