@aws-sdk/client-lambda 3.356.0 → 3.357.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/dist-cjs/protocols/Aws_restJson1.js +16 -22
- package/dist-es/protocols/Aws_restJson1.js +1 -7
- package/dist-types/LambdaClient.d.ts +1 -1
- package/dist-types/commands/InvokeAsyncCommand.d.ts +3 -6
- package/dist-types/commands/InvokeCommand.d.ts +16 -3
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +8 -2
- package/dist-types/ts3.4/commands/InvokeCommand.d.ts +16 -2
- package/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +8 -1
- package/package.json +33 -32
|
@@ -2008,7 +2008,7 @@ const de_DeleteAliasCommand = async (output, context) => {
|
|
|
2008
2008
|
const contents = (0, smithy_client_1.map)({
|
|
2009
2009
|
$metadata: deserializeMetadata(output),
|
|
2010
2010
|
});
|
|
2011
|
-
await collectBody(output.body, context);
|
|
2011
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2012
2012
|
return contents;
|
|
2013
2013
|
};
|
|
2014
2014
|
exports.de_DeleteAliasCommand = de_DeleteAliasCommand;
|
|
@@ -2047,7 +2047,7 @@ const de_DeleteCodeSigningConfigCommand = async (output, context) => {
|
|
|
2047
2047
|
const contents = (0, smithy_client_1.map)({
|
|
2048
2048
|
$metadata: deserializeMetadata(output),
|
|
2049
2049
|
});
|
|
2050
|
-
await collectBody(output.body, context);
|
|
2050
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2051
2051
|
return contents;
|
|
2052
2052
|
};
|
|
2053
2053
|
exports.de_DeleteCodeSigningConfigCommand = de_DeleteCodeSigningConfigCommand;
|
|
@@ -2158,7 +2158,7 @@ const de_DeleteFunctionCommand = async (output, context) => {
|
|
|
2158
2158
|
const contents = (0, smithy_client_1.map)({
|
|
2159
2159
|
$metadata: deserializeMetadata(output),
|
|
2160
2160
|
});
|
|
2161
|
-
await collectBody(output.body, context);
|
|
2161
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2162
2162
|
return contents;
|
|
2163
2163
|
};
|
|
2164
2164
|
exports.de_DeleteFunctionCommand = de_DeleteFunctionCommand;
|
|
@@ -2200,7 +2200,7 @@ const de_DeleteFunctionCodeSigningConfigCommand = async (output, context) => {
|
|
|
2200
2200
|
const contents = (0, smithy_client_1.map)({
|
|
2201
2201
|
$metadata: deserializeMetadata(output),
|
|
2202
2202
|
});
|
|
2203
|
-
await collectBody(output.body, context);
|
|
2203
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2204
2204
|
return contents;
|
|
2205
2205
|
};
|
|
2206
2206
|
exports.de_DeleteFunctionCodeSigningConfigCommand = de_DeleteFunctionCodeSigningConfigCommand;
|
|
@@ -2245,7 +2245,7 @@ const de_DeleteFunctionConcurrencyCommand = async (output, context) => {
|
|
|
2245
2245
|
const contents = (0, smithy_client_1.map)({
|
|
2246
2246
|
$metadata: deserializeMetadata(output),
|
|
2247
2247
|
});
|
|
2248
|
-
await collectBody(output.body, context);
|
|
2248
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2249
2249
|
return contents;
|
|
2250
2250
|
};
|
|
2251
2251
|
exports.de_DeleteFunctionConcurrencyCommand = de_DeleteFunctionConcurrencyCommand;
|
|
@@ -2287,7 +2287,7 @@ const de_DeleteFunctionEventInvokeConfigCommand = async (output, context) => {
|
|
|
2287
2287
|
const contents = (0, smithy_client_1.map)({
|
|
2288
2288
|
$metadata: deserializeMetadata(output),
|
|
2289
2289
|
});
|
|
2290
|
-
await collectBody(output.body, context);
|
|
2290
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2291
2291
|
return contents;
|
|
2292
2292
|
};
|
|
2293
2293
|
exports.de_DeleteFunctionEventInvokeConfigCommand = de_DeleteFunctionEventInvokeConfigCommand;
|
|
@@ -2329,7 +2329,7 @@ const de_DeleteFunctionUrlConfigCommand = async (output, context) => {
|
|
|
2329
2329
|
const contents = (0, smithy_client_1.map)({
|
|
2330
2330
|
$metadata: deserializeMetadata(output),
|
|
2331
2331
|
});
|
|
2332
|
-
await collectBody(output.body, context);
|
|
2332
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2333
2333
|
return contents;
|
|
2334
2334
|
};
|
|
2335
2335
|
exports.de_DeleteFunctionUrlConfigCommand = de_DeleteFunctionUrlConfigCommand;
|
|
@@ -2368,7 +2368,7 @@ const de_DeleteLayerVersionCommand = async (output, context) => {
|
|
|
2368
2368
|
const contents = (0, smithy_client_1.map)({
|
|
2369
2369
|
$metadata: deserializeMetadata(output),
|
|
2370
2370
|
});
|
|
2371
|
-
await collectBody(output.body, context);
|
|
2371
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2372
2372
|
return contents;
|
|
2373
2373
|
};
|
|
2374
2374
|
exports.de_DeleteLayerVersionCommand = de_DeleteLayerVersionCommand;
|
|
@@ -2401,7 +2401,7 @@ const de_DeleteProvisionedConcurrencyConfigCommand = async (output, context) =>
|
|
|
2401
2401
|
const contents = (0, smithy_client_1.map)({
|
|
2402
2402
|
$metadata: deserializeMetadata(output),
|
|
2403
2403
|
});
|
|
2404
|
-
await collectBody(output.body, context);
|
|
2404
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
2405
2405
|
return contents;
|
|
2406
2406
|
};
|
|
2407
2407
|
exports.de_DeleteProvisionedConcurrencyConfigCommand = de_DeleteProvisionedConcurrencyConfigCommand;
|
|
@@ -3233,7 +3233,7 @@ const de_InvokeCommand = async (output, context) => {
|
|
|
3233
3233
|
LogResult: [, output.headers["x-amz-log-result"]],
|
|
3234
3234
|
ExecutedVersion: [, output.headers["x-amz-executed-version"]],
|
|
3235
3235
|
});
|
|
3236
|
-
const data = await collectBody(output.body, context);
|
|
3236
|
+
const data = await (0, smithy_client_1.collectBody)(output.body, context);
|
|
3237
3237
|
contents.Payload = data;
|
|
3238
3238
|
(0, smithy_client_1.map)(contents, {
|
|
3239
3239
|
StatusCode: [, output.statusCode],
|
|
@@ -3357,7 +3357,7 @@ const de_InvokeAsyncCommand = async (output, context) => {
|
|
|
3357
3357
|
(0, smithy_client_1.map)(contents, {
|
|
3358
3358
|
Status: [, output.statusCode],
|
|
3359
3359
|
});
|
|
3360
|
-
await collectBody(output.body, context);
|
|
3360
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
3361
3361
|
return contents;
|
|
3362
3362
|
};
|
|
3363
3363
|
exports.de_InvokeAsyncCommand = de_InvokeAsyncCommand;
|
|
@@ -4419,7 +4419,7 @@ const de_RemoveLayerVersionPermissionCommand = async (output, context) => {
|
|
|
4419
4419
|
const contents = (0, smithy_client_1.map)({
|
|
4420
4420
|
$metadata: deserializeMetadata(output),
|
|
4421
4421
|
});
|
|
4422
|
-
await collectBody(output.body, context);
|
|
4422
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
4423
4423
|
return contents;
|
|
4424
4424
|
};
|
|
4425
4425
|
exports.de_RemoveLayerVersionPermissionCommand = de_RemoveLayerVersionPermissionCommand;
|
|
@@ -4461,7 +4461,7 @@ const de_RemovePermissionCommand = async (output, context) => {
|
|
|
4461
4461
|
const contents = (0, smithy_client_1.map)({
|
|
4462
4462
|
$metadata: deserializeMetadata(output),
|
|
4463
4463
|
});
|
|
4464
|
-
await collectBody(output.body, context);
|
|
4464
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
4465
4465
|
return contents;
|
|
4466
4466
|
};
|
|
4467
4467
|
exports.de_RemovePermissionCommand = de_RemovePermissionCommand;
|
|
@@ -4503,7 +4503,7 @@ const de_TagResourceCommand = async (output, context) => {
|
|
|
4503
4503
|
const contents = (0, smithy_client_1.map)({
|
|
4504
4504
|
$metadata: deserializeMetadata(output),
|
|
4505
4505
|
});
|
|
4506
|
-
await collectBody(output.body, context);
|
|
4506
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
4507
4507
|
return contents;
|
|
4508
4508
|
};
|
|
4509
4509
|
exports.de_TagResourceCommand = de_TagResourceCommand;
|
|
@@ -4545,7 +4545,7 @@ const de_UntagResourceCommand = async (output, context) => {
|
|
|
4545
4545
|
const contents = (0, smithy_client_1.map)({
|
|
4546
4546
|
$metadata: deserializeMetadata(output),
|
|
4547
4547
|
});
|
|
4548
|
-
await collectBody(output.body, context);
|
|
4548
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
4549
4549
|
return contents;
|
|
4550
4550
|
};
|
|
4551
4551
|
exports.de_UntagResourceCommand = de_UntagResourceCommand;
|
|
@@ -5726,13 +5726,7 @@ const deserializeMetadata = (output) => ({
|
|
|
5726
5726
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
5727
5727
|
cfId: output.headers["x-amz-cf-id"],
|
|
5728
5728
|
});
|
|
5729
|
-
const
|
|
5730
|
-
if (streamBody instanceof Uint8Array) {
|
|
5731
|
-
return Promise.resolve(streamBody);
|
|
5732
|
-
}
|
|
5733
|
-
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
5734
|
-
};
|
|
5735
|
-
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
5729
|
+
const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
5736
5730
|
const isSerializableHeaderValue = (value) => value !== undefined &&
|
|
5737
5731
|
value !== null &&
|
|
5738
5732
|
value !== "" &&
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _json, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, serializeFloat as __serializeFloat, take, withBaseException, } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, serializeFloat as __serializeFloat, take, withBaseException, } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { LambdaServiceException as __BaseException } from "../models/LambdaServiceException";
|
|
4
4
|
import { CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/models_0";
|
|
@@ -5589,12 +5589,6 @@ const deserializeMetadata = (output) => ({
|
|
|
5589
5589
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
5590
5590
|
cfId: output.headers["x-amz-cf-id"],
|
|
5591
5591
|
});
|
|
5592
|
-
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
5593
|
-
if (streamBody instanceof Uint8Array) {
|
|
5594
|
-
return Promise.resolve(streamBody);
|
|
5595
|
-
}
|
|
5596
|
-
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
5597
|
-
};
|
|
5598
5592
|
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
5599
5593
|
const isSerializableHeaderValue = (value) => value !== undefined &&
|
|
5600
5594
|
value !== null &&
|
|
@@ -140,7 +140,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
140
140
|
*/
|
|
141
141
|
runtime?: string;
|
|
142
142
|
/**
|
|
143
|
-
* Disable
|
|
143
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
144
144
|
* trait of an operation.
|
|
145
145
|
*/
|
|
146
146
|
disableHostPrefix?: boolean;
|
|
@@ -8,11 +8,6 @@ import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0";
|
|
|
8
8
|
* @public
|
|
9
9
|
*/
|
|
10
10
|
export { __MetadataBearer, $Command };
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*
|
|
14
|
-
* The input for {@link InvokeAsyncCommand}.
|
|
15
|
-
*/
|
|
16
11
|
export type InvokeAsyncCommandInputType = Omit<InvokeAsyncRequest, "InvokeArgs"> & {
|
|
17
12
|
/**
|
|
18
13
|
* For *`InvokeAsyncRequest["InvokeArgs"]`*, see {@link InvokeAsyncRequest.InvokeArgs}.
|
|
@@ -20,7 +15,9 @@ export type InvokeAsyncCommandInputType = Omit<InvokeAsyncRequest, "InvokeArgs">
|
|
|
20
15
|
InvokeArgs: InvokeAsyncRequest["InvokeArgs"] | string | Uint8Array | Buffer;
|
|
21
16
|
};
|
|
22
17
|
/**
|
|
23
|
-
*
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The input for {@link InvokeAsyncCommand}.
|
|
24
21
|
*/
|
|
25
22
|
export interface InvokeAsyncCommandInput extends InvokeAsyncCommandInputType {
|
|
26
23
|
}
|
|
@@ -1,25 +1,38 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { BlobTypes, Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { Uint8ArrayBlobAdapter } from "@aws-sdk/util-stream";
|
|
4
5
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
6
|
import { InvocationRequest, InvocationResponse } from "../models/models_0";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
9
10
|
export { __MetadataBearer, $Command };
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type InvokeCommandInputType = Omit<InvocationRequest, "Payload"> & {
|
|
15
|
+
Payload?: BlobTypes;
|
|
16
|
+
};
|
|
10
17
|
/**
|
|
11
18
|
* @public
|
|
12
19
|
*
|
|
13
20
|
* The input for {@link InvokeCommand}.
|
|
14
21
|
*/
|
|
15
|
-
export interface InvokeCommandInput extends
|
|
22
|
+
export interface InvokeCommandInput extends InvokeCommandInputType {
|
|
16
23
|
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type InvokeCommandOutputType = Omit<InvocationResponse, "Payload"> & {
|
|
28
|
+
Payload?: Uint8ArrayBlobAdapter;
|
|
29
|
+
};
|
|
17
30
|
/**
|
|
18
31
|
* @public
|
|
19
32
|
*
|
|
20
33
|
* The output of {@link InvokeCommand}.
|
|
21
34
|
*/
|
|
22
|
-
export interface InvokeCommandOutput extends
|
|
35
|
+
export interface InvokeCommandOutput extends InvokeCommandOutputType, __MetadataBearer {
|
|
23
36
|
}
|
|
24
37
|
/**
|
|
25
38
|
* @public
|
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { BlobTypes, Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
5
5
|
import { InvokeWithResponseStreamRequest, InvokeWithResponseStreamResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type InvokeWithResponseStreamCommandInputType = Omit<InvokeWithResponseStreamRequest, "Payload"> & {
|
|
14
|
+
Payload?: BlobTypes;
|
|
15
|
+
};
|
|
10
16
|
/**
|
|
11
17
|
* @public
|
|
12
18
|
*
|
|
13
19
|
* The input for {@link InvokeWithResponseStreamCommand}.
|
|
14
20
|
*/
|
|
15
|
-
export interface InvokeWithResponseStreamCommandInput extends
|
|
21
|
+
export interface InvokeWithResponseStreamCommandInput extends InvokeWithResponseStreamCommandInputType {
|
|
16
22
|
}
|
|
17
23
|
/**
|
|
18
24
|
* @public
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import {
|
|
4
|
+
BlobTypes,
|
|
4
5
|
Handler,
|
|
5
6
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
7
|
MetadataBearer as __MetadataBearer,
|
|
7
8
|
MiddlewareStack,
|
|
8
9
|
} from "@aws-sdk/types";
|
|
10
|
+
import { Uint8ArrayBlobAdapter } from "@aws-sdk/util-stream";
|
|
9
11
|
import {
|
|
10
12
|
LambdaClientResolvedConfig,
|
|
11
13
|
ServiceInputTypes,
|
|
@@ -13,9 +15,21 @@ import {
|
|
|
13
15
|
} from "../LambdaClient";
|
|
14
16
|
import { InvocationRequest, InvocationResponse } from "../models/models_0";
|
|
15
17
|
export { __MetadataBearer, $Command };
|
|
16
|
-
export
|
|
18
|
+
export type InvokeCommandInputType = Pick<
|
|
19
|
+
InvocationRequest,
|
|
20
|
+
Exclude<keyof InvocationRequest, "Payload">
|
|
21
|
+
> & {
|
|
22
|
+
Payload?: BlobTypes;
|
|
23
|
+
};
|
|
24
|
+
export interface InvokeCommandInput extends InvokeCommandInputType {}
|
|
25
|
+
export type InvokeCommandOutputType = Pick<
|
|
26
|
+
InvocationResponse,
|
|
27
|
+
Exclude<keyof InvocationResponse, "Payload">
|
|
28
|
+
> & {
|
|
29
|
+
Payload?: Uint8ArrayBlobAdapter;
|
|
30
|
+
};
|
|
17
31
|
export interface InvokeCommandOutput
|
|
18
|
-
extends
|
|
32
|
+
extends InvokeCommandOutputType,
|
|
19
33
|
__MetadataBearer {}
|
|
20
34
|
export declare class InvokeCommand extends $Command<
|
|
21
35
|
InvokeCommandInput,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import {
|
|
4
|
+
BlobTypes,
|
|
4
5
|
Handler,
|
|
5
6
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
7
|
MetadataBearer as __MetadataBearer,
|
|
@@ -16,8 +17,14 @@ import {
|
|
|
16
17
|
InvokeWithResponseStreamResponse,
|
|
17
18
|
} from "../models/models_0";
|
|
18
19
|
export { __MetadataBearer, $Command };
|
|
20
|
+
export type InvokeWithResponseStreamCommandInputType = Pick<
|
|
21
|
+
InvokeWithResponseStreamRequest,
|
|
22
|
+
Exclude<keyof InvokeWithResponseStreamRequest, "Payload">
|
|
23
|
+
> & {
|
|
24
|
+
Payload?: BlobTypes;
|
|
25
|
+
};
|
|
19
26
|
export interface InvokeWithResponseStreamCommandInput
|
|
20
|
-
extends
|
|
27
|
+
extends InvokeWithResponseStreamCommandInputType {}
|
|
21
28
|
export interface InvokeWithResponseStreamCommandOutput
|
|
22
29
|
extends InvokeWithResponseStreamResponse,
|
|
23
30
|
__MetadataBearer {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.357.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,41 +21,42 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/eventstream-serde-browser": "3.
|
|
28
|
-
"@aws-sdk/eventstream-serde-config-resolver": "3.
|
|
29
|
-
"@aws-sdk/eventstream-serde-node": "3.
|
|
30
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
31
|
-
"@aws-sdk/hash-node": "3.
|
|
32
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
33
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
34
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
35
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
36
|
-
"@aws-sdk/middleware-logger": "3.
|
|
37
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
38
|
-
"@aws-sdk/middleware-retry": "3.
|
|
39
|
-
"@aws-sdk/middleware-serde": "3.
|
|
40
|
-
"@aws-sdk/middleware-signing": "3.
|
|
41
|
-
"@aws-sdk/middleware-stack": "3.
|
|
42
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
43
|
-
"@aws-sdk/node-config-provider": "3.
|
|
44
|
-
"@aws-sdk/node-http-handler": "3.
|
|
45
|
-
"@aws-sdk/smithy-client": "3.
|
|
46
|
-
"@aws-sdk/types": "3.
|
|
47
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.357.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.357.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.357.0",
|
|
27
|
+
"@aws-sdk/eventstream-serde-browser": "3.357.0",
|
|
28
|
+
"@aws-sdk/eventstream-serde-config-resolver": "3.357.0",
|
|
29
|
+
"@aws-sdk/eventstream-serde-node": "3.357.0",
|
|
30
|
+
"@aws-sdk/fetch-http-handler": "3.357.0",
|
|
31
|
+
"@aws-sdk/hash-node": "3.357.0",
|
|
32
|
+
"@aws-sdk/invalid-dependency": "3.357.0",
|
|
33
|
+
"@aws-sdk/middleware-content-length": "3.357.0",
|
|
34
|
+
"@aws-sdk/middleware-endpoint": "3.357.0",
|
|
35
|
+
"@aws-sdk/middleware-host-header": "3.357.0",
|
|
36
|
+
"@aws-sdk/middleware-logger": "3.357.0",
|
|
37
|
+
"@aws-sdk/middleware-recursion-detection": "3.357.0",
|
|
38
|
+
"@aws-sdk/middleware-retry": "3.357.0",
|
|
39
|
+
"@aws-sdk/middleware-serde": "3.357.0",
|
|
40
|
+
"@aws-sdk/middleware-signing": "3.357.0",
|
|
41
|
+
"@aws-sdk/middleware-stack": "3.357.0",
|
|
42
|
+
"@aws-sdk/middleware-user-agent": "3.357.0",
|
|
43
|
+
"@aws-sdk/node-config-provider": "3.357.0",
|
|
44
|
+
"@aws-sdk/node-http-handler": "3.357.0",
|
|
45
|
+
"@aws-sdk/smithy-client": "3.357.0",
|
|
46
|
+
"@aws-sdk/types": "3.357.0",
|
|
47
|
+
"@aws-sdk/url-parser": "3.357.0",
|
|
48
48
|
"@aws-sdk/util-base64": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
50
50
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
51
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
52
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
53
|
-
"@aws-sdk/util-endpoints": "3.
|
|
54
|
-
"@aws-sdk/util-retry": "3.
|
|
55
|
-
"@aws-sdk/util-
|
|
56
|
-
"@aws-sdk/util-user-agent-
|
|
51
|
+
"@aws-sdk/util-defaults-mode-browser": "3.357.0",
|
|
52
|
+
"@aws-sdk/util-defaults-mode-node": "3.357.0",
|
|
53
|
+
"@aws-sdk/util-endpoints": "3.357.0",
|
|
54
|
+
"@aws-sdk/util-retry": "3.357.0",
|
|
55
|
+
"@aws-sdk/util-stream": "3.357.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-browser": "3.357.0",
|
|
57
|
+
"@aws-sdk/util-user-agent-node": "3.357.0",
|
|
57
58
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
58
|
-
"@aws-sdk/util-waiter": "3.
|
|
59
|
+
"@aws-sdk/util-waiter": "3.357.0",
|
|
59
60
|
"@smithy/protocol-http": "^1.0.1",
|
|
60
61
|
"@smithy/types": "^1.0.0",
|
|
61
62
|
"tslib": "^2.5.0"
|