aws-sdk-lambda 1.163.0 → 1.165.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +46 -28
- data/lib/aws-sdk-lambda/client_api.rb +7 -0
- data/lib/aws-sdk-lambda/errors.rb +21 -0
- data/lib/aws-sdk-lambda/types.rb +54 -10
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +13 -13
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +15 -9
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8e847775e9ea8c52a2f16c7bf37752597ea2cb29b615bb4c4ee7411d026e6cf
|
|
4
|
+
data.tar.gz: fd339b6ce7114caaa0764388fbc9910ba3df9e2237b05707b2cd0e67cf190154
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b00ec7e70eed202c3c8d52bcf35b4a0e5aee7b78d02d2450d6d0638f0df461ac7f2e6cf95a32cdc5c2db71de235a8ef369ad88c68722fc13526f6c27c7d3ec1
|
|
7
|
+
data.tar.gz: 394c0b0a49e8178f2066eecea2923d0938fe8631e81bf23e209a6cf603e6f2af87c33674a3227ed6992a422a2a3e3639b8b868dbed48d650c15821bf093ac55b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.165.0 (2025-10-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda
|
|
8
|
+
|
|
9
|
+
1.164.0 (2025-10-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added SerializedRequestEntityTooLargeException to Lambda Invoke API
|
|
13
|
+
|
|
4
14
|
1.163.0 (2025-10-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.165.0
|
|
@@ -681,10 +681,10 @@ module Aws::Lambda
|
|
|
681
681
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html
|
|
682
682
|
#
|
|
683
683
|
# @option params [Boolean] :invoked_via_function_url
|
|
684
|
-
# Restricts the `lambda:InvokeFunction` action to
|
|
685
|
-
#
|
|
686
|
-
#
|
|
687
|
-
#
|
|
684
|
+
# Restricts the `lambda:InvokeFunction` action to function URL calls.
|
|
685
|
+
# When set to `true`, this prevents the principal from invoking the
|
|
686
|
+
# function by any means other than the function URL. For more
|
|
687
|
+
# information, see [Control access to Lambda function URLs][1].
|
|
688
688
|
#
|
|
689
689
|
#
|
|
690
690
|
#
|
|
@@ -1816,7 +1816,7 @@ module Aws::Lambda
|
|
|
1816
1816
|
#
|
|
1817
1817
|
# resp = client.create_function({
|
|
1818
1818
|
# function_name: "FunctionName", # required
|
|
1819
|
-
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x
|
|
1819
|
+
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
|
|
1820
1820
|
# role: "RoleArn", # required
|
|
1821
1821
|
# handler: "Handler",
|
|
1822
1822
|
# code: { # required
|
|
@@ -1884,7 +1884,7 @@ module Aws::Lambda
|
|
|
1884
1884
|
#
|
|
1885
1885
|
# resp.function_name #=> String
|
|
1886
1886
|
# resp.function_arn #=> String
|
|
1887
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
1887
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
1888
1888
|
# resp.role #=> String
|
|
1889
1889
|
# resp.handler #=> String
|
|
1890
1890
|
# resp.code_size #=> Integer
|
|
@@ -2288,6 +2288,11 @@ module Aws::Lambda
|
|
|
2288
2288
|
# deleted. This doesn't require the user to have explicit permissions
|
|
2289
2289
|
# for DeleteAlias.
|
|
2290
2290
|
#
|
|
2291
|
+
# <note markdown="1"> A deleted Lambda function cannot be recovered. Ensure that you specify
|
|
2292
|
+
# the correct function name and version before deleting.
|
|
2293
|
+
#
|
|
2294
|
+
# </note>
|
|
2295
|
+
#
|
|
2291
2296
|
# To delete Lambda event source mappings that invoke a function, use
|
|
2292
2297
|
# DeleteEventSourceMapping. For Amazon Web Services services and
|
|
2293
2298
|
# resources that invoke your function directly, delete the trigger in
|
|
@@ -3010,7 +3015,7 @@ module Aws::Lambda
|
|
|
3010
3015
|
#
|
|
3011
3016
|
# resp.configuration.function_name #=> String
|
|
3012
3017
|
# resp.configuration.function_arn #=> String
|
|
3013
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
3018
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
3014
3019
|
# resp.configuration.role #=> String
|
|
3015
3020
|
# resp.configuration.handler #=> String
|
|
3016
3021
|
# resp.configuration.code_size #=> Integer
|
|
@@ -3313,7 +3318,7 @@ module Aws::Lambda
|
|
|
3313
3318
|
#
|
|
3314
3319
|
# resp.function_name #=> String
|
|
3315
3320
|
# resp.function_arn #=> String
|
|
3316
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
3321
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
3317
3322
|
# resp.role #=> String
|
|
3318
3323
|
# resp.handler #=> String
|
|
3319
3324
|
# resp.code_size #=> Integer
|
|
@@ -3646,7 +3651,7 @@ module Aws::Lambda
|
|
|
3646
3651
|
# resp.created_date #=> Time
|
|
3647
3652
|
# resp.version #=> Integer
|
|
3648
3653
|
# resp.compatible_runtimes #=> Array
|
|
3649
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
3654
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
3650
3655
|
# resp.license_info #=> String
|
|
3651
3656
|
# resp.compatible_architectures #=> Array
|
|
3652
3657
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3727,7 +3732,7 @@ module Aws::Lambda
|
|
|
3727
3732
|
# resp.created_date #=> Time
|
|
3728
3733
|
# resp.version #=> Integer
|
|
3729
3734
|
# resp.compatible_runtimes #=> Array
|
|
3730
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
3735
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
3731
3736
|
# resp.license_info #=> String
|
|
3732
3737
|
# resp.compatible_architectures #=> Array
|
|
3733
3738
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3880,9 +3885,9 @@ module Aws::Lambda
|
|
|
3880
3885
|
# * {Types::GetProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
|
|
3881
3886
|
#
|
|
3882
3887
|
#
|
|
3883
|
-
# @example Example: To
|
|
3888
|
+
# @example Example: To view a provisioned concurrency configuration
|
|
3884
3889
|
#
|
|
3885
|
-
# # The following example
|
|
3890
|
+
# # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
3886
3891
|
# # function.
|
|
3887
3892
|
#
|
|
3888
3893
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -3899,9 +3904,9 @@ module Aws::Lambda
|
|
|
3899
3904
|
# status: "READY",
|
|
3900
3905
|
# }
|
|
3901
3906
|
#
|
|
3902
|
-
# @example Example: To
|
|
3907
|
+
# @example Example: To get a provisioned concurrency configuration
|
|
3903
3908
|
#
|
|
3904
|
-
# # The following example
|
|
3909
|
+
# # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
3905
3910
|
# # function.
|
|
3906
3911
|
#
|
|
3907
3912
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -4009,6 +4014,9 @@ module Aws::Lambda
|
|
|
4009
4014
|
# `InvocationType` to `Event`. Lambda passes the `ClientContext` object
|
|
4010
4015
|
# to your function for synchronous invocations only.
|
|
4011
4016
|
#
|
|
4017
|
+
# For synchronous invocations, the maximum payload size is 6 MB. For
|
|
4018
|
+
# asynchronous invocations, the maximum payload size is 1 MB.
|
|
4019
|
+
#
|
|
4012
4020
|
# For [synchronous invocation][1], details about the function response,
|
|
4013
4021
|
# including errors, are included in the response body and headers. For
|
|
4014
4022
|
# either invocation type, you can find more information in the
|
|
@@ -4102,6 +4110,8 @@ module Aws::Lambda
|
|
|
4102
4110
|
#
|
|
4103
4111
|
# @option params [String, StringIO, File] :payload
|
|
4104
4112
|
# The JSON that you want to provide to your Lambda function as input.
|
|
4113
|
+
# The maximum payload size is 6 MB for synchronous invocations and 1 MB
|
|
4114
|
+
# for asynchronous invocations.
|
|
4105
4115
|
#
|
|
4106
4116
|
# You can enter the JSON directly. For example, `--payload '{ "key":
|
|
4107
4117
|
# "value" }'`. You can also specify a file path. For example, `--payload
|
|
@@ -4181,10 +4191,18 @@ module Aws::Lambda
|
|
|
4181
4191
|
req.send_request(options)
|
|
4182
4192
|
end
|
|
4183
4193
|
|
|
4184
|
-
# For asynchronous function invocation, use Invoke.
|
|
4194
|
+
# <note markdown="1"> For asynchronous function invocation, use Invoke.
|
|
4195
|
+
#
|
|
4196
|
+
# </note>
|
|
4185
4197
|
#
|
|
4186
4198
|
# Invokes a function asynchronously.
|
|
4187
4199
|
#
|
|
4200
|
+
# <note markdown="1"> The payload limit is 256KB. For larger payloads,
|
|
4201
|
+
# for up to 1MB, use
|
|
4202
|
+
# Invoke.
|
|
4203
|
+
#
|
|
4204
|
+
# </note>
|
|
4205
|
+
#
|
|
4188
4206
|
# <note markdown="1"> If you do use the InvokeAsync action, note that
|
|
4189
4207
|
# it doesn't support
|
|
4190
4208
|
# the use of X-Ray active tracing. Trace ID is not propagated to the
|
|
@@ -5061,7 +5079,7 @@ module Aws::Lambda
|
|
|
5061
5079
|
# resp.functions #=> Array
|
|
5062
5080
|
# resp.functions[0].function_name #=> String
|
|
5063
5081
|
# resp.functions[0].function_arn #=> String
|
|
5064
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
5082
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
5065
5083
|
# resp.functions[0].role #=> String
|
|
5066
5084
|
# resp.functions[0].handler #=> String
|
|
5067
5085
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -5260,7 +5278,7 @@ module Aws::Lambda
|
|
|
5260
5278
|
# @example Request syntax with placeholder values
|
|
5261
5279
|
#
|
|
5262
5280
|
# resp = client.list_layer_versions({
|
|
5263
|
-
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x
|
|
5281
|
+
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
|
|
5264
5282
|
# layer_name: "LayerName", # required
|
|
5265
5283
|
# marker: "String",
|
|
5266
5284
|
# max_items: 1,
|
|
@@ -5276,7 +5294,7 @@ module Aws::Lambda
|
|
|
5276
5294
|
# resp.layer_versions[0].description #=> String
|
|
5277
5295
|
# resp.layer_versions[0].created_date #=> Time
|
|
5278
5296
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
5279
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
5297
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
5280
5298
|
# resp.layer_versions[0].license_info #=> String
|
|
5281
5299
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
5282
5300
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -5368,7 +5386,7 @@ module Aws::Lambda
|
|
|
5368
5386
|
# @example Request syntax with placeholder values
|
|
5369
5387
|
#
|
|
5370
5388
|
# resp = client.list_layers({
|
|
5371
|
-
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x
|
|
5389
|
+
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
|
|
5372
5390
|
# marker: "String",
|
|
5373
5391
|
# max_items: 1,
|
|
5374
5392
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
@@ -5385,7 +5403,7 @@ module Aws::Lambda
|
|
|
5385
5403
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
5386
5404
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
5387
5405
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
5388
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
5406
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
5389
5407
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
5390
5408
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
5391
5409
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -5661,7 +5679,7 @@ module Aws::Lambda
|
|
|
5661
5679
|
# resp.versions #=> Array
|
|
5662
5680
|
# resp.versions[0].function_name #=> String
|
|
5663
5681
|
# resp.versions[0].function_arn #=> String
|
|
5664
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
5682
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
5665
5683
|
# resp.versions[0].role #=> String
|
|
5666
5684
|
# resp.versions[0].handler #=> String
|
|
5667
5685
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -5847,7 +5865,7 @@ module Aws::Lambda
|
|
|
5847
5865
|
# s3_object_version: "S3ObjectVersion",
|
|
5848
5866
|
# zip_file: "data",
|
|
5849
5867
|
# },
|
|
5850
|
-
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x
|
|
5868
|
+
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
|
|
5851
5869
|
# license_info: "LicenseInfo",
|
|
5852
5870
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
5853
5871
|
# })
|
|
@@ -5865,7 +5883,7 @@ module Aws::Lambda
|
|
|
5865
5883
|
# resp.created_date #=> Time
|
|
5866
5884
|
# resp.version #=> Integer
|
|
5867
5885
|
# resp.compatible_runtimes #=> Array
|
|
5868
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
5886
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
5869
5887
|
# resp.license_info #=> String
|
|
5870
5888
|
# resp.compatible_architectures #=> Array
|
|
5871
5889
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -6018,7 +6036,7 @@ module Aws::Lambda
|
|
|
6018
6036
|
#
|
|
6019
6037
|
# resp.function_name #=> String
|
|
6020
6038
|
# resp.function_arn #=> String
|
|
6021
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
6039
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
6022
6040
|
# resp.role #=> String
|
|
6023
6041
|
# resp.handler #=> String
|
|
6024
6042
|
# resp.code_size #=> Integer
|
|
@@ -7638,7 +7656,7 @@ module Aws::Lambda
|
|
|
7638
7656
|
#
|
|
7639
7657
|
# resp.function_name #=> String
|
|
7640
7658
|
# resp.function_arn #=> String
|
|
7641
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
7659
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
7642
7660
|
# resp.role #=> String
|
|
7643
7661
|
# resp.handler #=> String
|
|
7644
7662
|
# resp.code_size #=> Integer
|
|
@@ -7998,7 +8016,7 @@ module Aws::Lambda
|
|
|
7998
8016
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
7999
8017
|
# },
|
|
8000
8018
|
# },
|
|
8001
|
-
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x
|
|
8019
|
+
# 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, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
|
|
8002
8020
|
# dead_letter_config: {
|
|
8003
8021
|
# target_arn: "ResourceArn",
|
|
8004
8022
|
# },
|
|
@@ -8037,7 +8055,7 @@ module Aws::Lambda
|
|
|
8037
8055
|
#
|
|
8038
8056
|
# resp.function_name #=> String
|
|
8039
8057
|
# resp.function_arn #=> String
|
|
8040
|
-
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x"
|
|
8058
|
+
# 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", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
|
|
8041
8059
|
# resp.role #=> String
|
|
8042
8060
|
# resp.handler #=> String
|
|
8043
8061
|
# resp.code_size #=> Integer
|
|
@@ -8361,7 +8379,7 @@ module Aws::Lambda
|
|
|
8361
8379
|
tracer: tracer
|
|
8362
8380
|
)
|
|
8363
8381
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
8364
|
-
context[:gem_version] = '1.
|
|
8382
|
+
context[:gem_version] = '1.165.0'
|
|
8365
8383
|
Seahorse::Client::Request.new(handlers, context)
|
|
8366
8384
|
end
|
|
8367
8385
|
|
|
@@ -336,6 +336,7 @@ module Aws::Lambda
|
|
|
336
336
|
SelfManagedEventSource = Shapes::StructureShape.new(name: 'SelfManagedEventSource')
|
|
337
337
|
SelfManagedKafkaEventSourceConfig = Shapes::StructureShape.new(name: 'SelfManagedKafkaEventSourceConfig')
|
|
338
338
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
|
339
|
+
SerializedRequestEntityTooLargeException = Shapes::StructureShape.new(name: 'SerializedRequestEntityTooLargeException')
|
|
339
340
|
ServiceException = Shapes::StructureShape.new(name: 'ServiceException')
|
|
340
341
|
SigningProfileVersionArns = Shapes::ListShape.new(name: 'SigningProfileVersionArns')
|
|
341
342
|
SnapStart = Shapes::StructureShape.new(name: 'SnapStart')
|
|
@@ -1421,6 +1422,10 @@ module Aws::Lambda
|
|
|
1421
1422
|
SelfManagedKafkaEventSourceConfig.add_member(:schema_registry_config, Shapes::ShapeRef.new(shape: KafkaSchemaRegistryConfig, location_name: "SchemaRegistryConfig"))
|
|
1422
1423
|
SelfManagedKafkaEventSourceConfig.struct_class = Types::SelfManagedKafkaEventSourceConfig
|
|
1423
1424
|
|
|
1425
|
+
SerializedRequestEntityTooLargeException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
1426
|
+
SerializedRequestEntityTooLargeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1427
|
+
SerializedRequestEntityTooLargeException.struct_class = Types::SerializedRequestEntityTooLargeException
|
|
1428
|
+
|
|
1424
1429
|
ServiceException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
1425
1430
|
ServiceException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
1426
1431
|
ServiceException.struct_class = Types::ServiceException
|
|
@@ -2063,6 +2068,7 @@ module Aws::Lambda
|
|
|
2063
2068
|
o.errors << Shapes::ShapeRef.new(shape: RequestTooLargeException)
|
|
2064
2069
|
o.errors << Shapes::ShapeRef.new(shape: KMSDisabledException)
|
|
2065
2070
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedMediaTypeException)
|
|
2071
|
+
o.errors << Shapes::ShapeRef.new(shape: SerializedRequestEntityTooLargeException)
|
|
2066
2072
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
|
|
2067
2073
|
o.errors << Shapes::ShapeRef.new(shape: EC2UnexpectedException)
|
|
2068
2074
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnetIDException)
|
|
@@ -2115,6 +2121,7 @@ module Aws::Lambda
|
|
|
2115
2121
|
o.errors << Shapes::ShapeRef.new(shape: RequestTooLargeException)
|
|
2116
2122
|
o.errors << Shapes::ShapeRef.new(shape: KMSDisabledException)
|
|
2117
2123
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedMediaTypeException)
|
|
2124
|
+
o.errors << Shapes::ShapeRef.new(shape: SerializedRequestEntityTooLargeException)
|
|
2118
2125
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
|
|
2119
2126
|
o.errors << Shapes::ShapeRef.new(shape: EC2UnexpectedException)
|
|
2120
2127
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnetIDException)
|
|
@@ -58,6 +58,7 @@ module Aws::Lambda
|
|
|
58
58
|
# * {ResourceInUseException}
|
|
59
59
|
# * {ResourceNotFoundException}
|
|
60
60
|
# * {ResourceNotReadyException}
|
|
61
|
+
# * {SerializedRequestEntityTooLargeException}
|
|
61
62
|
# * {ServiceException}
|
|
62
63
|
# * {SnapStartException}
|
|
63
64
|
# * {SnapStartNotReadyException}
|
|
@@ -697,6 +698,26 @@ module Aws::Lambda
|
|
|
697
698
|
end
|
|
698
699
|
end
|
|
699
700
|
|
|
701
|
+
class SerializedRequestEntityTooLargeException < ServiceError
|
|
702
|
+
|
|
703
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
704
|
+
# @param [String] message
|
|
705
|
+
# @param [Aws::Lambda::Types::SerializedRequestEntityTooLargeException] data
|
|
706
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
707
|
+
super(context, message, data)
|
|
708
|
+
end
|
|
709
|
+
|
|
710
|
+
# @return [String]
|
|
711
|
+
def type
|
|
712
|
+
@data[:type]
|
|
713
|
+
end
|
|
714
|
+
|
|
715
|
+
# @return [String]
|
|
716
|
+
def message
|
|
717
|
+
@message || @data[:message]
|
|
718
|
+
end
|
|
719
|
+
end
|
|
720
|
+
|
|
700
721
|
class ServiceException < ServiceError
|
|
701
722
|
|
|
702
723
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -225,10 +225,10 @@ module Aws::Lambda
|
|
|
225
225
|
# @return [String]
|
|
226
226
|
#
|
|
227
227
|
# @!attribute [rw] invoked_via_function_url
|
|
228
|
-
# Restricts the `lambda:InvokeFunction` action to
|
|
229
|
-
#
|
|
230
|
-
#
|
|
231
|
-
#
|
|
228
|
+
# Restricts the `lambda:InvokeFunction` action to function URL calls.
|
|
229
|
+
# When set to `true`, this prevents the principal from invoking the
|
|
230
|
+
# function by any means other than the function URL. For more
|
|
231
|
+
# information, see [Control access to Lambda function URLs][1].
|
|
232
232
|
#
|
|
233
233
|
#
|
|
234
234
|
#
|
|
@@ -3762,6 +3762,8 @@ module Aws::Lambda
|
|
|
3762
3762
|
#
|
|
3763
3763
|
# @!attribute [rw] payload
|
|
3764
3764
|
# The JSON that you want to provide to your Lambda function as input.
|
|
3765
|
+
# The maximum payload size is 6 MB for synchronous invocations and 1
|
|
3766
|
+
# MB for asynchronous invocations.
|
|
3765
3767
|
#
|
|
3766
3768
|
# You can enter the JSON directly. For example, `--payload '{ "key":
|
|
3767
3769
|
# "value" }'`. You can also specify a file path. For example,
|
|
@@ -5058,18 +5060,27 @@ module Aws::Lambda
|
|
|
5058
5060
|
# bucket, Lambda function, or Amazon EventBridge event bus as the
|
|
5059
5061
|
# destination.
|
|
5060
5062
|
#
|
|
5061
|
-
#
|
|
5062
|
-
#
|
|
5063
|
+
# <note markdown="1"> Amazon SNS destinations have a message size limit of 256 KB. If the
|
|
5064
|
+
# combined size of the function request and response payload exceeds
|
|
5065
|
+
# the limit, Lambda will drop the payload when sending `OnFailure`
|
|
5066
|
+
# event to the destination. For details on this behavior, refer to
|
|
5067
|
+
# [Retaining records of asynchronous invocations][2].
|
|
5068
|
+
#
|
|
5069
|
+
# </note>
|
|
5070
|
+
#
|
|
5071
|
+
# To retain records of failed invocations from [Kinesis][3],
|
|
5072
|
+
# [DynamoDB][4], [self-managed Kafka][5] or [Amazon MSK][6], you can
|
|
5063
5073
|
# configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket
|
|
5064
5074
|
# as the destination.
|
|
5065
5075
|
#
|
|
5066
5076
|
#
|
|
5067
5077
|
#
|
|
5068
5078
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations
|
|
5069
|
-
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/
|
|
5070
|
-
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
|
5071
|
-
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
|
5072
|
-
# [5]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
|
5079
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html
|
|
5080
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html
|
|
5081
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html
|
|
5082
|
+
# [5]: https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination
|
|
5083
|
+
# [6]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination
|
|
5073
5084
|
# @return [String]
|
|
5074
5085
|
#
|
|
5075
5086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/OnFailure AWS API Documentation
|
|
@@ -5097,6 +5108,18 @@ module Aws::Lambda
|
|
|
5097
5108
|
#
|
|
5098
5109
|
# @!attribute [rw] destination
|
|
5099
5110
|
# The Amazon Resource Name (ARN) of the destination resource.
|
|
5111
|
+
#
|
|
5112
|
+
# <note markdown="1"> Amazon SNS destinations have a message size limit of 256 KB. If the
|
|
5113
|
+
# combined size of the function request and response payload exceeds
|
|
5114
|
+
# the limit, Lambda will drop the payload when sending `OnFailure`
|
|
5115
|
+
# event to the destination. For details on this behavior, refer to
|
|
5116
|
+
# [Retaining records of asynchronous invocations][1].
|
|
5117
|
+
#
|
|
5118
|
+
# </note>
|
|
5119
|
+
#
|
|
5120
|
+
#
|
|
5121
|
+
#
|
|
5122
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html
|
|
5100
5123
|
# @return [String]
|
|
5101
5124
|
#
|
|
5102
5125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/OnSuccess AWS API Documentation
|
|
@@ -6133,6 +6156,27 @@ module Aws::Lambda
|
|
|
6133
6156
|
include Aws::Structure
|
|
6134
6157
|
end
|
|
6135
6158
|
|
|
6159
|
+
# The processed request payload exceeded the `Invoke` request body size
|
|
6160
|
+
# limit for asynchronous invocations. While the event payload may be
|
|
6161
|
+
# under 1 MB, the size after internal serialization exceeds the maximum
|
|
6162
|
+
# allowed size for asynchronous invocations.
|
|
6163
|
+
#
|
|
6164
|
+
# @!attribute [rw] type
|
|
6165
|
+
# The error type.
|
|
6166
|
+
# @return [String]
|
|
6167
|
+
#
|
|
6168
|
+
# @!attribute [rw] message
|
|
6169
|
+
# @return [String]
|
|
6170
|
+
#
|
|
6171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/SerializedRequestEntityTooLargeException AWS API Documentation
|
|
6172
|
+
#
|
|
6173
|
+
class SerializedRequestEntityTooLargeException < Struct.new(
|
|
6174
|
+
:type,
|
|
6175
|
+
:message)
|
|
6176
|
+
SENSITIVE = []
|
|
6177
|
+
include Aws::Structure
|
|
6178
|
+
end
|
|
6179
|
+
|
|
6136
6180
|
# The Lambda service encountered an internal error.
|
|
6137
6181
|
#
|
|
6138
6182
|
# @!attribute [rw] type
|
data/lib/aws-sdk-lambda.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -293,7 +293,7 @@ module Aws
|
|
|
293
293
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
294
294
|
def function_name: () -> ::String
|
|
295
295
|
def function_arn: () -> ::String
|
|
296
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
296
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
297
297
|
def role: () -> ::String
|
|
298
298
|
def handler: () -> ::String
|
|
299
299
|
def code_size: () -> ::Integer
|
|
@@ -331,7 +331,7 @@ module Aws
|
|
|
331
331
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
|
|
332
332
|
def create_function: (
|
|
333
333
|
function_name: ::String,
|
|
334
|
-
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x"),
|
|
334
|
+
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
|
|
335
335
|
role: ::String,
|
|
336
336
|
?handler: ::String,
|
|
337
337
|
code: {
|
|
@@ -639,7 +639,7 @@ module Aws
|
|
|
639
639
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
640
640
|
def function_name: () -> ::String
|
|
641
641
|
def function_arn: () -> ::String
|
|
642
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
642
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
643
643
|
def role: () -> ::String
|
|
644
644
|
def handler: () -> ::String
|
|
645
645
|
def code_size: () -> ::Integer
|
|
@@ -731,7 +731,7 @@ module Aws
|
|
|
731
731
|
def description: () -> ::String
|
|
732
732
|
def created_date: () -> ::Time
|
|
733
733
|
def version: () -> ::Integer
|
|
734
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
734
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
735
735
|
def license_info: () -> ::String
|
|
736
736
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
737
737
|
end
|
|
@@ -750,7 +750,7 @@ module Aws
|
|
|
750
750
|
def description: () -> ::String
|
|
751
751
|
def created_date: () -> ::Time
|
|
752
752
|
def version: () -> ::Integer
|
|
753
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
753
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
754
754
|
def license_info: () -> ::String
|
|
755
755
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
756
756
|
end
|
|
@@ -961,7 +961,7 @@ module Aws
|
|
|
961
961
|
end
|
|
962
962
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
|
|
963
963
|
def list_layer_versions: (
|
|
964
|
-
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x"),
|
|
964
|
+
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
|
|
965
965
|
layer_name: ::String,
|
|
966
966
|
?marker: ::String,
|
|
967
967
|
?max_items: ::Integer,
|
|
@@ -976,7 +976,7 @@ module Aws
|
|
|
976
976
|
end
|
|
977
977
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
|
|
978
978
|
def list_layers: (
|
|
979
|
-
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x"),
|
|
979
|
+
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
|
|
980
980
|
?marker: ::String,
|
|
981
981
|
?max_items: ::Integer,
|
|
982
982
|
?compatible_architecture: ("x86_64" | "arm64")
|
|
@@ -1027,7 +1027,7 @@ module Aws
|
|
|
1027
1027
|
def description: () -> ::String
|
|
1028
1028
|
def created_date: () -> ::Time
|
|
1029
1029
|
def version: () -> ::Integer
|
|
1030
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
1030
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
1031
1031
|
def license_info: () -> ::String
|
|
1032
1032
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1033
1033
|
end
|
|
@@ -1041,7 +1041,7 @@ module Aws
|
|
|
1041
1041
|
s3_object_version: ::String?,
|
|
1042
1042
|
zip_file: ::String?
|
|
1043
1043
|
},
|
|
1044
|
-
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")],
|
|
1044
|
+
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")],
|
|
1045
1045
|
?license_info: ::String,
|
|
1046
1046
|
?compatible_architectures: Array[("x86_64" | "arm64")]
|
|
1047
1047
|
) -> _PublishLayerVersionResponseSuccess
|
|
@@ -1051,7 +1051,7 @@ module Aws
|
|
|
1051
1051
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1052
1052
|
def function_name: () -> ::String
|
|
1053
1053
|
def function_arn: () -> ::String
|
|
1054
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1054
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1055
1055
|
def role: () -> ::String
|
|
1056
1056
|
def handler: () -> ::String
|
|
1057
1057
|
def code_size: () -> ::Integer
|
|
@@ -1385,7 +1385,7 @@ module Aws
|
|
|
1385
1385
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1386
1386
|
def function_name: () -> ::String
|
|
1387
1387
|
def function_arn: () -> ::String
|
|
1388
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1388
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1389
1389
|
def role: () -> ::String
|
|
1390
1390
|
def handler: () -> ::String
|
|
1391
1391
|
def code_size: () -> ::Integer
|
|
@@ -1440,7 +1440,7 @@ module Aws
|
|
|
1440
1440
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1441
1441
|
def function_name: () -> ::String
|
|
1442
1442
|
def function_arn: () -> ::String
|
|
1443
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1443
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1444
1444
|
def role: () -> ::String
|
|
1445
1445
|
def handler: () -> ::String
|
|
1446
1446
|
def code_size: () -> ::Integer
|
|
@@ -1491,7 +1491,7 @@ module Aws
|
|
|
1491
1491
|
?environment: {
|
|
1492
1492
|
variables: Hash[::String, ::String]?
|
|
1493
1493
|
},
|
|
1494
|
-
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x"),
|
|
1494
|
+
?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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
|
|
1495
1495
|
?dead_letter_config: {
|
|
1496
1496
|
target_arn: ::String?
|
|
1497
1497
|
},
|
data/sig/errors.rbs
CHANGED
|
@@ -136,6 +136,10 @@ module Aws
|
|
|
136
136
|
def type: () -> ::String
|
|
137
137
|
def message: () -> ::String
|
|
138
138
|
end
|
|
139
|
+
class SerializedRequestEntityTooLargeException < ::Aws::Errors::ServiceError
|
|
140
|
+
def type: () -> ::String
|
|
141
|
+
def message: () -> ::String
|
|
142
|
+
end
|
|
139
143
|
class ServiceException < ::Aws::Errors::ServiceError
|
|
140
144
|
def type: () -> ::String
|
|
141
145
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -190,7 +190,7 @@ module Aws::Lambda
|
|
|
190
190
|
|
|
191
191
|
class CreateFunctionRequest
|
|
192
192
|
attr_accessor function_name: ::String
|
|
193
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
193
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
194
194
|
attr_accessor role: ::String
|
|
195
195
|
attr_accessor handler: ::String
|
|
196
196
|
attr_accessor code: Types::FunctionCode
|
|
@@ -468,7 +468,7 @@ module Aws::Lambda
|
|
|
468
468
|
class FunctionConfiguration
|
|
469
469
|
attr_accessor function_name: ::String
|
|
470
470
|
attr_accessor function_arn: ::String
|
|
471
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
471
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
472
472
|
attr_accessor role: ::String
|
|
473
473
|
attr_accessor handler: ::String
|
|
474
474
|
attr_accessor code_size: ::Integer
|
|
@@ -660,7 +660,7 @@ module Aws::Lambda
|
|
|
660
660
|
attr_accessor description: ::String
|
|
661
661
|
attr_accessor created_date: ::Time
|
|
662
662
|
attr_accessor version: ::Integer
|
|
663
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
663
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
664
664
|
attr_accessor license_info: ::String
|
|
665
665
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
666
666
|
SENSITIVE: []
|
|
@@ -903,7 +903,7 @@ module Aws::Lambda
|
|
|
903
903
|
attr_accessor version: ::Integer
|
|
904
904
|
attr_accessor description: ::String
|
|
905
905
|
attr_accessor created_date: ::Time
|
|
906
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
906
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
907
907
|
attr_accessor license_info: ::String
|
|
908
908
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
909
909
|
SENSITIVE: []
|
|
@@ -1010,7 +1010,7 @@ module Aws::Lambda
|
|
|
1010
1010
|
end
|
|
1011
1011
|
|
|
1012
1012
|
class ListLayerVersionsRequest
|
|
1013
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1013
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1014
1014
|
attr_accessor layer_name: ::String
|
|
1015
1015
|
attr_accessor marker: ::String
|
|
1016
1016
|
attr_accessor max_items: ::Integer
|
|
@@ -1025,7 +1025,7 @@ module Aws::Lambda
|
|
|
1025
1025
|
end
|
|
1026
1026
|
|
|
1027
1027
|
class ListLayersRequest
|
|
1028
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1028
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1029
1029
|
attr_accessor marker: ::String
|
|
1030
1030
|
attr_accessor max_items: ::Integer
|
|
1031
1031
|
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
@@ -1131,7 +1131,7 @@ module Aws::Lambda
|
|
|
1131
1131
|
attr_accessor layer_name: ::String
|
|
1132
1132
|
attr_accessor description: ::String
|
|
1133
1133
|
attr_accessor content: Types::LayerVersionContentInput
|
|
1134
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
1134
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
1135
1135
|
attr_accessor license_info: ::String
|
|
1136
1136
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1137
1137
|
SENSITIVE: []
|
|
@@ -1144,7 +1144,7 @@ module Aws::Lambda
|
|
|
1144
1144
|
attr_accessor description: ::String
|
|
1145
1145
|
attr_accessor created_date: ::Time
|
|
1146
1146
|
attr_accessor version: ::Integer
|
|
1147
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")]
|
|
1147
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
|
|
1148
1148
|
attr_accessor license_info: ::String
|
|
1149
1149
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1150
1150
|
SENSITIVE: []
|
|
@@ -1308,6 +1308,12 @@ module Aws::Lambda
|
|
|
1308
1308
|
SENSITIVE: []
|
|
1309
1309
|
end
|
|
1310
1310
|
|
|
1311
|
+
class SerializedRequestEntityTooLargeException
|
|
1312
|
+
attr_accessor type: ::String
|
|
1313
|
+
attr_accessor message: ::String
|
|
1314
|
+
SENSITIVE: []
|
|
1315
|
+
end
|
|
1316
|
+
|
|
1311
1317
|
class ServiceException
|
|
1312
1318
|
attr_accessor type: ::String
|
|
1313
1319
|
attr_accessor message: ::String
|
|
@@ -1469,7 +1475,7 @@ module Aws::Lambda
|
|
|
1469
1475
|
attr_accessor memory_size: ::Integer
|
|
1470
1476
|
attr_accessor vpc_config: Types::VpcConfig
|
|
1471
1477
|
attr_accessor environment: Types::Environment
|
|
1472
|
-
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x")
|
|
1478
|
+
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" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
|
|
1473
1479
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
|
1474
1480
|
attr_accessor kms_key_arn: ::String
|
|
1475
1481
|
attr_accessor tracing_config: Types::TracingConfig
|