aws-sdk-lambda 1.114.0 → 1.116.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75609a4d034de1add9a9316964a34020226efc1f58453eedcde0f3aa10659397
4
- data.tar.gz: e041cd5d0518b2410f9616116e668995247ce1346f090c136bddf4df29f64b1f
3
+ metadata.gz: cd5e6eb11f26105cc4f7a69d17c14405a2ae6b8c58fda9808ac58fc0104c4644
4
+ data.tar.gz: c9f7d0b3d706096063cdadbf1086096b47fae53ddfe5564e5e8833b92a7360f5
5
5
  SHA512:
6
- metadata.gz: 1ecd3ffababdcea988d78b98ba5995659c8e01988a1398d3e7fe617d2a173c89445b06aeebbf0a994f967388931786ff762507c15e589d0980ac6990a3af673c
7
- data.tar.gz: dec687a282dad98637f602f7a5cb8c0b4c0460c282bf15859ac9f99f48c721d53ea0cd4ea0926962dac7e2c61e8876b56a164f4df05b63802da73139badc14a0
6
+ metadata.gz: e52bf6df0c72bafff38be03c332cec44f9e46e490b02958903fcb62ecc72880cd33bf3153d6be3b0247a313498b3762539c8b5fa198982916d760498cb65565a
7
+ data.tar.gz: c8735d0a2a348fe5554951cb488b5e95c0089204afd71738e9e897f24954d27a3fe3f79010ef6db26ccede01cfbf618eefffda99f72dfc171ee2b5d08e177989
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2024-02-20)
5
+ ------------------
6
+
7
+ * Feature - Add .NET 8 (dotnet8) Runtime support to AWS Lambda.
8
+
9
+ 1.115.0 (2024-02-16)
10
+ ------------------
11
+
12
+ * Feature - Documentation-only updates for Lambda to clarify a number of existing actions and properties.
13
+
4
14
  1.114.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.116.0
@@ -828,12 +828,17 @@ module Aws::Lambda
828
828
  # * **Amazon Simple Queue Service** – The ARN of the queue.
829
829
  #
830
830
  # * **Amazon Managed Streaming for Apache Kafka** – The ARN of the
831
- # cluster.
831
+ # cluster or the ARN of the VPC connection (for [cross-account event
832
+ # source mappings][1]).
832
833
  #
833
834
  # * **Amazon MQ** – The ARN of the broker.
834
835
  #
835
836
  # * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
836
837
  #
838
+ #
839
+ #
840
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
841
+ #
837
842
  # @option params [required, String] :function_name
838
843
  # The name of the Lambda function.
839
844
  #
@@ -922,8 +927,9 @@ module Aws::Lambda
922
927
  # start reading. `StartingPositionTimestamp` cannot be in the future.
923
928
  #
924
929
  # @option params [Types::DestinationConfig] :destination_config
925
- # (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
926
- # standard Amazon SNS topic destination for discarded records.
930
+ # (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A
931
+ # configuration object that specifies the destination of an event after
932
+ # Lambda processes it.
927
933
  #
928
934
  # @option params [Integer] :maximum_record_age_in_seconds
929
935
  # (Kinesis and DynamoDB Streams only) Discard records older than the
@@ -1354,7 +1360,12 @@ module Aws::Lambda
1354
1360
  #
1355
1361
  # @option params [Types::EphemeralStorage] :ephemeral_storage
1356
1362
  # The size of the function's `/tmp` directory in MB. The default value
1357
- # is 512, but can be any whole number between 512 and 10,240 MB.
1363
+ # is 512, but can be any whole number between 512 and 10,240 MB. For
1364
+ # more information, see [Configuring ephemeral storage (console)][1].
1365
+ #
1366
+ #
1367
+ #
1368
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
1358
1369
  #
1359
1370
  # @option params [Types::SnapStart] :snap_start
1360
1371
  # The function's [SnapStart][1] setting.
@@ -1409,7 +1420,7 @@ module Aws::Lambda
1409
1420
  #
1410
1421
  # resp = client.create_function({
1411
1422
  # function_name: "FunctionName", # required
1412
- # 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, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
1423
+ # 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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
1413
1424
  # role: "RoleArn", # required
1414
1425
  # handler: "Handler",
1415
1426
  # code: { # required
@@ -1476,7 +1487,7 @@ module Aws::Lambda
1476
1487
  #
1477
1488
  # resp.function_name #=> String
1478
1489
  # resp.function_arn #=> String
1479
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
1490
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
1480
1491
  # resp.role #=> String
1481
1492
  # resp.handler #=> String
1482
1493
  # resp.code_size #=> Integer
@@ -2354,7 +2365,7 @@ module Aws::Lambda
2354
2365
  #
2355
2366
  # resp.configuration.function_name #=> String
2356
2367
  # resp.configuration.function_arn #=> String
2357
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2368
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2358
2369
  # resp.configuration.role #=> String
2359
2370
  # resp.configuration.handler #=> String
2360
2371
  # resp.configuration.code_size #=> Integer
@@ -2601,7 +2612,7 @@ module Aws::Lambda
2601
2612
  #
2602
2613
  # resp.function_name #=> String
2603
2614
  # resp.function_arn #=> String
2604
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2615
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2605
2616
  # resp.role #=> String
2606
2617
  # resp.handler #=> String
2607
2618
  # resp.code_size #=> Integer
@@ -2848,7 +2859,7 @@ module Aws::Lambda
2848
2859
  # resp.created_date #=> Time
2849
2860
  # resp.version #=> Integer
2850
2861
  # resp.compatible_runtimes #=> Array
2851
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2862
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2852
2863
  # resp.license_info #=> String
2853
2864
  # resp.compatible_architectures #=> Array
2854
2865
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -2903,7 +2914,7 @@ module Aws::Lambda
2903
2914
  # resp.created_date #=> Time
2904
2915
  # resp.version #=> Integer
2905
2916
  # resp.compatible_runtimes #=> Array
2906
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2917
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2907
2918
  # resp.license_info #=> String
2908
2919
  # resp.compatible_architectures #=> Array
2909
2920
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3217,7 +3228,9 @@ module Aws::Lambda
3217
3228
  #
3218
3229
  # @option params [String] :client_context
3219
3230
  # Up to 3,583 bytes of base64-encoded data about the invoking client to
3220
- # pass to the function in the context object.
3231
+ # pass to the function in the context object. Lambda passes the
3232
+ # `ClientContext` object to your function for synchronous invocations
3233
+ # only.
3221
3234
  #
3222
3235
  # @option params [String, StringIO, File] :payload
3223
3236
  # The JSON that you want to provide to your Lambda function as input.
@@ -3270,6 +3283,12 @@ module Aws::Lambda
3270
3283
  #
3271
3284
  # Invokes a function asynchronously.
3272
3285
  #
3286
+ # <note markdown="1"> If you do use the InvokeAsync action, note that it doesn't support
3287
+ # the use of X-Ray active tracing. Trace ID is not propagated to the
3288
+ # function, even if X-Ray active tracing is turned on.
3289
+ #
3290
+ # </note>
3291
+ #
3273
3292
  # @option params [required, String] :function_name
3274
3293
  # The name of the Lambda function.
3275
3294
  #
@@ -3659,12 +3678,17 @@ module Aws::Lambda
3659
3678
  # * **Amazon Simple Queue Service** – The ARN of the queue.
3660
3679
  #
3661
3680
  # * **Amazon Managed Streaming for Apache Kafka** – The ARN of the
3662
- # cluster.
3681
+ # cluster or the ARN of the VPC connection (for [cross-account event
3682
+ # source mappings][1]).
3663
3683
  #
3664
3684
  # * **Amazon MQ** – The ARN of the broker.
3665
3685
  #
3666
3686
  # * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
3667
3687
  #
3688
+ #
3689
+ #
3690
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
3691
+ #
3668
3692
  # @option params [String] :function_name
3669
3693
  # The name of the Lambda function.
3670
3694
  #
@@ -3949,7 +3973,7 @@ module Aws::Lambda
3949
3973
  # resp.functions #=> Array
3950
3974
  # resp.functions[0].function_name #=> String
3951
3975
  # resp.functions[0].function_arn #=> String
3952
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
3976
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
3953
3977
  # resp.functions[0].role #=> String
3954
3978
  # resp.functions[0].handler #=> String
3955
3979
  # resp.functions[0].code_size #=> Integer
@@ -4076,7 +4100,7 @@ module Aws::Lambda
4076
4100
  # [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
4077
4101
  #
4078
4102
  # @option params [String] :compatible_runtime
4079
- # A runtime identifier. For example, `go1.x`.
4103
+ # A runtime identifier. For example, `java21`.
4080
4104
  #
4081
4105
  # The following list includes deprecated runtimes. For more information,
4082
4106
  # see [Runtime deprecation policy][1].
@@ -4111,7 +4135,7 @@ module Aws::Lambda
4111
4135
  # @example Request syntax with placeholder values
4112
4136
  #
4113
4137
  # resp = client.list_layer_versions({
4114
- # 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, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4138
+ # 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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4115
4139
  # layer_name: "LayerName", # required
4116
4140
  # marker: "String",
4117
4141
  # max_items: 1,
@@ -4127,7 +4151,7 @@ module Aws::Lambda
4127
4151
  # resp.layer_versions[0].description #=> String
4128
4152
  # resp.layer_versions[0].created_date #=> Time
4129
4153
  # resp.layer_versions[0].compatible_runtimes #=> Array
4130
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4154
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4131
4155
  # resp.layer_versions[0].license_info #=> String
4132
4156
  # resp.layer_versions[0].compatible_architectures #=> Array
4133
4157
  # resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4154,7 +4178,7 @@ module Aws::Lambda
4154
4178
  # [3]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
4155
4179
  #
4156
4180
  # @option params [String] :compatible_runtime
4157
- # A runtime identifier. For example, `go1.x`.
4181
+ # A runtime identifier. For example, `java21`.
4158
4182
  #
4159
4183
  # The following list includes deprecated runtimes. For more information,
4160
4184
  # see [Runtime deprecation policy][1].
@@ -4186,7 +4210,7 @@ module Aws::Lambda
4186
4210
  # @example Request syntax with placeholder values
4187
4211
  #
4188
4212
  # resp = client.list_layers({
4189
- # 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, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4213
+ # 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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4190
4214
  # marker: "String",
4191
4215
  # max_items: 1,
4192
4216
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -4203,7 +4227,7 @@ module Aws::Lambda
4203
4227
  # resp.layers[0].latest_matching_version.description #=> String
4204
4228
  # resp.layers[0].latest_matching_version.created_date #=> Time
4205
4229
  # resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
4206
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4230
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4207
4231
  # resp.layers[0].latest_matching_version.license_info #=> String
4208
4232
  # resp.layers[0].latest_matching_version.compatible_architectures #=> Array
4209
4233
  # resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4365,7 +4389,7 @@ module Aws::Lambda
4365
4389
  # resp.versions #=> Array
4366
4390
  # resp.versions[0].function_name #=> String
4367
4391
  # resp.versions[0].function_arn #=> String
4368
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4392
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4369
4393
  # resp.versions[0].role #=> String
4370
4394
  # resp.versions[0].handler #=> String
4371
4395
  # resp.versions[0].code_size #=> Integer
@@ -4512,7 +4536,7 @@ module Aws::Lambda
4512
4536
  # s3_object_version: "S3ObjectVersion",
4513
4537
  # zip_file: "data",
4514
4538
  # },
4515
- # 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, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4539
+ # 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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4516
4540
  # license_info: "LicenseInfo",
4517
4541
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
4518
4542
  # })
@@ -4530,7 +4554,7 @@ module Aws::Lambda
4530
4554
  # resp.created_date #=> Time
4531
4555
  # resp.version #=> Integer
4532
4556
  # resp.compatible_runtimes #=> Array
4533
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4557
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4534
4558
  # resp.license_info #=> String
4535
4559
  # resp.compatible_architectures #=> Array
4536
4560
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4643,7 +4667,7 @@ module Aws::Lambda
4643
4667
  #
4644
4668
  # resp.function_name #=> String
4645
4669
  # resp.function_arn #=> String
4646
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4670
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4647
4671
  # resp.role #=> String
4648
4672
  # resp.handler #=> String
4649
4673
  # resp.code_size #=> Integer
@@ -5532,8 +5556,9 @@ module Aws::Lambda
5532
5556
  # `MaximumBatchingWindowInSeconds` to at least 1.
5533
5557
  #
5534
5558
  # @option params [Types::DestinationConfig] :destination_config
5535
- # (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
5536
- # standard Amazon SNS topic destination for discarded records.
5559
+ # (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A
5560
+ # configuration object that specifies the destination of an event after
5561
+ # Lambda processes it.
5537
5562
  #
5538
5563
  # @option params [Integer] :maximum_record_age_in_seconds
5539
5564
  # (Kinesis and DynamoDB Streams only) Discard records older than the
@@ -5849,7 +5874,7 @@ module Aws::Lambda
5849
5874
  #
5850
5875
  # resp.function_name #=> String
5851
5876
  # resp.function_arn #=> String
5852
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
5877
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
5853
5878
  # resp.role #=> String
5854
5879
  # resp.handler #=> String
5855
5880
  # resp.code_size #=> Integer
@@ -6081,7 +6106,12 @@ module Aws::Lambda
6081
6106
  #
6082
6107
  # @option params [Types::EphemeralStorage] :ephemeral_storage
6083
6108
  # The size of the function's `/tmp` directory in MB. The default value
6084
- # is 512, but can be any whole number between 512 and 10,240 MB.
6109
+ # is 512, but can be any whole number between 512 and 10,240 MB. For
6110
+ # more information, see [Configuring ephemeral storage (console)][1].
6111
+ #
6112
+ #
6113
+ #
6114
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
6085
6115
  #
6086
6116
  # @option params [Types::SnapStart] :snap_start
6087
6117
  # The function's [SnapStart][1] setting.
@@ -6151,7 +6181,7 @@ module Aws::Lambda
6151
6181
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
6152
6182
  # },
6153
6183
  # },
6154
- # 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, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
6184
+ # 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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
6155
6185
  # dead_letter_config: {
6156
6186
  # target_arn: "ResourceArn",
6157
6187
  # },
@@ -6190,7 +6220,7 @@ module Aws::Lambda
6190
6220
  #
6191
6221
  # resp.function_name #=> String
6192
6222
  # resp.function_arn #=> String
6193
- # 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", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
6223
+ # 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", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
6194
6224
  # resp.role #=> String
6195
6225
  # resp.handler #=> String
6196
6226
  # resp.code_size #=> Integer
@@ -6477,7 +6507,7 @@ module Aws::Lambda
6477
6507
  params: params,
6478
6508
  config: config)
6479
6509
  context[:gem_name] = 'aws-sdk-lambda'
6480
- context[:gem_version] = '1.114.0'
6510
+ context[:gem_version] = '1.116.0'
6481
6511
  Seahorse::Client::Request.new(handlers, context)
6482
6512
  end
6483
6513
 
@@ -658,11 +658,16 @@ module Aws::Lambda
658
658
  # * **Amazon Simple Queue Service** – The ARN of the queue.
659
659
  #
660
660
  # * **Amazon Managed Streaming for Apache Kafka** – The ARN of the
661
- # cluster.
661
+ # cluster or the ARN of the VPC connection (for [cross-account event
662
+ # source mappings][1]).
662
663
  #
663
664
  # * **Amazon MQ** – The ARN of the broker.
664
665
  #
665
666
  # * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
667
+ #
668
+ #
669
+ #
670
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
666
671
  # @return [String]
667
672
  #
668
673
  # @!attribute [rw] function_name
@@ -763,8 +768,9 @@ module Aws::Lambda
763
768
  # @return [Time]
764
769
  #
765
770
  # @!attribute [rw] destination_config
766
- # (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
767
- # standard Amazon SNS topic destination for discarded records.
771
+ # (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only)
772
+ # A configuration object that specifies the destination of an event
773
+ # after Lambda processes it.
768
774
  # @return [Types::DestinationConfig]
769
775
  #
770
776
  # @!attribute [rw] maximum_record_age_in_seconds
@@ -1049,6 +1055,12 @@ module Aws::Lambda
1049
1055
  # @!attribute [rw] ephemeral_storage
1050
1056
  # The size of the function's `/tmp` directory in MB. The default
1051
1057
  # value is 512, but can be any whole number between 512 and 10,240 MB.
1058
+ # For more information, see [Configuring ephemeral storage
1059
+ # (console)][1].
1060
+ #
1061
+ #
1062
+ #
1063
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
1052
1064
  # @return [Types::EphemeralStorage]
1053
1065
  #
1054
1066
  # @!attribute [rw] snap_start
@@ -1764,7 +1776,12 @@ module Aws::Lambda
1764
1776
  end
1765
1777
 
1766
1778
  # The size of the function's `/tmp` directory in MB. The default value
1767
- # is 512, but it can be any whole number between 512 and 10,240 MB.
1779
+ # is 512, but can be any whole number between 512 and 10,240 MB. For
1780
+ # more information, see [Configuring ephemeral storage (console)][1].
1781
+ #
1782
+ #
1783
+ #
1784
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
1768
1785
  #
1769
1786
  # @!attribute [rw] size
1770
1787
  # The size of the function's `/tmp` directory.
@@ -1875,8 +1892,9 @@ module Aws::Lambda
1875
1892
  # @return [String]
1876
1893
  #
1877
1894
  # @!attribute [rw] destination_config
1878
- # (Kinesis and DynamoDB Streams only) An Amazon SQS queue or Amazon
1879
- # SNS topic destination for discarded records.
1895
+ # (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache
1896
+ # Kafka event sources only) A configuration object that specifies the
1897
+ # destination of an event after Lambda processes it.
1880
1898
  # @return [Types::DestinationConfig]
1881
1899
  #
1882
1900
  # @!attribute [rw] topics
@@ -2299,8 +2317,14 @@ module Aws::Lambda
2299
2317
  # @return [Array<String>]
2300
2318
  #
2301
2319
  # @!attribute [rw] ephemeral_storage
2302
- # The size of the functions `/tmp` directory in MB. The default value
2303
- # is 512, but it can be any whole number between 512 and 10,240 MB.
2320
+ # The size of the function's `/tmp` directory in MB. The default
2321
+ # value is 512, but can be any whole number between 512 and 10,240 MB.
2322
+ # For more information, see [Configuring ephemeral storage
2323
+ # (console)][1].
2324
+ #
2325
+ #
2326
+ #
2327
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
2304
2328
  # @return [Types::EphemeralStorage]
2305
2329
  #
2306
2330
  # @!attribute [rw] snap_start
@@ -3457,7 +3481,9 @@ module Aws::Lambda
3457
3481
  #
3458
3482
  # @!attribute [rw] client_context
3459
3483
  # Up to 3,583 bytes of base64-encoded data about the invoking client
3460
- # to pass to the function in the context object.
3484
+ # to pass to the function in the context object. Lambda passes the
3485
+ # `ClientContext` object to your function for synchronous invocations
3486
+ # only.
3461
3487
  # @return [String]
3462
3488
  #
3463
3489
  # @!attribute [rw] payload
@@ -4078,11 +4104,16 @@ module Aws::Lambda
4078
4104
  # * **Amazon Simple Queue Service** – The ARN of the queue.
4079
4105
  #
4080
4106
  # * **Amazon Managed Streaming for Apache Kafka** – The ARN of the
4081
- # cluster.
4107
+ # cluster or the ARN of the VPC connection (for [cross-account event
4108
+ # source mappings][1]).
4082
4109
  #
4083
4110
  # * **Amazon MQ** – The ARN of the broker.
4084
4111
  #
4085
4112
  # * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
4113
+ #
4114
+ #
4115
+ #
4116
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
4086
4117
  # @return [String]
4087
4118
  #
4088
4119
  # @!attribute [rw] function_name
@@ -4345,7 +4376,7 @@ module Aws::Lambda
4345
4376
  end
4346
4377
 
4347
4378
  # @!attribute [rw] compatible_runtime
4348
- # A runtime identifier. For example, `go1.x`.
4379
+ # A runtime identifier. For example, `java21`.
4349
4380
  #
4350
4381
  # The following list includes deprecated runtimes. For more
4351
4382
  # information, see [Runtime deprecation policy][1].
@@ -4406,7 +4437,7 @@ module Aws::Lambda
4406
4437
  end
4407
4438
 
4408
4439
  # @!attribute [rw] compatible_runtime
4409
- # A runtime identifier. For example, `go1.x`.
4440
+ # A runtime identifier. For example, `java21`.
4410
4441
  #
4411
4442
  # The following list includes deprecated runtimes. For more
4412
4443
  # information, see [Runtime deprecation policy][1].
@@ -4603,13 +4634,15 @@ module Aws::Lambda
4603
4634
  # @!attribute [rw] application_log_level
4604
4635
  # Set this property to filter the application logs for your function
4605
4636
  # that Lambda sends to CloudWatch. Lambda only sends application logs
4606
- # at the selected level and lower.
4637
+ # at the selected level of detail and lower, where `TRACE` is the
4638
+ # highest level and `FATAL` is the lowest.
4607
4639
  # @return [String]
4608
4640
  #
4609
4641
  # @!attribute [rw] system_log_level
4610
4642
  # Set this property to filter the system logs for your function that
4611
4643
  # Lambda sends to CloudWatch. Lambda only sends system logs at the
4612
- # selected level and lower.
4644
+ # selected level of detail and lower, where `DEBUG` is the highest
4645
+ # level and `WARN` is the lowest.
4613
4646
  # @return [String]
4614
4647
  #
4615
4648
  # @!attribute [rw] log_group
@@ -4634,6 +4667,25 @@ module Aws::Lambda
4634
4667
  #
4635
4668
  # @!attribute [rw] destination
4636
4669
  # The Amazon Resource Name (ARN) of the destination resource.
4670
+ #
4671
+ # To retain records of [asynchronous invocations][1], you can
4672
+ # configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or
4673
+ # Amazon EventBridge event bus as the destination.
4674
+ #
4675
+ # To retain records of failed invocations from [Kinesis and DynamoDB
4676
+ # event sources][2], you can configure an Amazon SNS topic or Amazon
4677
+ # SQS queue as the destination.
4678
+ #
4679
+ # To retain records of failed invocations from [self-managed Kafka][3]
4680
+ # or [Amazon MSK][4], you can configure an Amazon SNS topic, Amazon
4681
+ # SQS queue, or Amazon S3 bucket as the destination.
4682
+ #
4683
+ #
4684
+ #
4685
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations
4686
+ # [2]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#event-source-mapping-destinations
4687
+ # [3]: https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination
4688
+ # [4]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination
4637
4689
  # @return [String]
4638
4690
  #
4639
4691
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/OnFailure AWS API Documentation
@@ -6063,8 +6115,9 @@ module Aws::Lambda
6063
6115
  # @return [Integer]
6064
6116
  #
6065
6117
  # @!attribute [rw] destination_config
6066
- # (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
6067
- # standard Amazon SNS topic destination for discarded records.
6118
+ # (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only)
6119
+ # A configuration object that specifies the destination of an event
6120
+ # after Lambda processes it.
6068
6121
  # @return [Types::DestinationConfig]
6069
6122
  #
6070
6123
  # @!attribute [rw] maximum_record_age_in_seconds
@@ -6380,6 +6433,12 @@ module Aws::Lambda
6380
6433
  # @!attribute [rw] ephemeral_storage
6381
6434
  # The size of the function's `/tmp` directory in MB. The default
6382
6435
  # value is 512, but can be any whole number between 512 and 10,240 MB.
6436
+ # For more information, see [Configuring ephemeral storage
6437
+ # (console)][1].
6438
+ #
6439
+ #
6440
+ #
6441
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
6383
6442
  # @return [Types::EphemeralStorage]
6384
6443
  #
6385
6444
  # @!attribute [rw] snap_start
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-lambda/event_streams'
54
54
  # @!group service
55
55
  module Aws::Lambda
56
56
 
57
- GEM_VERSION = '1.114.0'
57
+ GEM_VERSION = '1.116.0'
58
58
 
59
59
  end
data/sig/client.rbs CHANGED
@@ -241,7 +241,7 @@ module Aws
241
241
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
242
242
  def function_name: () -> ::String
243
243
  def function_arn: () -> ::String
244
- def runtime: () -> ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
244
+ def runtime: () -> ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
245
245
  def role: () -> ::String
246
246
  def handler: () -> ::String
247
247
  def code_size: () -> ::Integer
@@ -279,7 +279,7 @@ module Aws
279
279
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
280
280
  def create_function: (
281
281
  function_name: ::String,
282
- ?runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
282
+ ?runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
283
283
  role: ::String,
284
284
  ?handler: ::String,
285
285
  code: {
@@ -575,7 +575,7 @@ module Aws
575
575
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
576
576
  def function_name: () -> ::String
577
577
  def function_arn: () -> ::String
578
- def runtime: () -> ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
578
+ def runtime: () -> ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
579
579
  def role: () -> ::String
580
580
  def handler: () -> ::String
581
581
  def code_size: () -> ::Integer
@@ -657,7 +657,7 @@ module Aws
657
657
  def description: () -> ::String
658
658
  def created_date: () -> ::Time
659
659
  def version: () -> ::Integer
660
- def compatible_runtimes: () -> ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
660
+ def compatible_runtimes: () -> ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
661
661
  def license_info: () -> ::String
662
662
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
663
663
  end
@@ -676,7 +676,7 @@ module Aws
676
676
  def description: () -> ::String
677
677
  def created_date: () -> ::Time
678
678
  def version: () -> ::Integer
679
- def compatible_runtimes: () -> ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
679
+ def compatible_runtimes: () -> ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
680
680
  def license_info: () -> ::String
681
681
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
682
682
  end
@@ -887,7 +887,7 @@ module Aws
887
887
  end
888
888
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
889
889
  def list_layer_versions: (
890
- ?compatible_runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
890
+ ?compatible_runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
891
891
  layer_name: ::String,
892
892
  ?marker: ::String,
893
893
  ?max_items: ::Integer,
@@ -902,7 +902,7 @@ module Aws
902
902
  end
903
903
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
904
904
  def list_layers: (
905
- ?compatible_runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
905
+ ?compatible_runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
906
906
  ?marker: ::String,
907
907
  ?max_items: ::Integer,
908
908
  ?compatible_architecture: ("x86_64" | "arm64")
@@ -953,7 +953,7 @@ module Aws
953
953
  def description: () -> ::String
954
954
  def created_date: () -> ::Time
955
955
  def version: () -> ::Integer
956
- def compatible_runtimes: () -> ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
956
+ def compatible_runtimes: () -> ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
957
957
  def license_info: () -> ::String
958
958
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
959
959
  end
@@ -967,7 +967,7 @@ module Aws
967
967
  s3_object_version: ::String?,
968
968
  zip_file: ::String?
969
969
  },
970
- ?compatible_runtimes: Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")],
970
+ ?compatible_runtimes: Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")],
971
971
  ?license_info: ::String,
972
972
  ?compatible_architectures: Array[("x86_64" | "arm64")]
973
973
  ) -> _PublishLayerVersionResponseSuccess
@@ -977,7 +977,7 @@ module Aws
977
977
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
978
978
  def function_name: () -> ::String
979
979
  def function_arn: () -> ::String
980
- def runtime: () -> ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
980
+ def runtime: () -> ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
981
981
  def role: () -> ::String
982
982
  def handler: () -> ::String
983
983
  def code_size: () -> ::Integer
@@ -1251,7 +1251,7 @@ module Aws
1251
1251
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1252
1252
  def function_name: () -> ::String
1253
1253
  def function_arn: () -> ::String
1254
- def runtime: () -> ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1254
+ def runtime: () -> ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1255
1255
  def role: () -> ::String
1256
1256
  def handler: () -> ::String
1257
1257
  def code_size: () -> ::Integer
@@ -1305,7 +1305,7 @@ module Aws
1305
1305
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1306
1306
  def function_name: () -> ::String
1307
1307
  def function_arn: () -> ::String
1308
- def runtime: () -> ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1308
+ def runtime: () -> ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1309
1309
  def role: () -> ::String
1310
1310
  def handler: () -> ::String
1311
1311
  def code_size: () -> ::Integer
@@ -1356,7 +1356,7 @@ module Aws
1356
1356
  ?environment: {
1357
1357
  variables: Hash[::String, ::String]?
1358
1358
  },
1359
- ?runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
1359
+ ?runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
1360
1360
  ?dead_letter_config: {
1361
1361
  target_arn: ::String?
1362
1362
  },
data/sig/types.rbs CHANGED
@@ -183,7 +183,7 @@ module Aws::Lambda
183
183
 
184
184
  class CreateFunctionRequest
185
185
  attr_accessor function_name: ::String
186
- attr_accessor runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
186
+ attr_accessor runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
187
187
  attr_accessor role: ::String
188
188
  attr_accessor handler: ::String
189
189
  attr_accessor code: Types::FunctionCode
@@ -443,7 +443,7 @@ module Aws::Lambda
443
443
  class FunctionConfiguration
444
444
  attr_accessor function_name: ::String
445
445
  attr_accessor function_arn: ::String
446
- attr_accessor runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
446
+ attr_accessor runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
447
447
  attr_accessor role: ::String
448
448
  attr_accessor handler: ::String
449
449
  attr_accessor code_size: ::Integer
@@ -624,7 +624,7 @@ module Aws::Lambda
624
624
  attr_accessor description: ::String
625
625
  attr_accessor created_date: ::Time
626
626
  attr_accessor version: ::Integer
627
- attr_accessor compatible_runtimes: ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
627
+ attr_accessor compatible_runtimes: ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
628
628
  attr_accessor license_info: ::String
629
629
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
630
630
  SENSITIVE: []
@@ -848,7 +848,7 @@ module Aws::Lambda
848
848
  attr_accessor version: ::Integer
849
849
  attr_accessor description: ::String
850
850
  attr_accessor created_date: ::Time
851
- attr_accessor compatible_runtimes: ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
851
+ attr_accessor compatible_runtimes: ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
852
852
  attr_accessor license_info: ::String
853
853
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
854
854
  SENSITIVE: []
@@ -955,7 +955,7 @@ module Aws::Lambda
955
955
  end
956
956
 
957
957
  class ListLayerVersionsRequest
958
- attr_accessor compatible_runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
958
+ attr_accessor compatible_runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
959
959
  attr_accessor layer_name: ::String
960
960
  attr_accessor marker: ::String
961
961
  attr_accessor max_items: ::Integer
@@ -970,7 +970,7 @@ module Aws::Lambda
970
970
  end
971
971
 
972
972
  class ListLayersRequest
973
- attr_accessor compatible_runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
973
+ attr_accessor compatible_runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
974
974
  attr_accessor marker: ::String
975
975
  attr_accessor max_items: ::Integer
976
976
  attr_accessor compatible_architecture: ("x86_64" | "arm64")
@@ -1070,7 +1070,7 @@ module Aws::Lambda
1070
1070
  attr_accessor layer_name: ::String
1071
1071
  attr_accessor description: ::String
1072
1072
  attr_accessor content: Types::LayerVersionContentInput
1073
- attr_accessor compatible_runtimes: ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1073
+ attr_accessor compatible_runtimes: ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1074
1074
  attr_accessor license_info: ::String
1075
1075
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1076
1076
  SENSITIVE: []
@@ -1083,7 +1083,7 @@ module Aws::Lambda
1083
1083
  attr_accessor description: ::String
1084
1084
  attr_accessor created_date: ::Time
1085
1085
  attr_accessor version: ::Integer
1086
- attr_accessor compatible_runtimes: ::Array[("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1086
+ attr_accessor compatible_runtimes: ::Array[("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1087
1087
  attr_accessor license_info: ::String
1088
1088
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1089
1089
  SENSITIVE: []
@@ -1384,7 +1384,7 @@ module Aws::Lambda
1384
1384
  attr_accessor memory_size: ::Integer
1385
1385
  attr_accessor vpc_config: Types::VpcConfig
1386
1386
  attr_accessor environment: Types::Environment
1387
- attr_accessor runtime: ("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" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1387
+ attr_accessor runtime: ("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" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1388
1388
  attr_accessor dead_letter_config: Types::DeadLetterConfig
1389
1389
  attr_accessor kms_key_arn: ::String
1390
1390
  attr_accessor tracing_config: Types::TracingConfig
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.114.0
4
+ version: 1.116.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core