@aws-sdk/client-sagemaker-runtime 3.398.0 → 3.405.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.
- package/README.md +8 -0
- package/dist-cjs/SageMakerRuntime.js +2 -0
- package/dist-cjs/SageMakerRuntimeClient.js +5 -3
- package/dist-cjs/commands/InvokeEndpointWithResponseStreamCommand.js +47 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +70 -1
- package/dist-cjs/protocols/Aws_restJson1.js +144 -1
- package/dist-cjs/runtimeConfig.browser.js +2 -0
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/SageMakerRuntime.js +2 -0
- package/dist-es/SageMakerRuntimeClient.js +5 -3
- package/dist-es/commands/InvokeEndpointWithResponseStreamCommand.js +43 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +63 -0
- package/dist-es/protocols/Aws_restJson1.js +142 -1
- package/dist-es/runtimeConfig.browser.js +2 -0
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/SageMakerRuntime.d.ts +7 -0
- package/dist-types/SageMakerRuntimeClient.d.ts +11 -5
- package/dist-types/commands/InvokeEndpointAsyncCommand.d.ts +8 -8
- package/dist-types/commands/InvokeEndpointCommand.d.ts +7 -8
- package/dist-types/commands/InvokeEndpointWithResponseStreamCommand.d.ts +151 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +326 -61
- package/dist-types/protocols/Aws_restJson1.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SageMakerRuntime.d.ts +17 -0
- package/dist-types/ts3.4/SageMakerRuntimeClient.d.ts +16 -2
- package/dist-types/ts3.4/commands/InvokeEndpointWithResponseStreamCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +82 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +16 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +10 -7
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
RegionInputConfig,
|
|
16
16
|
RegionResolvedConfig,
|
|
17
17
|
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EventStreamSerdeInputConfig,
|
|
20
|
+
EventStreamSerdeResolvedConfig,
|
|
21
|
+
} from "@smithy/eventstream-serde-config-resolver";
|
|
18
22
|
import {
|
|
19
23
|
EndpointInputConfig,
|
|
20
24
|
EndpointResolvedConfig,
|
|
@@ -36,6 +40,7 @@ import {
|
|
|
36
40
|
ChecksumConstructor as __ChecksumConstructor,
|
|
37
41
|
Decoder as __Decoder,
|
|
38
42
|
Encoder as __Encoder,
|
|
43
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
39
44
|
HashConstructor as __HashConstructor,
|
|
40
45
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
46
|
Logger as __Logger,
|
|
@@ -53,6 +58,10 @@ import {
|
|
|
53
58
|
InvokeEndpointCommandInput,
|
|
54
59
|
InvokeEndpointCommandOutput,
|
|
55
60
|
} from "./commands/InvokeEndpointCommand";
|
|
61
|
+
import {
|
|
62
|
+
InvokeEndpointWithResponseStreamCommandInput,
|
|
63
|
+
InvokeEndpointWithResponseStreamCommandOutput,
|
|
64
|
+
} from "./commands/InvokeEndpointWithResponseStreamCommand";
|
|
56
65
|
import {
|
|
57
66
|
ClientInputEndpointParameters,
|
|
58
67
|
ClientResolvedEndpointParameters,
|
|
@@ -62,10 +71,12 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
62
71
|
export { __Client };
|
|
63
72
|
export type ServiceInputTypes =
|
|
64
73
|
| InvokeEndpointAsyncCommandInput
|
|
65
|
-
| InvokeEndpointCommandInput
|
|
74
|
+
| InvokeEndpointCommandInput
|
|
75
|
+
| InvokeEndpointWithResponseStreamCommandInput;
|
|
66
76
|
export type ServiceOutputTypes =
|
|
67
77
|
| InvokeEndpointAsyncCommandOutput
|
|
68
|
-
| InvokeEndpointCommandOutput
|
|
78
|
+
| InvokeEndpointCommandOutput
|
|
79
|
+
| InvokeEndpointWithResponseStreamCommandOutput;
|
|
69
80
|
export interface ClientDefaults
|
|
70
81
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
71
82
|
requestHandler?: __HttpHandler;
|
|
@@ -89,6 +100,7 @@ export interface ClientDefaults
|
|
|
89
100
|
retryMode?: string | __Provider<string>;
|
|
90
101
|
logger?: __Logger;
|
|
91
102
|
extensions?: RuntimeExtension[];
|
|
103
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
92
104
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
93
105
|
}
|
|
94
106
|
export type SageMakerRuntimeClientConfigType = Partial<
|
|
@@ -101,6 +113,7 @@ export type SageMakerRuntimeClientConfigType = Partial<
|
|
|
101
113
|
HostHeaderInputConfig &
|
|
102
114
|
AwsAuthInputConfig &
|
|
103
115
|
UserAgentInputConfig &
|
|
116
|
+
EventStreamSerdeInputConfig &
|
|
104
117
|
ClientInputEndpointParameters;
|
|
105
118
|
export interface SageMakerRuntimeClientConfig
|
|
106
119
|
extends SageMakerRuntimeClientConfigType {}
|
|
@@ -114,6 +127,7 @@ export type SageMakerRuntimeClientResolvedConfigType =
|
|
|
114
127
|
HostHeaderResolvedConfig &
|
|
115
128
|
AwsAuthResolvedConfig &
|
|
116
129
|
UserAgentResolvedConfig &
|
|
130
|
+
EventStreamSerdeResolvedConfig &
|
|
117
131
|
ClientResolvedEndpointParameters;
|
|
118
132
|
export interface SageMakerRuntimeClientResolvedConfig
|
|
119
133
|
extends SageMakerRuntimeClientResolvedConfigType {}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
BlobPayloadInputTypes,
|
|
5
|
+
Handler,
|
|
6
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
7
|
+
MetadataBearer as __MetadataBearer,
|
|
8
|
+
MiddlewareStack,
|
|
9
|
+
} from "@smithy/types";
|
|
10
|
+
import {
|
|
11
|
+
InvokeEndpointWithResponseStreamInput,
|
|
12
|
+
InvokeEndpointWithResponseStreamOutput,
|
|
13
|
+
} from "../models/models_0";
|
|
14
|
+
import {
|
|
15
|
+
SageMakerRuntimeClientResolvedConfig,
|
|
16
|
+
ServiceInputTypes,
|
|
17
|
+
ServiceOutputTypes,
|
|
18
|
+
} from "../SageMakerRuntimeClient";
|
|
19
|
+
export { __MetadataBearer, $Command };
|
|
20
|
+
export type InvokeEndpointWithResponseStreamCommandInputType = Pick<
|
|
21
|
+
InvokeEndpointWithResponseStreamInput,
|
|
22
|
+
Exclude<keyof InvokeEndpointWithResponseStreamInput, "Body">
|
|
23
|
+
> & {
|
|
24
|
+
Body: BlobPayloadInputTypes;
|
|
25
|
+
};
|
|
26
|
+
export interface InvokeEndpointWithResponseStreamCommandInput
|
|
27
|
+
extends InvokeEndpointWithResponseStreamCommandInputType {}
|
|
28
|
+
export interface InvokeEndpointWithResponseStreamCommandOutput
|
|
29
|
+
extends InvokeEndpointWithResponseStreamOutput,
|
|
30
|
+
__MetadataBearer {}
|
|
31
|
+
export declare class InvokeEndpointWithResponseStreamCommand extends $Command<
|
|
32
|
+
InvokeEndpointWithResponseStreamCommandInput,
|
|
33
|
+
InvokeEndpointWithResponseStreamCommandOutput,
|
|
34
|
+
SageMakerRuntimeClientResolvedConfig
|
|
35
|
+
> {
|
|
36
|
+
readonly input: InvokeEndpointWithResponseStreamCommandInput;
|
|
37
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
38
|
+
constructor(input: InvokeEndpointWithResponseStreamCommandInput);
|
|
39
|
+
resolveMiddleware(
|
|
40
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
41
|
+
configuration: SageMakerRuntimeClientResolvedConfig,
|
|
42
|
+
options?: __HttpHandlerOptions
|
|
43
|
+
): Handler<
|
|
44
|
+
InvokeEndpointWithResponseStreamCommandInput,
|
|
45
|
+
InvokeEndpointWithResponseStreamCommandOutput
|
|
46
|
+
>;
|
|
47
|
+
private serialize;
|
|
48
|
+
private deserialize;
|
|
49
|
+
}
|
|
@@ -76,6 +76,78 @@ export interface InvokeEndpointAsyncOutput {
|
|
|
76
76
|
OutputLocation?: string;
|
|
77
77
|
FailureLocation?: string;
|
|
78
78
|
}
|
|
79
|
+
export declare class InternalStreamFailure extends __BaseException {
|
|
80
|
+
readonly name: "InternalStreamFailure";
|
|
81
|
+
readonly $fault: "server";
|
|
82
|
+
Message?: string;
|
|
83
|
+
constructor(
|
|
84
|
+
opts: __ExceptionOptionType<InternalStreamFailure, __BaseException>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
export interface InvokeEndpointWithResponseStreamInput {
|
|
88
|
+
EndpointName: string | undefined;
|
|
89
|
+
Body: Uint8Array | undefined;
|
|
90
|
+
ContentType?: string;
|
|
91
|
+
Accept?: string;
|
|
92
|
+
CustomAttributes?: string;
|
|
93
|
+
TargetVariant?: string;
|
|
94
|
+
TargetContainerHostname?: string;
|
|
95
|
+
InferenceId?: string;
|
|
96
|
+
}
|
|
97
|
+
export declare class ModelStreamError extends __BaseException {
|
|
98
|
+
readonly name: "ModelStreamError";
|
|
99
|
+
readonly $fault: "client";
|
|
100
|
+
Message?: string;
|
|
101
|
+
ErrorCode?: string;
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ModelStreamError, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
export interface PayloadPart {
|
|
105
|
+
Bytes?: Uint8Array;
|
|
106
|
+
}
|
|
107
|
+
export type ResponseStream =
|
|
108
|
+
| ResponseStream.InternalStreamFailureMember
|
|
109
|
+
| ResponseStream.ModelStreamErrorMember
|
|
110
|
+
| ResponseStream.PayloadPartMember
|
|
111
|
+
| ResponseStream.$UnknownMember;
|
|
112
|
+
export declare namespace ResponseStream {
|
|
113
|
+
interface PayloadPartMember {
|
|
114
|
+
PayloadPart: PayloadPart;
|
|
115
|
+
ModelStreamError?: never;
|
|
116
|
+
InternalStreamFailure?: never;
|
|
117
|
+
$unknown?: never;
|
|
118
|
+
}
|
|
119
|
+
interface ModelStreamErrorMember {
|
|
120
|
+
PayloadPart?: never;
|
|
121
|
+
ModelStreamError: ModelStreamError;
|
|
122
|
+
InternalStreamFailure?: never;
|
|
123
|
+
$unknown?: never;
|
|
124
|
+
}
|
|
125
|
+
interface InternalStreamFailureMember {
|
|
126
|
+
PayloadPart?: never;
|
|
127
|
+
ModelStreamError?: never;
|
|
128
|
+
InternalStreamFailure: InternalStreamFailure;
|
|
129
|
+
$unknown?: never;
|
|
130
|
+
}
|
|
131
|
+
interface $UnknownMember {
|
|
132
|
+
PayloadPart?: never;
|
|
133
|
+
ModelStreamError?: never;
|
|
134
|
+
InternalStreamFailure?: never;
|
|
135
|
+
$unknown: [string, any];
|
|
136
|
+
}
|
|
137
|
+
interface Visitor<T> {
|
|
138
|
+
PayloadPart: (value: PayloadPart) => T;
|
|
139
|
+
ModelStreamError: (value: ModelStreamError) => T;
|
|
140
|
+
InternalStreamFailure: (value: InternalStreamFailure) => T;
|
|
141
|
+
_: (name: string, value: any) => T;
|
|
142
|
+
}
|
|
143
|
+
const visit: <T>(value: ResponseStream, visitor: Visitor<T>) => T;
|
|
144
|
+
}
|
|
145
|
+
export interface InvokeEndpointWithResponseStreamOutput {
|
|
146
|
+
Body: AsyncIterable<ResponseStream> | undefined;
|
|
147
|
+
ContentType?: string;
|
|
148
|
+
InvokedProductionVariant?: string;
|
|
149
|
+
CustomAttributes?: string;
|
|
150
|
+
}
|
|
79
151
|
export declare const InvokeEndpointInputFilterSensitiveLog: (
|
|
80
152
|
obj: InvokeEndpointInput
|
|
81
153
|
) => any;
|
|
@@ -85,3 +157,13 @@ export declare const InvokeEndpointOutputFilterSensitiveLog: (
|
|
|
85
157
|
export declare const InvokeEndpointAsyncInputFilterSensitiveLog: (
|
|
86
158
|
obj: InvokeEndpointAsyncInput
|
|
87
159
|
) => any;
|
|
160
|
+
export declare const InvokeEndpointWithResponseStreamInputFilterSensitiveLog: (
|
|
161
|
+
obj: InvokeEndpointWithResponseStreamInput
|
|
162
|
+
) => any;
|
|
163
|
+
export declare const PayloadPartFilterSensitiveLog: (obj: PayloadPart) => any;
|
|
164
|
+
export declare const ResponseStreamFilterSensitiveLog: (
|
|
165
|
+
obj: ResponseStream
|
|
166
|
+
) => any;
|
|
167
|
+
export declare const InvokeEndpointWithResponseStreamOutputFilterSensitiveLog: (
|
|
168
|
+
obj: InvokeEndpointWithResponseStreamOutput
|
|
169
|
+
) => any;
|
|
@@ -2,7 +2,10 @@ import {
|
|
|
2
2
|
HttpRequest as __HttpRequest,
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
EventStreamSerdeContext as __EventStreamSerdeContext,
|
|
7
|
+
SerdeContext as __SerdeContext,
|
|
8
|
+
} from "@smithy/types";
|
|
6
9
|
import {
|
|
7
10
|
InvokeEndpointAsyncCommandInput,
|
|
8
11
|
InvokeEndpointAsyncCommandOutput,
|
|
@@ -11,6 +14,10 @@ import {
|
|
|
11
14
|
InvokeEndpointCommandInput,
|
|
12
15
|
InvokeEndpointCommandOutput,
|
|
13
16
|
} from "../commands/InvokeEndpointCommand";
|
|
17
|
+
import {
|
|
18
|
+
InvokeEndpointWithResponseStreamCommandInput,
|
|
19
|
+
InvokeEndpointWithResponseStreamCommandOutput,
|
|
20
|
+
} from "../commands/InvokeEndpointWithResponseStreamCommand";
|
|
14
21
|
export declare const se_InvokeEndpointCommand: (
|
|
15
22
|
input: InvokeEndpointCommandInput,
|
|
16
23
|
context: __SerdeContext
|
|
@@ -19,6 +26,10 @@ export declare const se_InvokeEndpointAsyncCommand: (
|
|
|
19
26
|
input: InvokeEndpointAsyncCommandInput,
|
|
20
27
|
context: __SerdeContext
|
|
21
28
|
) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const se_InvokeEndpointWithResponseStreamCommand: (
|
|
30
|
+
input: InvokeEndpointWithResponseStreamCommandInput,
|
|
31
|
+
context: __SerdeContext
|
|
32
|
+
) => Promise<__HttpRequest>;
|
|
22
33
|
export declare const de_InvokeEndpointCommand: (
|
|
23
34
|
output: __HttpResponse,
|
|
24
35
|
context: __SerdeContext
|
|
@@ -27,3 +38,7 @@ export declare const de_InvokeEndpointAsyncCommand: (
|
|
|
27
38
|
output: __HttpResponse,
|
|
28
39
|
context: __SerdeContext
|
|
29
40
|
) => Promise<InvokeEndpointAsyncCommandOutput>;
|
|
41
|
+
export declare const de_InvokeEndpointWithResponseStreamCommand: (
|
|
42
|
+
output: __HttpResponse,
|
|
43
|
+
context: __SerdeContext & __EventStreamSerdeContext
|
|
44
|
+
) => Promise<InvokeEndpointWithResponseStreamCommandOutput>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (
|
|
|
14
14
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
15
|
import("@smithy/types").UserAgent
|
|
16
16
|
>;
|
|
17
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
17
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
19
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
20
|
requestHandler:
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (
|
|
|
14
14
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
15
|
import("@smithy/types").UserAgent
|
|
16
16
|
>;
|
|
17
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
17
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
19
20
|
requestHandler:
|
|
@@ -35,6 +35,7 @@ export declare const getRuntimeConfig: (
|
|
|
35
35
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
36
|
logger: import("@smithy/types").Logger;
|
|
37
37
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
38
39
|
defaultsMode:
|
|
39
40
|
| import("@smithy/smithy-client").DefaultsMode
|
|
40
41
|
| import("@smithy/types").Provider<
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.405.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",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.405.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.405.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.398.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.398.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.398.0",
|
|
@@ -31,8 +31,11 @@
|
|
|
31
31
|
"@aws-sdk/types": "3.398.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.398.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.398.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.405.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.5",
|
|
36
|
+
"@smithy/eventstream-serde-browser": "^2.0.5",
|
|
37
|
+
"@smithy/eventstream-serde-config-resolver": "^2.0.5",
|
|
38
|
+
"@smithy/eventstream-serde-node": "^2.0.5",
|
|
36
39
|
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
40
|
"@smithy/hash-node": "^2.0.5",
|
|
38
41
|
"@smithy/invalid-dependency": "^2.0.5",
|
|
@@ -41,7 +44,7 @@
|
|
|
41
44
|
"@smithy/middleware-retry": "^2.0.5",
|
|
42
45
|
"@smithy/middleware-serde": "^2.0.5",
|
|
43
46
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
47
|
+
"@smithy/node-config-provider": "^2.0.6",
|
|
45
48
|
"@smithy/node-http-handler": "^2.0.5",
|
|
46
49
|
"@smithy/protocol-http": "^2.0.5",
|
|
47
50
|
"@smithy/smithy-client": "^2.0.5",
|
|
@@ -50,8 +53,8 @@
|
|
|
50
53
|
"@smithy/util-base64": "^2.0.0",
|
|
51
54
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
55
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^2.0.6",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^2.0.6",
|
|
55
58
|
"@smithy/util-retry": "^2.0.0",
|
|
56
59
|
"@smithy/util-stream": "^2.0.5",
|
|
57
60
|
"@smithy/util-utf8": "^2.0.0",
|