aws-sdk-lambda 1.139.0 → 1.141.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 +72 -35
- data/lib/aws-sdk-lambda/client_api.rb +3 -0
- data/lib/aws-sdk-lambda/types.rb +109 -24
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +17 -15
- data/sig/types.rbs +12 -9
- 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: 186e21d724473bf5f05d194b03faa3c958ee42e309ecd987d0a5c598fcec3bc2
|
4
|
+
data.tar.gz: 7e6d3f65f42aac5876d461d5ff1c258f9f625a8542b93e60b095da22bb53e082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 278b2e579d855b71520b40df46762ce33bca65b52449801f383188e11bca83f3675f042630a661e4fd7e23a66c0a9c43e9944f430fd93374b9a4afbdbef552b8
|
7
|
+
data.tar.gz: c5765fef2cf32518b92a931c503e8188ad5b443346472cbfd080da67af6246934b4d9b6b84741a51af103f76eb13fa869999b935704244f406c3b6dad6e40885
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.141.0 (2024-11-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Python 3.13 (python3.13) support to AWS Lambda
|
8
|
+
|
9
|
+
1.140.0 (2024-11-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for using AWS KMS customer managed keys to encrypt AWS Lambda .zip deployment packages.
|
13
|
+
|
4
14
|
1.139.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.141.0
|
@@ -1497,19 +1497,33 @@ module Aws::Lambda
|
|
1497
1497
|
#
|
1498
1498
|
# @option params [String] :kms_key_arn
|
1499
1499
|
# The ARN of the Key Management Service (KMS) customer managed key
|
1500
|
-
# that's used to encrypt
|
1501
|
-
#
|
1502
|
-
#
|
1503
|
-
#
|
1504
|
-
#
|
1505
|
-
#
|
1506
|
-
#
|
1507
|
-
#
|
1500
|
+
# that's used to encrypt the following resources:
|
1501
|
+
#
|
1502
|
+
# * The function's [environment variables][1].
|
1503
|
+
#
|
1504
|
+
# * The function's [Lambda SnapStart][2] snapshots.
|
1505
|
+
#
|
1506
|
+
# * When used with `SourceKMSKeyArn`, the unzipped version of the .zip
|
1507
|
+
# deployment package that's used for function invocations. For more
|
1508
|
+
# information, see [ Specifying a customer managed key for Lambda][3].
|
1509
|
+
#
|
1510
|
+
# * The optimized version of the container image that's used for
|
1511
|
+
# function invocations. Note that this is not the same key that's
|
1512
|
+
# used to protect your container image in the Amazon Elastic Container
|
1513
|
+
# Registry (Amazon ECR). For more information, see [Function
|
1514
|
+
# lifecycle][4].
|
1515
|
+
#
|
1516
|
+
# If you don't provide a customer managed key, Lambda uses an [Amazon
|
1517
|
+
# Web Services owned key][5] or an [Amazon Web Services managed key][6].
|
1508
1518
|
#
|
1509
1519
|
#
|
1510
1520
|
#
|
1511
1521
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
1512
1522
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
1523
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption
|
1524
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle
|
1525
|
+
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
1526
|
+
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
|
1513
1527
|
#
|
1514
1528
|
# @option params [Types::TracingConfig] :tracing_config
|
1515
1529
|
# Set `Mode` to `Active` to sample and trace a subset of incoming
|
@@ -1681,7 +1695,7 @@ module Aws::Lambda
|
|
1681
1695
|
#
|
1682
1696
|
# resp = client.create_function({
|
1683
1697
|
# function_name: "FunctionName", # required
|
1684
|
-
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
|
1698
|
+
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13
|
1685
1699
|
# role: "RoleArn", # required
|
1686
1700
|
# handler: "Handler",
|
1687
1701
|
# code: { # required
|
@@ -1690,6 +1704,7 @@ module Aws::Lambda
|
|
1690
1704
|
# s3_key: "S3Key",
|
1691
1705
|
# s3_object_version: "S3ObjectVersion",
|
1692
1706
|
# image_uri: "String",
|
1707
|
+
# source_kms_key_arn: "KMSKeyArn",
|
1693
1708
|
# },
|
1694
1709
|
# description: "Description",
|
1695
1710
|
# timeout: 1,
|
@@ -1748,7 +1763,7 @@ module Aws::Lambda
|
|
1748
1763
|
#
|
1749
1764
|
# resp.function_name #=> String
|
1750
1765
|
# resp.function_arn #=> String
|
1751
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
1766
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
1752
1767
|
# resp.role #=> String
|
1753
1768
|
# resp.handler #=> String
|
1754
1769
|
# resp.code_size #=> Integer
|
@@ -2839,7 +2854,7 @@ module Aws::Lambda
|
|
2839
2854
|
#
|
2840
2855
|
# resp.configuration.function_name #=> String
|
2841
2856
|
# resp.configuration.function_arn #=> String
|
2842
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
2857
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
2843
2858
|
# resp.configuration.role #=> String
|
2844
2859
|
# resp.configuration.handler #=> String
|
2845
2860
|
# resp.configuration.code_size #=> Integer
|
@@ -2904,6 +2919,7 @@ module Aws::Lambda
|
|
2904
2919
|
# resp.code.location #=> String
|
2905
2920
|
# resp.code.image_uri #=> String
|
2906
2921
|
# resp.code.resolved_image_uri #=> String
|
2922
|
+
# resp.code.source_kms_key_arn #=> String
|
2907
2923
|
# resp.tags #=> Hash
|
2908
2924
|
# resp.tags["TagKey"] #=> String
|
2909
2925
|
# resp.tags_error.error_code #=> String
|
@@ -3141,7 +3157,7 @@ module Aws::Lambda
|
|
3141
3157
|
#
|
3142
3158
|
# resp.function_name #=> String
|
3143
3159
|
# resp.function_arn #=> String
|
3144
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
3160
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
3145
3161
|
# resp.role #=> String
|
3146
3162
|
# resp.handler #=> String
|
3147
3163
|
# resp.code_size #=> Integer
|
@@ -3474,7 +3490,7 @@ module Aws::Lambda
|
|
3474
3490
|
# resp.created_date #=> Time
|
3475
3491
|
# resp.version #=> Integer
|
3476
3492
|
# resp.compatible_runtimes #=> Array
|
3477
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
3493
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
3478
3494
|
# resp.license_info #=> String
|
3479
3495
|
# resp.compatible_architectures #=> Array
|
3480
3496
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -3555,7 +3571,7 @@ module Aws::Lambda
|
|
3555
3571
|
# resp.created_date #=> Time
|
3556
3572
|
# resp.version #=> Integer
|
3557
3573
|
# resp.compatible_runtimes #=> Array
|
3558
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
3574
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
3559
3575
|
# resp.license_info #=> String
|
3560
3576
|
# resp.compatible_architectures #=> Array
|
3561
3577
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -4864,7 +4880,7 @@ module Aws::Lambda
|
|
4864
4880
|
# resp.functions #=> Array
|
4865
4881
|
# resp.functions[0].function_name #=> String
|
4866
4882
|
# resp.functions[0].function_arn #=> String
|
4867
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
4883
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
4868
4884
|
# resp.functions[0].role #=> String
|
4869
4885
|
# resp.functions[0].handler #=> String
|
4870
4886
|
# resp.functions[0].code_size #=> Integer
|
@@ -5063,7 +5079,7 @@ module Aws::Lambda
|
|
5063
5079
|
# @example Request syntax with placeholder values
|
5064
5080
|
#
|
5065
5081
|
# resp = client.list_layer_versions({
|
5066
|
-
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
|
5082
|
+
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13
|
5067
5083
|
# layer_name: "LayerName", # required
|
5068
5084
|
# marker: "String",
|
5069
5085
|
# max_items: 1,
|
@@ -5079,7 +5095,7 @@ module Aws::Lambda
|
|
5079
5095
|
# resp.layer_versions[0].description #=> String
|
5080
5096
|
# resp.layer_versions[0].created_date #=> Time
|
5081
5097
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
5082
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
5098
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
5083
5099
|
# resp.layer_versions[0].license_info #=> String
|
5084
5100
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
5085
5101
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -5171,7 +5187,7 @@ module Aws::Lambda
|
|
5171
5187
|
# @example Request syntax with placeholder values
|
5172
5188
|
#
|
5173
5189
|
# resp = client.list_layers({
|
5174
|
-
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
|
5190
|
+
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13
|
5175
5191
|
# marker: "String",
|
5176
5192
|
# max_items: 1,
|
5177
5193
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
@@ -5188,7 +5204,7 @@ module Aws::Lambda
|
|
5188
5204
|
# resp.layers[0].latest_matching_version.description #=> String
|
5189
5205
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
5190
5206
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
5191
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
5207
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
5192
5208
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
5193
5209
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
5194
5210
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -5464,7 +5480,7 @@ module Aws::Lambda
|
|
5464
5480
|
# resp.versions #=> Array
|
5465
5481
|
# resp.versions[0].function_name #=> String
|
5466
5482
|
# resp.versions[0].function_arn #=> String
|
5467
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
5483
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
5468
5484
|
# resp.versions[0].role #=> String
|
5469
5485
|
# resp.versions[0].handler #=> String
|
5470
5486
|
# resp.versions[0].code_size #=> Integer
|
@@ -5650,7 +5666,7 @@ module Aws::Lambda
|
|
5650
5666
|
# s3_object_version: "S3ObjectVersion",
|
5651
5667
|
# zip_file: "data",
|
5652
5668
|
# },
|
5653
|
-
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
|
5669
|
+
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13
|
5654
5670
|
# license_info: "LicenseInfo",
|
5655
5671
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
5656
5672
|
# })
|
@@ -5668,7 +5684,7 @@ module Aws::Lambda
|
|
5668
5684
|
# resp.created_date #=> Time
|
5669
5685
|
# resp.version #=> Integer
|
5670
5686
|
# resp.compatible_runtimes #=> Array
|
5671
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
5687
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
5672
5688
|
# resp.license_info #=> String
|
5673
5689
|
# resp.compatible_architectures #=> Array
|
5674
5690
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
@@ -5821,7 +5837,7 @@ module Aws::Lambda
|
|
5821
5837
|
#
|
5822
5838
|
# resp.function_name #=> String
|
5823
5839
|
# resp.function_arn #=> String
|
5824
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
5840
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
5825
5841
|
# resp.role #=> String
|
5826
5842
|
# resp.handler #=> String
|
5827
5843
|
# resp.code_size #=> Integer
|
@@ -7237,6 +7253,12 @@ module Aws::Lambda
|
|
7237
7253
|
# string array with one of the valid values (arm64 or x86\_64). The
|
7238
7254
|
# default value is `x86_64`.
|
7239
7255
|
#
|
7256
|
+
# @option params [String] :source_kms_key_arn
|
7257
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
7258
|
+
# that's used to encrypt your function's .zip deployment package. If
|
7259
|
+
# you don't provide a customer managed key, Lambda uses an Amazon Web
|
7260
|
+
# Services managed key.
|
7261
|
+
#
|
7240
7262
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7241
7263
|
#
|
7242
7264
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
@@ -7321,13 +7343,14 @@ module Aws::Lambda
|
|
7321
7343
|
# dry_run: false,
|
7322
7344
|
# revision_id: "String",
|
7323
7345
|
# architectures: ["x86_64"], # accepts x86_64, arm64
|
7346
|
+
# source_kms_key_arn: "KMSKeyArn",
|
7324
7347
|
# })
|
7325
7348
|
#
|
7326
7349
|
# @example Response structure
|
7327
7350
|
#
|
7328
7351
|
# resp.function_name #=> String
|
7329
7352
|
# resp.function_arn #=> String
|
7330
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
7353
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
7331
7354
|
# resp.role #=> String
|
7332
7355
|
# resp.handler #=> String
|
7333
7356
|
# resp.code_size #=> Integer
|
@@ -7519,19 +7542,33 @@ module Aws::Lambda
|
|
7519
7542
|
#
|
7520
7543
|
# @option params [String] :kms_key_arn
|
7521
7544
|
# The ARN of the Key Management Service (KMS) customer managed key
|
7522
|
-
# that's used to encrypt
|
7523
|
-
#
|
7524
|
-
#
|
7525
|
-
#
|
7526
|
-
#
|
7527
|
-
#
|
7528
|
-
#
|
7529
|
-
#
|
7545
|
+
# that's used to encrypt the following resources:
|
7546
|
+
#
|
7547
|
+
# * The function's [environment variables][1].
|
7548
|
+
#
|
7549
|
+
# * The function's [Lambda SnapStart][2] snapshots.
|
7550
|
+
#
|
7551
|
+
# * When used with `SourceKMSKeyArn`, the unzipped version of the .zip
|
7552
|
+
# deployment package that's used for function invocations. For more
|
7553
|
+
# information, see [ Specifying a customer managed key for Lambda][3].
|
7554
|
+
#
|
7555
|
+
# * The optimized version of the container image that's used for
|
7556
|
+
# function invocations. Note that this is not the same key that's
|
7557
|
+
# used to protect your container image in the Amazon Elastic Container
|
7558
|
+
# Registry (Amazon ECR). For more information, see [Function
|
7559
|
+
# lifecycle][4].
|
7560
|
+
#
|
7561
|
+
# If you don't provide a customer managed key, Lambda uses an [Amazon
|
7562
|
+
# Web Services owned key][5] or an [Amazon Web Services managed key][6].
|
7530
7563
|
#
|
7531
7564
|
#
|
7532
7565
|
#
|
7533
7566
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
7534
7567
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
7568
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption
|
7569
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle
|
7570
|
+
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
7571
|
+
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
|
7535
7572
|
#
|
7536
7573
|
# @option params [Types::TracingConfig] :tracing_config
|
7537
7574
|
# Set `Mode` to `Active` to sample and trace a subset of incoming
|
@@ -7673,7 +7710,7 @@ module Aws::Lambda
|
|
7673
7710
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
7674
7711
|
# },
|
7675
7712
|
# },
|
7676
|
-
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
|
7713
|
+
# 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13
|
7677
7714
|
# dead_letter_config: {
|
7678
7715
|
# target_arn: "ResourceArn",
|
7679
7716
|
# },
|
@@ -7712,7 +7749,7 @@ module Aws::Lambda
|
|
7712
7749
|
#
|
7713
7750
|
# resp.function_name #=> String
|
7714
7751
|
# resp.function_arn #=> String
|
7715
|
-
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
|
7752
|
+
# 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13"
|
7716
7753
|
# resp.role #=> String
|
7717
7754
|
# resp.handler #=> String
|
7718
7755
|
# resp.code_size #=> Integer
|
@@ -8034,7 +8071,7 @@ module Aws::Lambda
|
|
8034
8071
|
tracer: tracer
|
8035
8072
|
)
|
8036
8073
|
context[:gem_name] = 'aws-sdk-lambda'
|
8037
|
-
context[:gem_version] = '1.
|
8074
|
+
context[:gem_version] = '1.141.0'
|
8038
8075
|
Seahorse::Client::Request.new(handlers, context)
|
8039
8076
|
end
|
8040
8077
|
|
@@ -740,12 +740,14 @@ module Aws::Lambda
|
|
740
740
|
FunctionCode.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "S3Key"))
|
741
741
|
FunctionCode.add_member(:s3_object_version, Shapes::ShapeRef.new(shape: S3ObjectVersion, location_name: "S3ObjectVersion"))
|
742
742
|
FunctionCode.add_member(:image_uri, Shapes::ShapeRef.new(shape: String, location_name: "ImageUri"))
|
743
|
+
FunctionCode.add_member(:source_kms_key_arn, Shapes::ShapeRef.new(shape: KMSKeyArn, location_name: "SourceKMSKeyArn"))
|
743
744
|
FunctionCode.struct_class = Types::FunctionCode
|
744
745
|
|
745
746
|
FunctionCodeLocation.add_member(:repository_type, Shapes::ShapeRef.new(shape: String, location_name: "RepositoryType"))
|
746
747
|
FunctionCodeLocation.add_member(:location, Shapes::ShapeRef.new(shape: String, location_name: "Location"))
|
747
748
|
FunctionCodeLocation.add_member(:image_uri, Shapes::ShapeRef.new(shape: String, location_name: "ImageUri"))
|
748
749
|
FunctionCodeLocation.add_member(:resolved_image_uri, Shapes::ShapeRef.new(shape: String, location_name: "ResolvedImageUri"))
|
750
|
+
FunctionCodeLocation.add_member(:source_kms_key_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceKMSKeyArn"))
|
749
751
|
FunctionCodeLocation.struct_class = Types::FunctionCodeLocation
|
750
752
|
|
751
753
|
FunctionConfiguration.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, location_name: "FunctionName"))
|
@@ -1490,6 +1492,7 @@ module Aws::Lambda
|
|
1490
1492
|
UpdateFunctionCodeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
1491
1493
|
UpdateFunctionCodeRequest.add_member(:revision_id, Shapes::ShapeRef.new(shape: String, location_name: "RevisionId"))
|
1492
1494
|
UpdateFunctionCodeRequest.add_member(:architectures, Shapes::ShapeRef.new(shape: ArchitecturesList, location_name: "Architectures"))
|
1495
|
+
UpdateFunctionCodeRequest.add_member(:source_kms_key_arn, Shapes::ShapeRef.new(shape: KMSKeyArn, location_name: "SourceKMSKeyArn"))
|
1493
1496
|
UpdateFunctionCodeRequest.struct_class = Types::UpdateFunctionCodeRequest
|
1494
1497
|
|
1495
1498
|
UpdateFunctionConfigurationRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -1016,19 +1016,35 @@ module Aws::Lambda
|
|
1016
1016
|
#
|
1017
1017
|
# @!attribute [rw] kms_key_arn
|
1018
1018
|
# The ARN of the Key Management Service (KMS) customer managed key
|
1019
|
-
# that's used to encrypt
|
1020
|
-
#
|
1021
|
-
#
|
1022
|
-
#
|
1023
|
-
#
|
1024
|
-
#
|
1025
|
-
#
|
1026
|
-
#
|
1019
|
+
# that's used to encrypt the following resources:
|
1020
|
+
#
|
1021
|
+
# * The function's [environment variables][1].
|
1022
|
+
#
|
1023
|
+
# * The function's [Lambda SnapStart][2] snapshots.
|
1024
|
+
#
|
1025
|
+
# * When used with `SourceKMSKeyArn`, the unzipped version of the .zip
|
1026
|
+
# deployment package that's used for function invocations. For more
|
1027
|
+
# information, see [ Specifying a customer managed key for
|
1028
|
+
# Lambda][3].
|
1029
|
+
#
|
1030
|
+
# * The optimized version of the container image that's used for
|
1031
|
+
# function invocations. Note that this is not the same key that's
|
1032
|
+
# used to protect your container image in the Amazon Elastic
|
1033
|
+
# Container Registry (Amazon ECR). For more information, see
|
1034
|
+
# [Function lifecycle][4].
|
1035
|
+
#
|
1036
|
+
# If you don't provide a customer managed key, Lambda uses an [Amazon
|
1037
|
+
# Web Services owned key][5] or an [Amazon Web Services managed
|
1038
|
+
# key][6].
|
1027
1039
|
#
|
1028
1040
|
#
|
1029
1041
|
#
|
1030
1042
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
1031
1043
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
1044
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption
|
1045
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle
|
1046
|
+
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
1047
|
+
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
|
1032
1048
|
# @return [String]
|
1033
1049
|
#
|
1034
1050
|
# @!attribute [rw] tracing_config
|
@@ -2181,6 +2197,17 @@ module Aws::Lambda
|
|
2181
2197
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html
|
2182
2198
|
# @return [String]
|
2183
2199
|
#
|
2200
|
+
# @!attribute [rw] source_kms_key_arn
|
2201
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
2202
|
+
# that's used to encrypt your function's .zip deployment package. If
|
2203
|
+
# you don't provide a customer managed key, Lambda uses an [Amazon
|
2204
|
+
# Web Services owned key][1].
|
2205
|
+
#
|
2206
|
+
#
|
2207
|
+
#
|
2208
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
2209
|
+
# @return [String]
|
2210
|
+
#
|
2184
2211
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionCode AWS API Documentation
|
2185
2212
|
#
|
2186
2213
|
class FunctionCode < Struct.new(
|
@@ -2188,7 +2215,8 @@ module Aws::Lambda
|
|
2188
2215
|
:s3_bucket,
|
2189
2216
|
:s3_key,
|
2190
2217
|
:s3_object_version,
|
2191
|
-
:image_uri
|
2218
|
+
:image_uri,
|
2219
|
+
:source_kms_key_arn)
|
2192
2220
|
SENSITIVE = [:zip_file]
|
2193
2221
|
include Aws::Structure
|
2194
2222
|
end
|
@@ -2211,13 +2239,25 @@ module Aws::Lambda
|
|
2211
2239
|
# The resolved URI for the image.
|
2212
2240
|
# @return [String]
|
2213
2241
|
#
|
2242
|
+
# @!attribute [rw] source_kms_key_arn
|
2243
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
2244
|
+
# that's used to encrypt your function's .zip deployment package. If
|
2245
|
+
# you don't provide a customer managed key, Lambda uses an [Amazon
|
2246
|
+
# Web Services owned key][1].
|
2247
|
+
#
|
2248
|
+
#
|
2249
|
+
#
|
2250
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
2251
|
+
# @return [String]
|
2252
|
+
#
|
2214
2253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionCodeLocation AWS API Documentation
|
2215
2254
|
#
|
2216
2255
|
class FunctionCodeLocation < Struct.new(
|
2217
2256
|
:repository_type,
|
2218
2257
|
:location,
|
2219
2258
|
:image_uri,
|
2220
|
-
:resolved_image_uri
|
2259
|
+
:resolved_image_uri,
|
2260
|
+
:source_kms_key_arn)
|
2221
2261
|
SENSITIVE = []
|
2222
2262
|
include Aws::Structure
|
2223
2263
|
end
|
@@ -2313,15 +2353,36 @@ module Aws::Lambda
|
|
2313
2353
|
# @return [Types::EnvironmentResponse]
|
2314
2354
|
#
|
2315
2355
|
# @!attribute [rw] kms_key_arn
|
2316
|
-
# The
|
2317
|
-
#
|
2318
|
-
#
|
2319
|
-
#
|
2356
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
2357
|
+
# that's used to encrypt the following resources:
|
2358
|
+
#
|
2359
|
+
# * The function's [environment variables][1].
|
2360
|
+
#
|
2361
|
+
# * The function's [Lambda SnapStart][2] snapshots.
|
2362
|
+
#
|
2363
|
+
# * When used with `SourceKMSKeyArn`, the unzipped version of the .zip
|
2364
|
+
# deployment package that's used for function invocations. For more
|
2365
|
+
# information, see [ Specifying a customer managed key for
|
2366
|
+
# Lambda][3].
|
2367
|
+
#
|
2368
|
+
# * The optimized version of the container image that's used for
|
2369
|
+
# function invocations. Note that this is not the same key that's
|
2370
|
+
# used to protect your container image in the Amazon Elastic
|
2371
|
+
# Container Registry (Amazon ECR). For more information, see
|
2372
|
+
# [Function lifecycle][4].
|
2373
|
+
#
|
2374
|
+
# If you don't provide a customer managed key, Lambda uses an [Amazon
|
2375
|
+
# Web Services owned key][5] or an [Amazon Web Services managed
|
2376
|
+
# key][6].
|
2320
2377
|
#
|
2321
2378
|
#
|
2322
2379
|
#
|
2323
2380
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
2324
2381
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
2382
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption
|
2383
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle
|
2384
|
+
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
2385
|
+
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
|
2325
2386
|
# @return [String]
|
2326
2387
|
#
|
2327
2388
|
# @!attribute [rw] tracing_config
|
@@ -2928,7 +2989,7 @@ module Aws::Lambda
|
|
2928
2989
|
#
|
2929
2990
|
#
|
2930
2991
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/tagging.html
|
2931
|
-
# [2]: https://docs.aws.amazon.com/
|
2992
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/api/API_ListTags.html
|
2932
2993
|
# @return [Hash<String,String>]
|
2933
2994
|
#
|
2934
2995
|
# @!attribute [rw] tags_error
|
@@ -6524,6 +6585,13 @@ module Aws::Lambda
|
|
6524
6585
|
# default value is `x86_64`.
|
6525
6586
|
# @return [Array<String>]
|
6526
6587
|
#
|
6588
|
+
# @!attribute [rw] source_kms_key_arn
|
6589
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
6590
|
+
# that's used to encrypt your function's .zip deployment package. If
|
6591
|
+
# you don't provide a customer managed key, Lambda uses an Amazon Web
|
6592
|
+
# Services managed key.
|
6593
|
+
# @return [String]
|
6594
|
+
#
|
6527
6595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionCodeRequest AWS API Documentation
|
6528
6596
|
#
|
6529
6597
|
class UpdateFunctionCodeRequest < Struct.new(
|
@@ -6536,7 +6604,8 @@ module Aws::Lambda
|
|
6536
6604
|
:publish,
|
6537
6605
|
:dry_run,
|
6538
6606
|
:revision_id,
|
6539
|
-
:architectures
|
6607
|
+
:architectures,
|
6608
|
+
:source_kms_key_arn)
|
6540
6609
|
SENSITIVE = [:zip_file]
|
6541
6610
|
include Aws::Structure
|
6542
6611
|
end
|
@@ -6648,19 +6717,35 @@ module Aws::Lambda
|
|
6648
6717
|
#
|
6649
6718
|
# @!attribute [rw] kms_key_arn
|
6650
6719
|
# The ARN of the Key Management Service (KMS) customer managed key
|
6651
|
-
# that's used to encrypt
|
6652
|
-
#
|
6653
|
-
#
|
6654
|
-
#
|
6655
|
-
#
|
6656
|
-
#
|
6657
|
-
#
|
6658
|
-
#
|
6720
|
+
# that's used to encrypt the following resources:
|
6721
|
+
#
|
6722
|
+
# * The function's [environment variables][1].
|
6723
|
+
#
|
6724
|
+
# * The function's [Lambda SnapStart][2] snapshots.
|
6725
|
+
#
|
6726
|
+
# * When used with `SourceKMSKeyArn`, the unzipped version of the .zip
|
6727
|
+
# deployment package that's used for function invocations. For more
|
6728
|
+
# information, see [ Specifying a customer managed key for
|
6729
|
+
# Lambda][3].
|
6730
|
+
#
|
6731
|
+
# * The optimized version of the container image that's used for
|
6732
|
+
# function invocations. Note that this is not the same key that's
|
6733
|
+
# used to protect your container image in the Amazon Elastic
|
6734
|
+
# Container Registry (Amazon ECR). For more information, see
|
6735
|
+
# [Function lifecycle][4].
|
6736
|
+
#
|
6737
|
+
# If you don't provide a customer managed key, Lambda uses an [Amazon
|
6738
|
+
# Web Services owned key][5] or an [Amazon Web Services managed
|
6739
|
+
# key][6].
|
6659
6740
|
#
|
6660
6741
|
#
|
6661
6742
|
#
|
6662
6743
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
6663
6744
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
6745
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/encrypt-zip-package.html#enable-zip-custom-encryption
|
6746
|
+
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-lifecycle
|
6747
|
+
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
|
6748
|
+
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
|
6664
6749
|
# @return [String]
|
6665
6750
|
#
|
6666
6751
|
# @!attribute [rw] tracing_config
|
data/lib/aws-sdk-lambda.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -250,7 +250,7 @@ module Aws
|
|
250
250
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
251
251
|
def function_name: () -> ::String
|
252
252
|
def function_arn: () -> ::String
|
253
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
253
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
254
254
|
def role: () -> ::String
|
255
255
|
def handler: () -> ::String
|
256
256
|
def code_size: () -> ::Integer
|
@@ -288,7 +288,7 @@ module Aws
|
|
288
288
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
|
289
289
|
def create_function: (
|
290
290
|
function_name: ::String,
|
291
|
-
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
|
291
|
+
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13"),
|
292
292
|
role: ::String,
|
293
293
|
?handler: ::String,
|
294
294
|
code: {
|
@@ -296,7 +296,8 @@ module Aws
|
|
296
296
|
s3_bucket: ::String?,
|
297
297
|
s3_key: ::String?,
|
298
298
|
s3_object_version: ::String?,
|
299
|
-
image_uri: ::String
|
299
|
+
image_uri: ::String?,
|
300
|
+
source_kms_key_arn: ::String?
|
300
301
|
},
|
301
302
|
?description: ::String,
|
302
303
|
?timeout: ::Integer,
|
@@ -591,7 +592,7 @@ module Aws
|
|
591
592
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
592
593
|
def function_name: () -> ::String
|
593
594
|
def function_arn: () -> ::String
|
594
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
595
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
595
596
|
def role: () -> ::String
|
596
597
|
def handler: () -> ::String
|
597
598
|
def code_size: () -> ::Integer
|
@@ -683,7 +684,7 @@ module Aws
|
|
683
684
|
def description: () -> ::String
|
684
685
|
def created_date: () -> ::Time
|
685
686
|
def version: () -> ::Integer
|
686
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
687
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
687
688
|
def license_info: () -> ::String
|
688
689
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
689
690
|
end
|
@@ -702,7 +703,7 @@ module Aws
|
|
702
703
|
def description: () -> ::String
|
703
704
|
def created_date: () -> ::Time
|
704
705
|
def version: () -> ::Integer
|
705
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
706
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
706
707
|
def license_info: () -> ::String
|
707
708
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
708
709
|
end
|
@@ -913,7 +914,7 @@ module Aws
|
|
913
914
|
end
|
914
915
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
|
915
916
|
def list_layer_versions: (
|
916
|
-
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
|
917
|
+
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13"),
|
917
918
|
layer_name: ::String,
|
918
919
|
?marker: ::String,
|
919
920
|
?max_items: ::Integer,
|
@@ -928,7 +929,7 @@ module Aws
|
|
928
929
|
end
|
929
930
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
|
930
931
|
def list_layers: (
|
931
|
-
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
|
932
|
+
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13"),
|
932
933
|
?marker: ::String,
|
933
934
|
?max_items: ::Integer,
|
934
935
|
?compatible_architecture: ("x86_64" | "arm64")
|
@@ -979,7 +980,7 @@ module Aws
|
|
979
980
|
def description: () -> ::String
|
980
981
|
def created_date: () -> ::Time
|
981
982
|
def version: () -> ::Integer
|
982
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
983
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
983
984
|
def license_info: () -> ::String
|
984
985
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
985
986
|
end
|
@@ -993,7 +994,7 @@ module Aws
|
|
993
994
|
s3_object_version: ::String?,
|
994
995
|
zip_file: ::String?
|
995
996
|
},
|
996
|
-
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")],
|
997
|
+
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")],
|
997
998
|
?license_info: ::String,
|
998
999
|
?compatible_architectures: Array[("x86_64" | "arm64")]
|
999
1000
|
) -> _PublishLayerVersionResponseSuccess
|
@@ -1003,7 +1004,7 @@ module Aws
|
|
1003
1004
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
1004
1005
|
def function_name: () -> ::String
|
1005
1006
|
def function_arn: () -> ::String
|
1006
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
1007
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
1007
1008
|
def role: () -> ::String
|
1008
1009
|
def handler: () -> ::String
|
1009
1010
|
def code_size: () -> ::Integer
|
@@ -1292,7 +1293,7 @@ module Aws
|
|
1292
1293
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
1293
1294
|
def function_name: () -> ::String
|
1294
1295
|
def function_arn: () -> ::String
|
1295
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
1296
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
1296
1297
|
def role: () -> ::String
|
1297
1298
|
def handler: () -> ::String
|
1298
1299
|
def code_size: () -> ::Integer
|
@@ -1338,7 +1339,8 @@ module Aws
|
|
1338
1339
|
?publish: bool,
|
1339
1340
|
?dry_run: bool,
|
1340
1341
|
?revision_id: ::String,
|
1341
|
-
?architectures: Array[("x86_64" | "arm64")]
|
1342
|
+
?architectures: Array[("x86_64" | "arm64")],
|
1343
|
+
?source_kms_key_arn: ::String
|
1342
1344
|
) -> _UpdateFunctionCodeResponseSuccess
|
1343
1345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionCodeResponseSuccess
|
1344
1346
|
|
@@ -1346,7 +1348,7 @@ module Aws
|
|
1346
1348
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
1347
1349
|
def function_name: () -> ::String
|
1348
1350
|
def function_arn: () -> ::String
|
1349
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
1351
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
1350
1352
|
def role: () -> ::String
|
1351
1353
|
def handler: () -> ::String
|
1352
1354
|
def code_size: () -> ::Integer
|
@@ -1397,7 +1399,7 @@ module Aws
|
|
1397
1399
|
?environment: {
|
1398
1400
|
variables: Hash[::String, ::String]?
|
1399
1401
|
},
|
1400
|
-
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21"),
|
1402
|
+
?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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13"),
|
1401
1403
|
?dead_letter_config: {
|
1402
1404
|
target_arn: ::String?
|
1403
1405
|
},
|
data/sig/types.rbs
CHANGED
@@ -186,7 +186,7 @@ module Aws::Lambda
|
|
186
186
|
|
187
187
|
class CreateFunctionRequest
|
188
188
|
attr_accessor function_name: ::String
|
189
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
189
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
190
190
|
attr_accessor role: ::String
|
191
191
|
attr_accessor handler: ::String
|
192
192
|
attr_accessor code: Types::FunctionCode
|
@@ -441,6 +441,7 @@ module Aws::Lambda
|
|
441
441
|
attr_accessor s3_key: ::String
|
442
442
|
attr_accessor s3_object_version: ::String
|
443
443
|
attr_accessor image_uri: ::String
|
444
|
+
attr_accessor source_kms_key_arn: ::String
|
444
445
|
SENSITIVE: [:zip_file]
|
445
446
|
end
|
446
447
|
|
@@ -449,13 +450,14 @@ module Aws::Lambda
|
|
449
450
|
attr_accessor location: ::String
|
450
451
|
attr_accessor image_uri: ::String
|
451
452
|
attr_accessor resolved_image_uri: ::String
|
453
|
+
attr_accessor source_kms_key_arn: ::String
|
452
454
|
SENSITIVE: []
|
453
455
|
end
|
454
456
|
|
455
457
|
class FunctionConfiguration
|
456
458
|
attr_accessor function_name: ::String
|
457
459
|
attr_accessor function_arn: ::String
|
458
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
460
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
459
461
|
attr_accessor role: ::String
|
460
462
|
attr_accessor handler: ::String
|
461
463
|
attr_accessor code_size: ::Integer
|
@@ -647,7 +649,7 @@ module Aws::Lambda
|
|
647
649
|
attr_accessor description: ::String
|
648
650
|
attr_accessor created_date: ::Time
|
649
651
|
attr_accessor version: ::Integer
|
650
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
652
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
651
653
|
attr_accessor license_info: ::String
|
652
654
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
653
655
|
SENSITIVE: []
|
@@ -871,7 +873,7 @@ module Aws::Lambda
|
|
871
873
|
attr_accessor version: ::Integer
|
872
874
|
attr_accessor description: ::String
|
873
875
|
attr_accessor created_date: ::Time
|
874
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
876
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
875
877
|
attr_accessor license_info: ::String
|
876
878
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
877
879
|
SENSITIVE: []
|
@@ -978,7 +980,7 @@ module Aws::Lambda
|
|
978
980
|
end
|
979
981
|
|
980
982
|
class ListLayerVersionsRequest
|
981
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
983
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
982
984
|
attr_accessor layer_name: ::String
|
983
985
|
attr_accessor marker: ::String
|
984
986
|
attr_accessor max_items: ::Integer
|
@@ -993,7 +995,7 @@ module Aws::Lambda
|
|
993
995
|
end
|
994
996
|
|
995
997
|
class ListLayersRequest
|
996
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
998
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
997
999
|
attr_accessor marker: ::String
|
998
1000
|
attr_accessor max_items: ::Integer
|
999
1001
|
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
@@ -1093,7 +1095,7 @@ module Aws::Lambda
|
|
1093
1095
|
attr_accessor layer_name: ::String
|
1094
1096
|
attr_accessor description: ::String
|
1095
1097
|
attr_accessor content: Types::LayerVersionContentInput
|
1096
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
1098
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
1097
1099
|
attr_accessor license_info: ::String
|
1098
1100
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
1099
1101
|
SENSITIVE: []
|
@@ -1106,7 +1108,7 @@ module Aws::Lambda
|
|
1106
1108
|
attr_accessor description: ::String
|
1107
1109
|
attr_accessor created_date: ::Time
|
1108
1110
|
attr_accessor version: ::Integer
|
1109
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
|
1111
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")]
|
1110
1112
|
attr_accessor license_info: ::String
|
1111
1113
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
1112
1114
|
SENSITIVE: []
|
@@ -1413,6 +1415,7 @@ module Aws::Lambda
|
|
1413
1415
|
attr_accessor dry_run: bool
|
1414
1416
|
attr_accessor revision_id: ::String
|
1415
1417
|
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
1418
|
+
attr_accessor source_kms_key_arn: ::String
|
1416
1419
|
SENSITIVE: [:zip_file]
|
1417
1420
|
end
|
1418
1421
|
|
@@ -1425,7 +1428,7 @@ module Aws::Lambda
|
|
1425
1428
|
attr_accessor memory_size: ::Integer
|
1426
1429
|
attr_accessor vpc_config: Types::VpcConfig
|
1427
1430
|
attr_accessor environment: Types::Environment
|
1428
|
-
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
|
1431
|
+
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" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13")
|
1429
1432
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
1430
1433
|
attr_accessor kms_key_arn: ::String
|
1431
1434
|
attr_accessor tracing_config: Types::TracingConfig
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lambda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.141.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|