aws-sdk-lambda 1.106.0 → 1.108.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +42 -23
- data/lib/aws-sdk-lambda/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-lambda/types.rb +26 -3
- data/lib/aws-sdk-lambda.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa4603ad9aaa10646d7090b5c2fc1471b057dbeeb37c2ad9678634b5ea548540
|
4
|
+
data.tar.gz: 5d7d4999e43b9ff44c4acb47f3a60e88f3ca3efefa8656beaa4fa17dfc4783d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5be9cfc534afcd166bb8e2d6fe3790c61d5076dd5d7e84b52a74df6e4523ab75804c81f139b04d229eabb1c3c5188704fdb401df99de47efd4e844b6cdfa03e5
|
7
|
+
data.tar.gz: 4f6e322dcca03b505ab73ed159c0d0677485817fea7551848cdb41999433555e5da1f98f1cfcd17b9a9a386be3f5fca277bf4ffb2546b5e60fc59fa3da481fe9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.108.0 (2023-11-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda.
|
8
|
+
|
9
|
+
1.107.0 (2023-11-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Node 20 (nodejs20.x) support to AWS Lambda.
|
13
|
+
|
4
14
|
1.106.0 (2023-10-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.108.0
|
@@ -1354,7 +1354,12 @@ module Aws::Lambda
|
|
1354
1354
|
#
|
1355
1355
|
# @option params [Types::EphemeralStorage] :ephemeral_storage
|
1356
1356
|
# 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.
|
1357
|
+
# is 512, but can be any whole number between 512 and 10,240 MB. For
|
1358
|
+
# more information, see [Configuring ephemeral storage (console)][1].
|
1359
|
+
#
|
1360
|
+
#
|
1361
|
+
#
|
1362
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
1358
1363
|
#
|
1359
1364
|
# @option params [Types::SnapStart] :snap_start
|
1360
1365
|
# The function's [SnapStart][1] setting.
|
@@ -1405,7 +1410,7 @@ module Aws::Lambda
|
|
1405
1410
|
#
|
1406
1411
|
# resp = client.create_function({
|
1407
1412
|
# function_name: "FunctionName", # required
|
1408
|
-
# 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
|
1413
|
+
# 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
|
1409
1414
|
# role: "RoleArn", # required
|
1410
1415
|
# handler: "Handler",
|
1411
1416
|
# code: { # required
|
@@ -1466,7 +1471,7 @@ module Aws::Lambda
|
|
1466
1471
|
#
|
1467
1472
|
# resp.function_name #=> String
|
1468
1473
|
# resp.function_arn #=> String
|
1469
|
-
# 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"
|
1474
|
+
# 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"
|
1470
1475
|
# resp.role #=> String
|
1471
1476
|
# resp.handler #=> String
|
1472
1477
|
# resp.code_size #=> Integer
|
@@ -2340,7 +2345,7 @@ module Aws::Lambda
|
|
2340
2345
|
#
|
2341
2346
|
# resp.configuration.function_name #=> String
|
2342
2347
|
# resp.configuration.function_arn #=> String
|
2343
|
-
# 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"
|
2348
|
+
# 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"
|
2344
2349
|
# resp.configuration.role #=> String
|
2345
2350
|
# resp.configuration.handler #=> String
|
2346
2351
|
# resp.configuration.code_size #=> Integer
|
@@ -2582,7 +2587,7 @@ module Aws::Lambda
|
|
2582
2587
|
#
|
2583
2588
|
# resp.function_name #=> String
|
2584
2589
|
# resp.function_arn #=> String
|
2585
|
-
# 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"
|
2590
|
+
# 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"
|
2586
2591
|
# resp.role #=> String
|
2587
2592
|
# resp.handler #=> String
|
2588
2593
|
# resp.code_size #=> Integer
|
@@ -2825,7 +2830,7 @@ module Aws::Lambda
|
|
2825
2830
|
# resp.created_date #=> Time
|
2826
2831
|
# resp.version #=> Integer
|
2827
2832
|
# resp.compatible_runtimes #=> Array
|
2828
|
-
# 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"
|
2833
|
+
# 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"
|
2829
2834
|
# resp.license_info #=> String
|
2830
2835
|
# resp.compatible_architectures #=> Array
|
2831
2836
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -2880,7 +2885,7 @@ module Aws::Lambda
|
|
2880
2885
|
# resp.created_date #=> Time
|
2881
2886
|
# resp.version #=> Integer
|
2882
2887
|
# resp.compatible_runtimes #=> Array
|
2883
|
-
# 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"
|
2888
|
+
# 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"
|
2884
2889
|
# resp.license_info #=> String
|
2885
2890
|
# resp.compatible_architectures #=> Array
|
2886
2891
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -3101,8 +3106,11 @@ module Aws::Lambda
|
|
3101
3106
|
end
|
3102
3107
|
|
3103
3108
|
# Invokes a Lambda function. You can invoke a function synchronously
|
3104
|
-
# (and wait for the response), or asynchronously.
|
3105
|
-
#
|
3109
|
+
# (and wait for the response), or asynchronously. By default, Lambda
|
3110
|
+
# invokes your function synchronously (i.e. the`InvocationType` is
|
3111
|
+
# `RequestResponse`). To invoke a function asynchronously, set
|
3112
|
+
# `InvocationType` to `Event`. Lambda passes the `ClientContext` object
|
3113
|
+
# to your function for synchronous invocations only.
|
3106
3114
|
#
|
3107
3115
|
# For [synchronous invocation][1], details about the function response,
|
3108
3116
|
# including errors, are included in the response body and headers. For
|
@@ -3244,6 +3252,12 @@ module Aws::Lambda
|
|
3244
3252
|
#
|
3245
3253
|
# Invokes a function asynchronously.
|
3246
3254
|
#
|
3255
|
+
# <note markdown="1"> If you do use the InvokeAsync action, note that it doesn't support
|
3256
|
+
# the use of X-Ray active tracing. Trace ID is not propagated to the
|
3257
|
+
# function, even if X-Ray active tracing is turned on.
|
3258
|
+
#
|
3259
|
+
# </note>
|
3260
|
+
#
|
3247
3261
|
# @option params [required, String] :function_name
|
3248
3262
|
# The name of the Lambda function.
|
3249
3263
|
#
|
@@ -3923,7 +3937,7 @@ module Aws::Lambda
|
|
3923
3937
|
# resp.functions #=> Array
|
3924
3938
|
# resp.functions[0].function_name #=> String
|
3925
3939
|
# resp.functions[0].function_arn #=> String
|
3926
|
-
# 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"
|
3940
|
+
# 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"
|
3927
3941
|
# resp.functions[0].role #=> String
|
3928
3942
|
# resp.functions[0].handler #=> String
|
3929
3943
|
# resp.functions[0].code_size #=> Integer
|
@@ -4081,7 +4095,7 @@ module Aws::Lambda
|
|
4081
4095
|
# @example Request syntax with placeholder values
|
4082
4096
|
#
|
4083
4097
|
# resp = client.list_layer_versions({
|
4084
|
-
# 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
|
4098
|
+
# 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
|
4085
4099
|
# layer_name: "LayerName", # required
|
4086
4100
|
# marker: "String",
|
4087
4101
|
# max_items: 1,
|
@@ -4097,7 +4111,7 @@ module Aws::Lambda
|
|
4097
4111
|
# resp.layer_versions[0].description #=> String
|
4098
4112
|
# resp.layer_versions[0].created_date #=> Time
|
4099
4113
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
4100
|
-
# 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"
|
4114
|
+
# 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"
|
4101
4115
|
# resp.layer_versions[0].license_info #=> String
|
4102
4116
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
4103
4117
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -4156,7 +4170,7 @@ module Aws::Lambda
|
|
4156
4170
|
# @example Request syntax with placeholder values
|
4157
4171
|
#
|
4158
4172
|
# resp = client.list_layers({
|
4159
|
-
# 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
|
4173
|
+
# 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
|
4160
4174
|
# marker: "String",
|
4161
4175
|
# max_items: 1,
|
4162
4176
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
@@ -4173,7 +4187,7 @@ module Aws::Lambda
|
|
4173
4187
|
# resp.layers[0].latest_matching_version.description #=> String
|
4174
4188
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
4175
4189
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
4176
|
-
# 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"
|
4190
|
+
# 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"
|
4177
4191
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
4178
4192
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
4179
4193
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -4335,7 +4349,7 @@ module Aws::Lambda
|
|
4335
4349
|
# resp.versions #=> Array
|
4336
4350
|
# resp.versions[0].function_name #=> String
|
4337
4351
|
# resp.versions[0].function_arn #=> String
|
4338
|
-
# 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"
|
4352
|
+
# 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"
|
4339
4353
|
# resp.versions[0].role #=> String
|
4340
4354
|
# resp.versions[0].handler #=> String
|
4341
4355
|
# resp.versions[0].code_size #=> Integer
|
@@ -4478,7 +4492,7 @@ module Aws::Lambda
|
|
4478
4492
|
# s3_object_version: "S3ObjectVersion",
|
4479
4493
|
# zip_file: "data",
|
4480
4494
|
# },
|
4481
|
-
# 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
|
4495
|
+
# 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
|
4482
4496
|
# license_info: "LicenseInfo",
|
4483
4497
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
4484
4498
|
# })
|
@@ -4496,7 +4510,7 @@ module Aws::Lambda
|
|
4496
4510
|
# resp.created_date #=> Time
|
4497
4511
|
# resp.version #=> Integer
|
4498
4512
|
# resp.compatible_runtimes #=> Array
|
4499
|
-
# 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"
|
4513
|
+
# 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"
|
4500
4514
|
# resp.license_info #=> String
|
4501
4515
|
# resp.compatible_architectures #=> Array
|
4502
4516
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -4608,7 +4622,7 @@ module Aws::Lambda
|
|
4608
4622
|
#
|
4609
4623
|
# resp.function_name #=> String
|
4610
4624
|
# resp.function_arn #=> String
|
4611
|
-
# 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"
|
4625
|
+
# 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"
|
4612
4626
|
# resp.role #=> String
|
4613
4627
|
# resp.handler #=> String
|
4614
4628
|
# resp.code_size #=> Integer
|
@@ -5809,7 +5823,7 @@ module Aws::Lambda
|
|
5809
5823
|
#
|
5810
5824
|
# resp.function_name #=> String
|
5811
5825
|
# resp.function_arn #=> String
|
5812
|
-
# 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"
|
5826
|
+
# 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"
|
5813
5827
|
# resp.role #=> String
|
5814
5828
|
# resp.handler #=> String
|
5815
5829
|
# resp.code_size #=> Integer
|
@@ -6037,7 +6051,12 @@ module Aws::Lambda
|
|
6037
6051
|
#
|
6038
6052
|
# @option params [Types::EphemeralStorage] :ephemeral_storage
|
6039
6053
|
# The size of the function's `/tmp` directory in MB. The default value
|
6040
|
-
# is 512, but can be any whole number between 512 and 10,240 MB.
|
6054
|
+
# is 512, but can be any whole number between 512 and 10,240 MB. For
|
6055
|
+
# more information, see [Configuring ephemeral storage (console)][1].
|
6056
|
+
#
|
6057
|
+
#
|
6058
|
+
#
|
6059
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
6041
6060
|
#
|
6042
6061
|
# @option params [Types::SnapStart] :snap_start
|
6043
6062
|
# The function's [SnapStart][1] setting.
|
@@ -6103,7 +6122,7 @@ module Aws::Lambda
|
|
6103
6122
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
6104
6123
|
# },
|
6105
6124
|
# },
|
6106
|
-
# 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
|
6125
|
+
# 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
|
6107
6126
|
# dead_letter_config: {
|
6108
6127
|
# target_arn: "ResourceArn",
|
6109
6128
|
# },
|
@@ -6136,7 +6155,7 @@ module Aws::Lambda
|
|
6136
6155
|
#
|
6137
6156
|
# resp.function_name #=> String
|
6138
6157
|
# resp.function_arn #=> String
|
6139
|
-
# 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"
|
6158
|
+
# 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"
|
6140
6159
|
# resp.role #=> String
|
6141
6160
|
# resp.handler #=> String
|
6142
6161
|
# resp.code_size #=> Integer
|
@@ -6419,7 +6438,7 @@ module Aws::Lambda
|
|
6419
6438
|
params: params,
|
6420
6439
|
config: config)
|
6421
6440
|
context[:gem_name] = 'aws-sdk-lambda'
|
6422
|
-
context[:gem_version] = '1.
|
6441
|
+
context[:gem_version] = '1.108.0'
|
6423
6442
|
Seahorse::Client::Request.new(handlers, context)
|
6424
6443
|
end
|
6425
6444
|
|
@@ -32,7 +32,7 @@ module Aws::Lambda
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://lambda-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -1049,6 +1049,12 @@ module Aws::Lambda
|
|
1049
1049
|
# @!attribute [rw] ephemeral_storage
|
1050
1050
|
# The size of the function's `/tmp` directory in MB. The default
|
1051
1051
|
# value is 512, but can be any whole number between 512 and 10,240 MB.
|
1052
|
+
# For more information, see [Configuring ephemeral storage
|
1053
|
+
# (console)][1].
|
1054
|
+
#
|
1055
|
+
#
|
1056
|
+
#
|
1057
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
1052
1058
|
# @return [Types::EphemeralStorage]
|
1053
1059
|
#
|
1054
1060
|
# @!attribute [rw] snap_start
|
@@ -1759,7 +1765,12 @@ module Aws::Lambda
|
|
1759
1765
|
end
|
1760
1766
|
|
1761
1767
|
# The size of the function's `/tmp` directory in MB. The default value
|
1762
|
-
# is 512, but
|
1768
|
+
# is 512, but can be any whole number between 512 and 10,240 MB. For
|
1769
|
+
# more information, see [Configuring ephemeral storage (console)][1].
|
1770
|
+
#
|
1771
|
+
#
|
1772
|
+
#
|
1773
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
1763
1774
|
#
|
1764
1775
|
# @!attribute [rw] size
|
1765
1776
|
# The size of the function's `/tmp` directory.
|
@@ -2294,8 +2305,14 @@ module Aws::Lambda
|
|
2294
2305
|
# @return [Array<String>]
|
2295
2306
|
#
|
2296
2307
|
# @!attribute [rw] ephemeral_storage
|
2297
|
-
# The size of the function
|
2298
|
-
# is 512, but
|
2308
|
+
# The size of the function's `/tmp` directory in MB. The default
|
2309
|
+
# value is 512, but can be any whole number between 512 and 10,240 MB.
|
2310
|
+
# For more information, see [Configuring ephemeral storage
|
2311
|
+
# (console)][1].
|
2312
|
+
#
|
2313
|
+
#
|
2314
|
+
#
|
2315
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
2299
2316
|
# @return [Types::EphemeralStorage]
|
2300
2317
|
#
|
2301
2318
|
# @!attribute [rw] snap_start
|
@@ -6332,6 +6349,12 @@ module Aws::Lambda
|
|
6332
6349
|
# @!attribute [rw] ephemeral_storage
|
6333
6350
|
# The size of the function's `/tmp` directory in MB. The default
|
6334
6351
|
# value is 512, but can be any whole number between 512 and 10,240 MB.
|
6352
|
+
# For more information, see [Configuring ephemeral storage
|
6353
|
+
# (console)][1].
|
6354
|
+
#
|
6355
|
+
#
|
6356
|
+
#
|
6357
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
|
6335
6358
|
# @return [Types::EphemeralStorage]
|
6336
6359
|
#
|
6337
6360
|
# @!attribute [rw] snap_start
|
data/lib/aws-sdk-lambda.rb
CHANGED
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.
|
4
|
+
version: 1.108.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: 2023-
|
11
|
+
date: 2023-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|