aws-sdk-lambda 1.93.0 → 1.95.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 +25 -19
- data/lib/aws-sdk-lambda/client_api.rb +3 -0
- data/lib/aws-sdk-lambda/types.rb +14 -1
- 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: 139d7f8970e8b996cf1fcbc1455f2b0f89fd260ee8821957b9b21f48c695b6a7
|
|
4
|
+
data.tar.gz: d10c9f46ec88ec928eb5660cfbd6232550e5ba71a84fca1189f0a0a2b98c3481
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 459ff439a4757e6f0693af402aa27705b51f3e95122ef10471ee38fafe16f37e27eceaddc0a03ec67a5da9b84b9eef11125c49efbf28286126ee3ba76cb11ec2
|
|
7
|
+
data.tar.gz: eebac9a195d56933fb303b1b6e2031aac908e1e9643c9d4f550854fbee9b275157209ccf08dbf5b8ddf09981259cb226dab83950edfc650f371e29de75ed838f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.95.0 (2023-04-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add Python 3.10 (python3.10) support to AWS Lambda
|
|
8
|
+
|
|
9
|
+
1.94.0 (2023-04-14)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds SnapStart related exceptions to InvokeWithResponseStream API. IAM access related documentation is also added for this API.
|
|
13
|
+
|
|
4
14
|
1.93.0 (2023-04-07)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.95.0
|
|
@@ -1381,7 +1381,7 @@ module Aws::Lambda
|
|
|
1381
1381
|
#
|
|
1382
1382
|
# resp = client.create_function({
|
|
1383
1383
|
# function_name: "FunctionName", # required
|
|
1384
|
-
# 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
|
|
1384
|
+
# 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
|
|
1385
1385
|
# role: "RoleArn", # required
|
|
1386
1386
|
# handler: "Handler",
|
|
1387
1387
|
# code: { # required
|
|
@@ -1441,7 +1441,7 @@ module Aws::Lambda
|
|
|
1441
1441
|
#
|
|
1442
1442
|
# resp.function_name #=> String
|
|
1443
1443
|
# resp.function_arn #=> String
|
|
1444
|
-
# 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"
|
|
1444
|
+
# 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"
|
|
1445
1445
|
# resp.role #=> String
|
|
1446
1446
|
# resp.handler #=> String
|
|
1447
1447
|
# resp.code_size #=> Integer
|
|
@@ -2313,7 +2313,7 @@ module Aws::Lambda
|
|
|
2313
2313
|
#
|
|
2314
2314
|
# resp.configuration.function_name #=> String
|
|
2315
2315
|
# resp.configuration.function_arn #=> String
|
|
2316
|
-
# 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"
|
|
2316
|
+
# 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"
|
|
2317
2317
|
# resp.configuration.role #=> String
|
|
2318
2318
|
# resp.configuration.handler #=> String
|
|
2319
2319
|
# resp.configuration.code_size #=> Integer
|
|
@@ -2554,7 +2554,7 @@ module Aws::Lambda
|
|
|
2554
2554
|
#
|
|
2555
2555
|
# resp.function_name #=> String
|
|
2556
2556
|
# resp.function_arn #=> String
|
|
2557
|
-
# 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"
|
|
2557
|
+
# 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"
|
|
2558
2558
|
# resp.role #=> String
|
|
2559
2559
|
# resp.handler #=> String
|
|
2560
2560
|
# resp.code_size #=> Integer
|
|
@@ -2796,7 +2796,7 @@ module Aws::Lambda
|
|
|
2796
2796
|
# resp.created_date #=> Time
|
|
2797
2797
|
# resp.version #=> Integer
|
|
2798
2798
|
# resp.compatible_runtimes #=> Array
|
|
2799
|
-
# 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"
|
|
2799
|
+
# 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"
|
|
2800
2800
|
# resp.license_info #=> String
|
|
2801
2801
|
# resp.compatible_architectures #=> Array
|
|
2802
2802
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -2851,7 +2851,7 @@ module Aws::Lambda
|
|
|
2851
2851
|
# resp.created_date #=> Time
|
|
2852
2852
|
# resp.version #=> Integer
|
|
2853
2853
|
# resp.compatible_runtimes #=> Array
|
|
2854
|
-
# 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"
|
|
2854
|
+
# 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"
|
|
2855
2855
|
# resp.license_info #=> String
|
|
2856
2856
|
# resp.compatible_architectures #=> Array
|
|
2857
2857
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3261,9 +3261,15 @@ module Aws::Lambda
|
|
|
3261
3261
|
# clients. For more information, see [Configuring a Lambda function to
|
|
3262
3262
|
# stream responses][1].
|
|
3263
3263
|
#
|
|
3264
|
+
# This operation requires permission for the [lambda:InvokeFunction][2]
|
|
3265
|
+
# action. For details on how to set up permissions for cross-account
|
|
3266
|
+
# invocations, see [Granting function access to other accounts][3].
|
|
3267
|
+
#
|
|
3264
3268
|
#
|
|
3265
3269
|
#
|
|
3266
3270
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-response-streaming.html
|
|
3271
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_awslambda.html
|
|
3272
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke
|
|
3267
3273
|
#
|
|
3268
3274
|
# @option params [required, String] :function_name
|
|
3269
3275
|
# The name of the Lambda function.
|
|
@@ -3888,7 +3894,7 @@ module Aws::Lambda
|
|
|
3888
3894
|
# resp.functions #=> Array
|
|
3889
3895
|
# resp.functions[0].function_name #=> String
|
|
3890
3896
|
# resp.functions[0].function_arn #=> String
|
|
3891
|
-
# 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"
|
|
3897
|
+
# 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"
|
|
3892
3898
|
# resp.functions[0].role #=> String
|
|
3893
3899
|
# resp.functions[0].handler #=> String
|
|
3894
3900
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -4038,7 +4044,7 @@ module Aws::Lambda
|
|
|
4038
4044
|
# @example Request syntax with placeholder values
|
|
4039
4045
|
#
|
|
4040
4046
|
# resp = client.list_layer_versions({
|
|
4041
|
-
# 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
|
|
4047
|
+
# 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
|
|
4042
4048
|
# layer_name: "LayerName", # required
|
|
4043
4049
|
# marker: "String",
|
|
4044
4050
|
# max_items: 1,
|
|
@@ -4054,7 +4060,7 @@ module Aws::Lambda
|
|
|
4054
4060
|
# resp.layer_versions[0].description #=> String
|
|
4055
4061
|
# resp.layer_versions[0].created_date #=> Time
|
|
4056
4062
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
4057
|
-
# 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"
|
|
4063
|
+
# 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"
|
|
4058
4064
|
# resp.layer_versions[0].license_info #=> String
|
|
4059
4065
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
4060
4066
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4106,7 +4112,7 @@ module Aws::Lambda
|
|
|
4106
4112
|
# @example Request syntax with placeholder values
|
|
4107
4113
|
#
|
|
4108
4114
|
# resp = client.list_layers({
|
|
4109
|
-
# 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
|
|
4115
|
+
# 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
|
|
4110
4116
|
# marker: "String",
|
|
4111
4117
|
# max_items: 1,
|
|
4112
4118
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
@@ -4123,7 +4129,7 @@ module Aws::Lambda
|
|
|
4123
4129
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
4124
4130
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
4125
4131
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
4126
|
-
# 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"
|
|
4132
|
+
# 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"
|
|
4127
4133
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
4128
4134
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
4129
4135
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4285,7 +4291,7 @@ module Aws::Lambda
|
|
|
4285
4291
|
# resp.versions #=> Array
|
|
4286
4292
|
# resp.versions[0].function_name #=> String
|
|
4287
4293
|
# resp.versions[0].function_arn #=> String
|
|
4288
|
-
# 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"
|
|
4294
|
+
# 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"
|
|
4289
4295
|
# resp.versions[0].role #=> String
|
|
4290
4296
|
# resp.versions[0].handler #=> String
|
|
4291
4297
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -4423,7 +4429,7 @@ module Aws::Lambda
|
|
|
4423
4429
|
# s3_object_version: "S3ObjectVersion",
|
|
4424
4430
|
# zip_file: "data",
|
|
4425
4431
|
# },
|
|
4426
|
-
# 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
|
|
4432
|
+
# 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
|
|
4427
4433
|
# license_info: "LicenseInfo",
|
|
4428
4434
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
4429
4435
|
# })
|
|
@@ -4441,7 +4447,7 @@ module Aws::Lambda
|
|
|
4441
4447
|
# resp.created_date #=> Time
|
|
4442
4448
|
# resp.version #=> Integer
|
|
4443
4449
|
# resp.compatible_runtimes #=> Array
|
|
4444
|
-
# 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"
|
|
4450
|
+
# 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"
|
|
4445
4451
|
# resp.license_info #=> String
|
|
4446
4452
|
# resp.compatible_architectures #=> Array
|
|
4447
4453
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4553,7 +4559,7 @@ module Aws::Lambda
|
|
|
4553
4559
|
#
|
|
4554
4560
|
# resp.function_name #=> String
|
|
4555
4561
|
# resp.function_arn #=> String
|
|
4556
|
-
# 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"
|
|
4562
|
+
# 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"
|
|
4557
4563
|
# resp.role #=> String
|
|
4558
4564
|
# resp.handler #=> String
|
|
4559
4565
|
# resp.code_size #=> Integer
|
|
@@ -5753,7 +5759,7 @@ module Aws::Lambda
|
|
|
5753
5759
|
#
|
|
5754
5760
|
# resp.function_name #=> String
|
|
5755
5761
|
# resp.function_arn #=> String
|
|
5756
|
-
# 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"
|
|
5762
|
+
# 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"
|
|
5757
5763
|
# resp.role #=> String
|
|
5758
5764
|
# resp.handler #=> String
|
|
5759
5765
|
# resp.code_size #=> Integer
|
|
@@ -6041,7 +6047,7 @@ module Aws::Lambda
|
|
|
6041
6047
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
6042
6048
|
# },
|
|
6043
6049
|
# },
|
|
6044
|
-
# 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
|
|
6050
|
+
# 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
|
|
6045
6051
|
# dead_letter_config: {
|
|
6046
6052
|
# target_arn: "ResourceArn",
|
|
6047
6053
|
# },
|
|
@@ -6074,7 +6080,7 @@ module Aws::Lambda
|
|
|
6074
6080
|
#
|
|
6075
6081
|
# resp.function_name #=> String
|
|
6076
6082
|
# resp.function_arn #=> String
|
|
6077
|
-
# 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"
|
|
6083
|
+
# 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"
|
|
6078
6084
|
# resp.role #=> String
|
|
6079
6085
|
# resp.handler #=> String
|
|
6080
6086
|
# resp.code_size #=> Integer
|
|
@@ -6356,7 +6362,7 @@ module Aws::Lambda
|
|
|
6356
6362
|
params: params,
|
|
6357
6363
|
config: config)
|
|
6358
6364
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
6359
|
-
context[:gem_version] = '1.
|
|
6365
|
+
context[:gem_version] = '1.95.0'
|
|
6360
6366
|
Seahorse::Client::Request.new(handlers, context)
|
|
6361
6367
|
end
|
|
6362
6368
|
|
|
@@ -1979,6 +1979,9 @@ module Aws::Lambda
|
|
|
1979
1979
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountFailureException)
|
|
1980
1980
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountTimeoutException)
|
|
1981
1981
|
o.errors << Shapes::ShapeRef.new(shape: EFSIOException)
|
|
1982
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartException)
|
|
1983
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartTimeoutException)
|
|
1984
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartNotReadyException)
|
|
1982
1985
|
o.errors << Shapes::ShapeRef.new(shape: EC2ThrottledException)
|
|
1983
1986
|
o.errors << Shapes::ShapeRef.new(shape: EC2AccessDeniedException)
|
|
1984
1987
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnetIDException)
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -1891,6 +1891,10 @@ module Aws::Lambda
|
|
|
1891
1891
|
# specified age. The default value is -1, which sets the maximum age
|
|
1892
1892
|
# to infinite. When the value is set to infinite, Lambda never
|
|
1893
1893
|
# discards old records.
|
|
1894
|
+
#
|
|
1895
|
+
# <note markdown="1"> The minimum value that can be set is 60 seconds.
|
|
1896
|
+
#
|
|
1897
|
+
# </note>
|
|
1894
1898
|
# @return [Integer]
|
|
1895
1899
|
#
|
|
1896
1900
|
# @!attribute [rw] bisect_batch_on_function_error
|
|
@@ -2119,7 +2123,16 @@ module Aws::Lambda
|
|
|
2119
2123
|
# @return [String]
|
|
2120
2124
|
#
|
|
2121
2125
|
# @!attribute [rw] runtime
|
|
2122
|
-
# The
|
|
2126
|
+
# The identifier of the function's [runtime][1]. Runtime is required
|
|
2127
|
+
# if the deployment package is a .zip file archive.
|
|
2128
|
+
#
|
|
2129
|
+
# The following list includes deprecated runtimes. For more
|
|
2130
|
+
# information, see [Runtime deprecation policy][2].
|
|
2131
|
+
#
|
|
2132
|
+
#
|
|
2133
|
+
#
|
|
2134
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
2135
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
2123
2136
|
# @return [String]
|
|
2124
2137
|
#
|
|
2125
2138
|
# @!attribute [rw] role
|
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.95.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-04-
|
|
11
|
+
date: 2023-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|