@aws-sdk/client-lambda 3.87.0 → 3.94.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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.94.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.93.0...v3.94.0) (2022-05-18)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-lambda
9
+
10
+
11
+
12
+
13
+
14
+ # [3.92.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.91.0...v3.92.0) (2022-05-16)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-lambda
17
+
18
+
19
+
20
+
21
+
22
+ # [3.90.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.89.0...v3.90.0) (2022-05-12)
23
+
24
+
25
+ ### Features
26
+
27
+ * **client-lambda:** Lambda releases NodeJs 16 managed runtime to be available in all commercial regions. ([22a47c1](https://github.com/aws/aws-sdk-js-v3/commit/22a47c18cda82d7703f0c1fb473214dc4de83322))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-lambda
@@ -396,6 +396,7 @@ var Runtime;
396
396
  Runtime["nodejs10x"] = "nodejs10.x";
397
397
  Runtime["nodejs12x"] = "nodejs12.x";
398
398
  Runtime["nodejs14x"] = "nodejs14.x";
399
+ Runtime["nodejs16x"] = "nodejs16.x";
399
400
  Runtime["nodejs43"] = "nodejs4.3";
400
401
  Runtime["nodejs43edge"] = "nodejs4.3-edge";
401
402
  Runtime["nodejs610"] = "nodejs6.10";
@@ -321,6 +321,7 @@ export var Runtime;
321
321
  Runtime["nodejs10x"] = "nodejs10.x";
322
322
  Runtime["nodejs12x"] = "nodejs12.x";
323
323
  Runtime["nodejs14x"] = "nodejs14.x";
324
+ Runtime["nodejs16x"] = "nodejs16.x";
324
325
  Runtime["nodejs43"] = "nodejs4.3";
325
326
  Runtime["nodejs43edge"] = "nodejs4.3-edge";
326
327
  Runtime["nodejs610"] = "nodejs6.10";
@@ -783,7 +783,7 @@ export interface CreateEventSourceMappingRequest {
783
783
  * </li>
784
784
  * <li>
785
785
  * <p>
786
- * <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p>
786
+ * <b>Amazon DynamoDB Streams</b> - Default 100. Max 10,000.</p>
787
787
  * </li>
788
788
  * <li>
789
789
  * <p>
@@ -980,7 +980,7 @@ export interface EventSourceMappingConfiguration {
980
980
  */
981
981
  TumblingWindowInSeconds?: number;
982
982
  /**
983
- * <p>(Streams only) A list of current response type enums applied to the event source mapping.</p>
983
+ * <p>(Streams and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
984
984
  */
985
985
  FunctionResponseTypes?: (FunctionResponseType | string)[];
986
986
  }
@@ -1180,6 +1180,7 @@ export declare enum Runtime {
1180
1180
  nodejs10x = "nodejs10.x",
1181
1181
  nodejs12x = "nodejs12.x",
1182
1182
  nodejs14x = "nodejs14.x",
1183
+ nodejs16x = "nodejs16.x",
1183
1184
  nodejs43 = "nodejs4.3",
1184
1185
  nodejs43edge = "nodejs4.3-edge",
1185
1186
  nodejs610 = "nodejs6.10",
@@ -4737,7 +4738,7 @@ export interface UpdateEventSourceMappingRequest {
4737
4738
  * </li>
4738
4739
  * <li>
4739
4740
  * <p>
4740
- * <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p>
4741
+ * <b>Amazon DynamoDB Streams</b> - Default 100. Max 10,000.</p>
4741
4742
  * </li>
4742
4743
  * <li>
4743
4744
  * <p>
@@ -584,6 +584,7 @@ export declare enum Runtime {
584
584
  nodejs10x = "nodejs10.x",
585
585
  nodejs12x = "nodejs12.x",
586
586
  nodejs14x = "nodejs14.x",
587
+ nodejs16x = "nodejs16.x",
587
588
  nodejs43 = "nodejs4.3",
588
589
  nodejs43edge = "nodejs4.3-edge",
589
590
  nodejs610 = "nodejs6.10",
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.87.0",
4
+ "version": "3.94.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",
@@ -18,9 +18,9 @@
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.87.0",
21
+ "@aws-sdk/client-sts": "3.94.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.87.0",
23
+ "@aws-sdk/credential-provider-node": "3.94.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
@@ -33,7 +33,7 @@
33
33
  "@aws-sdk/middleware-stack": "3.78.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.78.0",
35
35
  "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.82.0",
36
+ "@aws-sdk/node-http-handler": "3.94.0",
37
37
  "@aws-sdk/protocol-http": "3.78.0",
38
38
  "@aws-sdk/smithy-client": "3.85.0",
39
39
  "@aws-sdk/types": "3.78.0",