aws-sdk-lambda 1.86.0 → 1.87.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0cc23296256f1ddfbad01aa07762d0a333dcf8a639c9d3c1aadbb0d6bd699ea3
4
- data.tar.gz: 542626e26266910a1bed5716e50b7f55c91cf76a00b1e6cc33fe993568a272a7
3
+ metadata.gz: 536e3bd5acda02ec912da9b7fd34173ef240c132d2515458a7168ac17e518c41
4
+ data.tar.gz: b5c5739402e72ad77bca68094ce8d5eaf5dfb1d2a1d487f6f5df6b22410c7cd6
5
5
  SHA512:
6
- metadata.gz: 4b787be60d6488b54976c4f3370497fb5896a78c6dcd8e2a9761d0c2bc7ef3f6bccc436492782097251286e49942b020919c36710c79522274d9b0368f4af7ff
7
- data.tar.gz: fd81f40f0dcb4f5f513b1682796fb296fc2e6b606185be89faf0a84a12001f45c9258a6eb126524103665945833a38cb6c41c110b636b8aadbb7bbc9909e5599
6
+ metadata.gz: bb2b0dabc094fc1719fffabe91b5f2c666ba6d0e0845b8b7d79af6a2429d7d0dce0f3facd64c72280be3f30dd17177737457ee21eac27f5e2b933d0cfab46789
7
+ data.tar.gz: 81fc23f0a477284b090c31a02d1ee97079a112c1ae4aafd73dc1b685a7a18ce49328d0d0bda3077a7cc1d00b1ef8471f5ae3fc6b71a9a1d9410913089f6316d8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - Add Node 18 (nodejs18.x) support to AWS Lambda.
8
+
4
9
  1.86.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.87.0
@@ -665,7 +665,7 @@ module Aws::Lambda
665
665
  #
666
666
  #
667
667
  #
668
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html
668
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html
669
669
  #
670
670
  # @option params [String] :description
671
671
  # Descriptive name for this code signing configuration.
@@ -847,14 +847,22 @@ module Aws::Lambda
847
847
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
848
848
  #
849
849
  # @option params [Integer] :maximum_batching_window_in_seconds
850
- # (Streams and Amazon SQS standard queues) The maximum amount of time,
851
- # in seconds, that Lambda spends gathering records before invoking the
852
- # function.
853
- #
854
- # Default: 0
855
- #
856
- # Related setting: When you set `BatchSize` to a value greater than 10,
857
- # you must set `MaximumBatchingWindowInSeconds` to at least 1.
850
+ # The maximum amount of time, in seconds, that Lambda spends gathering
851
+ # records before invoking the function. You can configure
852
+ # `MaximumBatchingWindowInSeconds` to any value from 0 seconds to 300
853
+ # seconds in increments of seconds.
854
+ #
855
+ # For streams and Amazon SQS event sources, the default batching window
856
+ # is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, and Amazon MQ
857
+ # event sources, the default batching window is 500 ms. Note that
858
+ # because you can only change `MaximumBatchingWindowInSeconds` in
859
+ # increments of seconds, you cannot revert back to the 500 ms default
860
+ # batching window after you have changed it. To restore the default
861
+ # batching window, you must create a new event source mapping.
862
+ #
863
+ # Related setting: For streams and Amazon SQS event sources, when you
864
+ # set `BatchSize` to a value greater than 10, you must set
865
+ # `MaximumBatchingWindowInSeconds` to at least 1.
858
866
  #
859
867
  # @option params [Integer] :parallelization_factor
860
868
  # (Streams only) The number of batches to process from each shard
@@ -1300,7 +1308,7 @@ module Aws::Lambda
1300
1308
  #
1301
1309
  # resp = client.create_function({
1302
1310
  # function_name: "FunctionName", # required
1303
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
1311
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
1304
1312
  # role: "RoleArn", # required
1305
1313
  # handler: "Handler",
1306
1314
  # code: { # required
@@ -1357,7 +1365,7 @@ module Aws::Lambda
1357
1365
  #
1358
1366
  # resp.function_name #=> String
1359
1367
  # resp.function_arn #=> String
1360
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
1368
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
1361
1369
  # resp.role #=> String
1362
1370
  # resp.handler #=> String
1363
1371
  # resp.code_size #=> Integer
@@ -2191,7 +2199,7 @@ module Aws::Lambda
2191
2199
  #
2192
2200
  # resp.configuration.function_name #=> String
2193
2201
  # resp.configuration.function_arn #=> String
2194
- # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
2202
+ # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
2195
2203
  # resp.configuration.role #=> String
2196
2204
  # resp.configuration.handler #=> String
2197
2205
  # resp.configuration.code_size #=> Integer
@@ -2425,7 +2433,7 @@ module Aws::Lambda
2425
2433
  #
2426
2434
  # resp.function_name #=> String
2427
2435
  # resp.function_arn #=> String
2428
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
2436
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
2429
2437
  # resp.role #=> String
2430
2438
  # resp.handler #=> String
2431
2439
  # resp.code_size #=> Integer
@@ -2659,7 +2667,7 @@ module Aws::Lambda
2659
2667
  # resp.created_date #=> Time
2660
2668
  # resp.version #=> Integer
2661
2669
  # resp.compatible_runtimes #=> Array
2662
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
2670
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
2663
2671
  # resp.license_info #=> String
2664
2672
  # resp.compatible_architectures #=> Array
2665
2673
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -2714,7 +2722,7 @@ module Aws::Lambda
2714
2722
  # resp.created_date #=> Time
2715
2723
  # resp.version #=> Integer
2716
2724
  # resp.compatible_runtimes #=> Array
2717
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
2725
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
2718
2726
  # resp.license_info #=> String
2719
2727
  # resp.compatible_architectures #=> Array
2720
2728
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3474,7 +3482,7 @@ module Aws::Lambda
3474
3482
  # resp.functions #=> Array
3475
3483
  # resp.functions[0].function_name #=> String
3476
3484
  # resp.functions[0].function_arn #=> String
3477
- # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
3485
+ # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
3478
3486
  # resp.functions[0].role #=> String
3479
3487
  # resp.functions[0].handler #=> String
3480
3488
  # resp.functions[0].code_size #=> Integer
@@ -3619,7 +3627,7 @@ module Aws::Lambda
3619
3627
  # @example Request syntax with placeholder values
3620
3628
  #
3621
3629
  # resp = client.list_layer_versions({
3622
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
3630
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
3623
3631
  # layer_name: "LayerName", # required
3624
3632
  # marker: "String",
3625
3633
  # max_items: 1,
@@ -3635,7 +3643,7 @@ module Aws::Lambda
3635
3643
  # resp.layer_versions[0].description #=> String
3636
3644
  # resp.layer_versions[0].created_date #=> Time
3637
3645
  # resp.layer_versions[0].compatible_runtimes #=> Array
3638
- # resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
3646
+ # resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
3639
3647
  # resp.layer_versions[0].license_info #=> String
3640
3648
  # resp.layer_versions[0].compatible_architectures #=> Array
3641
3649
  # resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3687,7 +3695,7 @@ module Aws::Lambda
3687
3695
  # @example Request syntax with placeholder values
3688
3696
  #
3689
3697
  # resp = client.list_layers({
3690
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
3698
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
3691
3699
  # marker: "String",
3692
3700
  # max_items: 1,
3693
3701
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -3704,7 +3712,7 @@ module Aws::Lambda
3704
3712
  # resp.layers[0].latest_matching_version.description #=> String
3705
3713
  # resp.layers[0].latest_matching_version.created_date #=> Time
3706
3714
  # resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
3707
- # resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
3715
+ # resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
3708
3716
  # resp.layers[0].latest_matching_version.license_info #=> String
3709
3717
  # resp.layers[0].latest_matching_version.compatible_architectures #=> Array
3710
3718
  # resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3866,7 +3874,7 @@ module Aws::Lambda
3866
3874
  # resp.versions #=> Array
3867
3875
  # resp.versions[0].function_name #=> String
3868
3876
  # resp.versions[0].function_arn #=> String
3869
- # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
3877
+ # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
3870
3878
  # resp.versions[0].role #=> String
3871
3879
  # resp.versions[0].handler #=> String
3872
3880
  # resp.versions[0].code_size #=> Integer
@@ -3999,7 +4007,7 @@ module Aws::Lambda
3999
4007
  # s3_object_version: "S3ObjectVersion",
4000
4008
  # zip_file: "data",
4001
4009
  # },
4002
- # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
4010
+ # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
4003
4011
  # license_info: "LicenseInfo",
4004
4012
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
4005
4013
  # })
@@ -4017,7 +4025,7 @@ module Aws::Lambda
4017
4025
  # resp.created_date #=> Time
4018
4026
  # resp.version #=> Integer
4019
4027
  # resp.compatible_runtimes #=> Array
4020
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
4028
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
4021
4029
  # resp.license_info #=> String
4022
4030
  # resp.compatible_architectures #=> Array
4023
4031
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4127,7 +4135,7 @@ module Aws::Lambda
4127
4135
  #
4128
4136
  # resp.function_name #=> String
4129
4137
  # resp.function_arn #=> String
4130
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
4138
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
4131
4139
  # resp.role #=> String
4132
4140
  # resp.handler #=> String
4133
4141
  # resp.code_size #=> Integer
@@ -4887,14 +4895,22 @@ module Aws::Lambda
4887
4895
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
4888
4896
  #
4889
4897
  # @option params [Integer] :maximum_batching_window_in_seconds
4890
- # (Streams and Amazon SQS standard queues) The maximum amount of time,
4891
- # in seconds, that Lambda spends gathering records before invoking the
4892
- # function.
4893
- #
4894
- # Default: 0
4895
- #
4896
- # Related setting: When you set `BatchSize` to a value greater than 10,
4897
- # you must set `MaximumBatchingWindowInSeconds` to at least 1.
4898
+ # The maximum amount of time, in seconds, that Lambda spends gathering
4899
+ # records before invoking the function. You can configure
4900
+ # `MaximumBatchingWindowInSeconds` to any value from 0 seconds to 300
4901
+ # seconds in increments of seconds.
4902
+ #
4903
+ # For streams and Amazon SQS event sources, the default batching window
4904
+ # is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, and Amazon MQ
4905
+ # event sources, the default batching window is 500 ms. Note that
4906
+ # because you can only change `MaximumBatchingWindowInSeconds` in
4907
+ # increments of seconds, you cannot revert back to the 500 ms default
4908
+ # batching window after you have changed it. To restore the default
4909
+ # batching window, you must create a new event source mapping.
4910
+ #
4911
+ # Related setting: For streams and Amazon SQS event sources, when you
4912
+ # set `BatchSize` to a value greater than 10, you must set
4913
+ # `MaximumBatchingWindowInSeconds` to at least 1.
4898
4914
  #
4899
4915
  # @option params [Types::DestinationConfig] :destination_config
4900
4916
  # (Streams only) An Amazon SQS queue or Amazon SNS topic destination for
@@ -5184,7 +5200,7 @@ module Aws::Lambda
5184
5200
  #
5185
5201
  # resp.function_name #=> String
5186
5202
  # resp.function_arn #=> String
5187
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
5203
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
5188
5204
  # resp.role #=> String
5189
5205
  # resp.handler #=> String
5190
5206
  # resp.code_size #=> Integer
@@ -5447,7 +5463,7 @@ module Aws::Lambda
5447
5463
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
5448
5464
  # },
5449
5465
  # },
5450
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
5466
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
5451
5467
  # dead_letter_config: {
5452
5468
  # target_arn: "ResourceArn",
5453
5469
  # },
@@ -5477,7 +5493,7 @@ module Aws::Lambda
5477
5493
  #
5478
5494
  # resp.function_name #=> String
5479
5495
  # resp.function_arn #=> String
5480
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"
5496
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x"
5481
5497
  # resp.role #=> String
5482
5498
  # resp.handler #=> String
5483
5499
  # resp.code_size #=> Integer
@@ -5733,7 +5749,7 @@ module Aws::Lambda
5733
5749
  params: params,
5734
5750
  config: config)
5735
5751
  context[:gem_name] = 'aws-sdk-lambda'
5736
- context[:gem_version] = '1.86.0'
5752
+ context[:gem_version] = '1.87.0'
5737
5753
  Seahorse::Client::Request.new(handlers, context)
5738
5754
  end
5739
5755
 
@@ -395,7 +395,11 @@ module Aws::Lambda
395
395
  # group ID must be unique among all your Kafka event sources. After
396
396
  # creating a Kafka event source mapping with the consumer group ID
397
397
  # specified, you cannot update this value. For more information, see
398
- # services-msk-consumer-group-id.
398
+ # [Customizable consumer group ID][1].
399
+ #
400
+ #
401
+ #
402
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id
399
403
  # @return [String]
400
404
  #
401
405
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/AmazonManagedKafkaEventSourceConfig AWS API Documentation
@@ -866,14 +870,22 @@ module Aws::Lambda
866
870
  # @return [Types::FilterCriteria]
867
871
  #
868
872
  # @!attribute [rw] maximum_batching_window_in_seconds
869
- # (Streams and Amazon SQS standard queues) The maximum amount of time,
870
- # in seconds, that Lambda spends gathering records before invoking the
871
- # function.
872
- #
873
- # Default: 0
874
- #
875
- # Related setting: When you set `BatchSize` to a value greater than
876
- # 10, you must set `MaximumBatchingWindowInSeconds` to at least 1.
873
+ # The maximum amount of time, in seconds, that Lambda spends gathering
874
+ # records before invoking the function. You can configure
875
+ # `MaximumBatchingWindowInSeconds` to any value from 0 seconds to 300
876
+ # seconds in increments of seconds.
877
+ #
878
+ # For streams and Amazon SQS event sources, the default batching
879
+ # window is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, and
880
+ # Amazon MQ event sources, the default batching window is 500 ms. Note
881
+ # that because you can only change `MaximumBatchingWindowInSeconds` in
882
+ # increments of seconds, you cannot revert back to the 500 ms default
883
+ # batching window after you have changed it. To restore the default
884
+ # batching window, you must create a new event source mapping.
885
+ #
886
+ # Related setting: For streams and Amazon SQS event sources, when you
887
+ # set `BatchSize` to a value greater than 10, you must set
888
+ # `MaximumBatchingWindowInSeconds` to at least 1.
877
889
  # @return [Integer]
878
890
  #
879
891
  # @!attribute [rw] parallelization_factor
@@ -983,7 +995,7 @@ module Aws::Lambda
983
995
  #
984
996
  # {
985
997
  # function_name: "FunctionName", # required
986
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
998
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
987
999
  # role: "RoleArn", # required
988
1000
  # handler: "Handler",
989
1001
  # code: { # required
@@ -1937,7 +1949,7 @@ module Aws::Lambda
1937
1949
  # error.
1938
1950
  #
1939
1951
  # @!attribute [rw] variables
1940
- # Environment variable key-value pairs.
1952
+ # Environment variable key-value pairs. Omitted from CloudTrail logs.
1941
1953
  # @return [Hash<String,String>]
1942
1954
  #
1943
1955
  # @!attribute [rw] error
@@ -2007,14 +2019,22 @@ module Aws::Lambda
2007
2019
  # @return [Integer]
2008
2020
  #
2009
2021
  # @!attribute [rw] maximum_batching_window_in_seconds
2010
- # (Streams and Amazon SQS standard queues) The maximum amount of time,
2011
- # in seconds, that Lambda spends gathering records before invoking the
2012
- # function.
2013
- #
2014
- # Default: 0
2015
- #
2016
- # Related setting: When you set `BatchSize` to a value greater than
2017
- # 10, you must set `MaximumBatchingWindowInSeconds` to at least 1.
2022
+ # The maximum amount of time, in seconds, that Lambda spends gathering
2023
+ # records before invoking the function. You can configure
2024
+ # `MaximumBatchingWindowInSeconds` to any value from 0 seconds to 300
2025
+ # seconds in increments of seconds.
2026
+ #
2027
+ # For streams and Amazon SQS event sources, the default batching
2028
+ # window is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, and
2029
+ # Amazon MQ event sources, the default batching window is 500 ms. Note
2030
+ # that because you can only change `MaximumBatchingWindowInSeconds` in
2031
+ # increments of seconds, you cannot revert back to the 500 ms default
2032
+ # batching window after you have changed it. To restore the default
2033
+ # batching window, you must create a new event source mapping.
2034
+ #
2035
+ # Related setting: For streams and Amazon SQS event sources, when you
2036
+ # set `BatchSize` to a value greater than 10, you must set
2037
+ # `MaximumBatchingWindowInSeconds` to at least 1.
2018
2038
  # @return [Integer]
2019
2039
  #
2020
2040
  # @!attribute [rw] parallelization_factor
@@ -2389,7 +2409,8 @@ module Aws::Lambda
2389
2409
  # @return [Types::DeadLetterConfig]
2390
2410
  #
2391
2411
  # @!attribute [rw] environment
2392
- # The function's [environment variables][1].
2412
+ # The function's [environment variables][1]. Omitted from CloudTrail
2413
+ # logs.
2393
2414
  #
2394
2415
  #
2395
2416
  #
@@ -3350,7 +3371,10 @@ module Aws::Lambda
3350
3371
  # @return [Integer]
3351
3372
  #
3352
3373
  # @!attribute [rw] allocated_provisioned_concurrent_executions
3353
- # The amount of provisioned concurrency allocated.
3374
+ # The amount of provisioned concurrency allocated. When a weighted
3375
+ # alias is used during linear and canary deployments, this value
3376
+ # fluctuates depending on the amount of concurrency that is
3377
+ # provisioned for the function versions.
3354
3378
  # @return [Integer]
3355
3379
  #
3356
3380
  # @!attribute [rw] status
@@ -4470,7 +4494,7 @@ module Aws::Lambda
4470
4494
  # data as a hash:
4471
4495
  #
4472
4496
  # {
4473
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
4497
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
4474
4498
  # layer_name: "LayerName", # required
4475
4499
  # marker: "String",
4476
4500
  # max_items: 1,
@@ -4535,7 +4559,7 @@ module Aws::Lambda
4535
4559
  # data as a hash:
4536
4560
  #
4537
4561
  # {
4538
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
4562
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
4539
4563
  # marker: "String",
4540
4564
  # max_items: 1,
4541
4565
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -4846,7 +4870,10 @@ module Aws::Lambda
4846
4870
  # @return [Integer]
4847
4871
  #
4848
4872
  # @!attribute [rw] allocated_provisioned_concurrent_executions
4849
- # The amount of provisioned concurrency allocated.
4873
+ # The amount of provisioned concurrency allocated. When a weighted
4874
+ # alias is used during linear and canary deployments, this value
4875
+ # fluctuates depending on the amount of concurrency that is
4876
+ # provisioned for the function versions.
4850
4877
  # @return [Integer]
4851
4878
  #
4852
4879
  # @!attribute [rw] status
@@ -4910,7 +4937,7 @@ module Aws::Lambda
4910
4937
  # s3_object_version: "S3ObjectVersion",
4911
4938
  # zip_file: "data",
4912
4939
  # },
4913
- # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
4940
+ # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
4914
4941
  # license_info: "LicenseInfo",
4915
4942
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
4916
4943
  # }
@@ -5325,7 +5352,10 @@ module Aws::Lambda
5325
5352
  # @return [Integer]
5326
5353
  #
5327
5354
  # @!attribute [rw] allocated_provisioned_concurrent_executions
5328
- # The amount of provisioned concurrency allocated.
5355
+ # The amount of provisioned concurrency allocated. When a weighted
5356
+ # alias is used during linear and canary deployments, this value
5357
+ # fluctuates depending on the amount of concurrency that is
5358
+ # provisioned for the function versions.
5329
5359
  # @return [Integer]
5330
5360
  #
5331
5361
  # @!attribute [rw] status
@@ -5590,7 +5620,11 @@ module Aws::Lambda
5590
5620
  # group ID must be unique among all your Kafka event sources. After
5591
5621
  # creating a Kafka event source mapping with the consumer group ID
5592
5622
  # specified, you cannot update this value. For more information, see
5593
- # services-msk-consumer-group-id.
5623
+ # [Customizable consumer group ID][1].
5624
+ #
5625
+ #
5626
+ #
5627
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id
5594
5628
  # @return [String]
5595
5629
  #
5596
5630
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/SelfManagedKafkaEventSourceConfig AWS API Documentation
@@ -5640,22 +5674,23 @@ module Aws::Lambda
5640
5674
  # of your secret key used for SASL/PLAIN authentication of your
5641
5675
  # Apache Kafka brokers.
5642
5676
  #
5643
- # * `VPC_SUBNET` - The subnets associated with your VPC. Lambda
5644
- # connects to these subnets to fetch data from your self-managed
5645
- # Apache Kafka cluster.
5646
- #
5647
- # * `VPC_SECURITY_GROUP` - The VPC security group used to manage
5648
- # access to your self-managed Apache Kafka brokers.
5677
+ # * `VPC_SUBNET` - (Self-managed Apache Kafka) The subnets associated
5678
+ # with your VPC. Lambda connects to these subnets to fetch data from
5679
+ # your self-managed Apache Kafka cluster.
5649
5680
  #
5650
- # * `SASL_SCRAM_256_AUTH` - The Secrets Manager ARN of your secret key
5651
- # used for SASL SCRAM-256 authentication of your self-managed Apache
5681
+ # * `VPC_SECURITY_GROUP` - (Self-managed Apache Kafka) The VPC
5682
+ # security group used to manage access to your self-managed Apache
5652
5683
  # Kafka brokers.
5653
5684
  #
5654
- # * `SASL_SCRAM_512_AUTH` - The Secrets Manager ARN of your secret key
5655
- # used for SASL SCRAM-512 authentication of your self-managed Apache
5656
- # Kafka brokers.
5685
+ # * `SASL_SCRAM_256_AUTH` - (Self-managed Apache Kafka) The Secrets
5686
+ # Manager ARN of your secret key used for SASL SCRAM-256
5687
+ # authentication of your self-managed Apache Kafka brokers.
5657
5688
  #
5658
- # * `VIRTUAL_HOST` - (Amazon MQ) The name of the virtual host in your
5689
+ # * `SASL_SCRAM_512_AUTH` - (Amazon MSK, Self-managed Apache Kafka)
5690
+ # The Secrets Manager ARN of your secret key used for SASL SCRAM-512
5691
+ # authentication of your self-managed Apache Kafka brokers.
5692
+ #
5693
+ # * `VIRTUAL_HOST` - (RabbitMQ) The name of the virtual host in your
5659
5694
  # RabbitMQ broker. Lambda uses this RabbitMQ host as the event
5660
5695
  # source. This property cannot be specified in an
5661
5696
  # UpdateEventSourceMapping API call.
@@ -6065,14 +6100,22 @@ module Aws::Lambda
6065
6100
  # @return [Types::FilterCriteria]
6066
6101
  #
6067
6102
  # @!attribute [rw] maximum_batching_window_in_seconds
6068
- # (Streams and Amazon SQS standard queues) The maximum amount of time,
6069
- # in seconds, that Lambda spends gathering records before invoking the
6070
- # function.
6071
- #
6072
- # Default: 0
6073
- #
6074
- # Related setting: When you set `BatchSize` to a value greater than
6075
- # 10, you must set `MaximumBatchingWindowInSeconds` to at least 1.
6103
+ # The maximum amount of time, in seconds, that Lambda spends gathering
6104
+ # records before invoking the function. You can configure
6105
+ # `MaximumBatchingWindowInSeconds` to any value from 0 seconds to 300
6106
+ # seconds in increments of seconds.
6107
+ #
6108
+ # For streams and Amazon SQS event sources, the default batching
6109
+ # window is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, and
6110
+ # Amazon MQ event sources, the default batching window is 500 ms. Note
6111
+ # that because you can only change `MaximumBatchingWindowInSeconds` in
6112
+ # increments of seconds, you cannot revert back to the 500 ms default
6113
+ # batching window after you have changed it. To restore the default
6114
+ # batching window, you must create a new event source mapping.
6115
+ #
6116
+ # Related setting: For streams and Amazon SQS event sources, when you
6117
+ # set `BatchSize` to a value greater than 10, you must set
6118
+ # `MaximumBatchingWindowInSeconds` to at least 1.
6076
6119
  # @return [Integer]
6077
6120
  #
6078
6121
  # @!attribute [rw] destination_config
@@ -6257,7 +6300,7 @@ module Aws::Lambda
6257
6300
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
6258
6301
  # },
6259
6302
  # },
6260
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
6303
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x
6261
6304
  # dead_letter_config: {
6262
6305
  # target_arn: "ResourceArn",
6263
6306
  # },
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-lambda/customizations'
53
53
  # @!group service
54
54
  module Aws::Lambda
55
55
 
56
- GEM_VERSION = '1.86.0'
56
+ GEM_VERSION = '1.87.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core