aws-sdk-lambda 1.97.0 → 1.98.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd19ba885240359a6357bd6829419e185ab8e3b11056587e4ed95a62c2d607c6
4
- data.tar.gz: 99da5d3421c7bcac9557eaa4faddabe2fc941aac4b31eefe828b93481c67298c
3
+ metadata.gz: 2b99c46b04ca25da852c9ace6408ebbde4d6686bc5c5e9b43c48c95d6186b467
4
+ data.tar.gz: 692c1537fff79bda4e87345d6fabffe175190f186075daac2b29bb273e717bac
5
5
  SHA512:
6
- metadata.gz: f70e6149a1fe4d26daed9d5a837daf173d93fc75340ed2f9d478bfc0688dfcd69f4fa2664e3e6bb36a0780d37c17afcca0caed9b6126f219a94c4289cface118
7
- data.tar.gz: d7cf24bbc4c4ae4ffcb81c9dbda5be546fa768b2746f877426ed6b20c2d1d3c60924e94425ff1473dbaa470e91d460e24f79752c1116bd9d214b053c07426bee
6
+ metadata.gz: 633d6044060c590a5d3a6fcb87d8bc52b082d4332cc206d59e7571da232ae2dd20509b8efc2110063b6edd01bb9acbb00ecb663efb18b32ae111886d51aedb6e
7
+ data.tar.gz: be0f9ba9d079594cc9cb7b061b9779930c3e6f5c98b5c8ffe021fc2cc2d3bcf1d42f134f359acb9271ec7b1107f8b768a0431a6a818da146a074f3f3594b2638
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.98.0 (2023-06-05)
5
+ ------------------
6
+
7
+ * Feature - Add Ruby 3.2 (ruby3.2) Runtime support to AWS Lambda.
8
+
4
9
  1.97.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.98.0
@@ -1279,8 +1279,12 @@ module Aws::Lambda
1279
1279
  # @option params [String] :kms_key_arn
1280
1280
  # The ARN of the Key Management Service (KMS) customer managed key
1281
1281
  # that's used to encrypt your function's [environment variables][1].
1282
- # When [Lambda SnapStart][2] is activated, this key is also used to
1283
- # encrypt your function's snapshot. If you don't provide a customer
1282
+ # When [Lambda SnapStart][2] is activated, Lambda also uses this key is
1283
+ # to encrypt your function's snapshot. If you deploy your function
1284
+ # using a container image, Lambda also uses this key to encrypt your
1285
+ # function when it's deployed. Note that this is not the same key
1286
+ # that's used to protect your container image in the Amazon Elastic
1287
+ # Container Registry (Amazon ECR). If you don't provide a customer
1284
1288
  # managed key, Lambda uses a default service key.
1285
1289
  #
1286
1290
  #
@@ -1386,7 +1390,7 @@ module Aws::Lambda
1386
1390
  #
1387
1391
  # resp = client.create_function({
1388
1392
  # function_name: "FunctionName", # required
1389
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
1393
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
1390
1394
  # role: "RoleArn", # required
1391
1395
  # handler: "Handler",
1392
1396
  # code: { # required
@@ -1446,7 +1450,7 @@ module Aws::Lambda
1446
1450
  #
1447
1451
  # resp.function_name #=> String
1448
1452
  # resp.function_arn #=> String
1449
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
1453
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
1450
1454
  # resp.role #=> String
1451
1455
  # resp.handler #=> String
1452
1456
  # resp.code_size #=> Integer
@@ -2318,7 +2322,7 @@ module Aws::Lambda
2318
2322
  #
2319
2323
  # resp.configuration.function_name #=> String
2320
2324
  # resp.configuration.function_arn #=> String
2321
- # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
2325
+ # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
2322
2326
  # resp.configuration.role #=> String
2323
2327
  # resp.configuration.handler #=> String
2324
2328
  # resp.configuration.code_size #=> Integer
@@ -2559,7 +2563,7 @@ module Aws::Lambda
2559
2563
  #
2560
2564
  # resp.function_name #=> String
2561
2565
  # resp.function_arn #=> String
2562
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
2566
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
2563
2567
  # resp.role #=> String
2564
2568
  # resp.handler #=> String
2565
2569
  # resp.code_size #=> Integer
@@ -2801,7 +2805,7 @@ module Aws::Lambda
2801
2805
  # resp.created_date #=> Time
2802
2806
  # resp.version #=> Integer
2803
2807
  # resp.compatible_runtimes #=> Array
2804
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
2808
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
2805
2809
  # resp.license_info #=> String
2806
2810
  # resp.compatible_architectures #=> Array
2807
2811
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -2856,7 +2860,7 @@ module Aws::Lambda
2856
2860
  # resp.created_date #=> Time
2857
2861
  # resp.version #=> Integer
2858
2862
  # resp.compatible_runtimes #=> Array
2859
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
2863
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
2860
2864
  # resp.license_info #=> String
2861
2865
  # resp.compatible_architectures #=> Array
2862
2866
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3899,7 +3903,7 @@ module Aws::Lambda
3899
3903
  # resp.functions #=> Array
3900
3904
  # resp.functions[0].function_name #=> String
3901
3905
  # resp.functions[0].function_arn #=> String
3902
- # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
3906
+ # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
3903
3907
  # resp.functions[0].role #=> String
3904
3908
  # resp.functions[0].handler #=> String
3905
3909
  # resp.functions[0].code_size #=> Integer
@@ -4023,6 +4027,13 @@ module Aws::Lambda
4023
4027
  # @option params [String] :compatible_runtime
4024
4028
  # A runtime identifier. For example, `go1.x`.
4025
4029
  #
4030
+ # The following list includes deprecated runtimes. For more information,
4031
+ # see [Runtime deprecation policy][1].
4032
+ #
4033
+ #
4034
+ #
4035
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4036
+ #
4026
4037
  # @option params [required, String] :layer_name
4027
4038
  # The name or Amazon Resource Name (ARN) of the layer.
4028
4039
  #
@@ -4049,7 +4060,7 @@ module Aws::Lambda
4049
4060
  # @example Request syntax with placeholder values
4050
4061
  #
4051
4062
  # resp = client.list_layer_versions({
4052
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
4063
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
4053
4064
  # layer_name: "LayerName", # required
4054
4065
  # marker: "String",
4055
4066
  # max_items: 1,
@@ -4065,7 +4076,7 @@ module Aws::Lambda
4065
4076
  # resp.layer_versions[0].description #=> String
4066
4077
  # resp.layer_versions[0].created_date #=> Time
4067
4078
  # resp.layer_versions[0].compatible_runtimes #=> Array
4068
- # resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
4079
+ # resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
4069
4080
  # resp.layer_versions[0].license_info #=> String
4070
4081
  # resp.layer_versions[0].compatible_architectures #=> Array
4071
4082
  # resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4094,6 +4105,13 @@ module Aws::Lambda
4094
4105
  # @option params [String] :compatible_runtime
4095
4106
  # A runtime identifier. For example, `go1.x`.
4096
4107
  #
4108
+ # The following list includes deprecated runtimes. For more information,
4109
+ # see [Runtime deprecation policy][1].
4110
+ #
4111
+ #
4112
+ #
4113
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4114
+ #
4097
4115
  # @option params [String] :marker
4098
4116
  # A pagination token returned by a previous call.
4099
4117
  #
@@ -4117,7 +4135,7 @@ module Aws::Lambda
4117
4135
  # @example Request syntax with placeholder values
4118
4136
  #
4119
4137
  # resp = client.list_layers({
4120
- # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
4138
+ # compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
4121
4139
  # marker: "String",
4122
4140
  # max_items: 1,
4123
4141
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -4134,7 +4152,7 @@ module Aws::Lambda
4134
4152
  # resp.layers[0].latest_matching_version.description #=> String
4135
4153
  # resp.layers[0].latest_matching_version.created_date #=> Time
4136
4154
  # resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
4137
- # resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
4155
+ # resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
4138
4156
  # resp.layers[0].latest_matching_version.license_info #=> String
4139
4157
  # resp.layers[0].latest_matching_version.compatible_architectures #=> Array
4140
4158
  # resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4296,7 +4314,7 @@ module Aws::Lambda
4296
4314
  # resp.versions #=> Array
4297
4315
  # resp.versions[0].function_name #=> String
4298
4316
  # resp.versions[0].function_arn #=> String
4299
- # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
4317
+ # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
4300
4318
  # resp.versions[0].role #=> String
4301
4319
  # resp.versions[0].handler #=> String
4302
4320
  # resp.versions[0].code_size #=> Integer
@@ -4386,9 +4404,13 @@ module Aws::Lambda
4386
4404
  # A list of compatible [function runtimes][1]. Used for filtering with
4387
4405
  # ListLayers and ListLayerVersions.
4388
4406
  #
4407
+ # The following list includes deprecated runtimes. For more information,
4408
+ # see [Runtime deprecation policy][2].
4409
+ #
4389
4410
  #
4390
4411
  #
4391
4412
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
4413
+ # [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4392
4414
  #
4393
4415
  # @option params [String] :license_info
4394
4416
  # The layer's software license. It can be any of the following:
@@ -4434,7 +4456,7 @@ module Aws::Lambda
4434
4456
  # s3_object_version: "S3ObjectVersion",
4435
4457
  # zip_file: "data",
4436
4458
  # },
4437
- # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
4459
+ # compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
4438
4460
  # license_info: "LicenseInfo",
4439
4461
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
4440
4462
  # })
@@ -4452,7 +4474,7 @@ module Aws::Lambda
4452
4474
  # resp.created_date #=> Time
4453
4475
  # resp.version #=> Integer
4454
4476
  # resp.compatible_runtimes #=> Array
4455
- # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
4477
+ # resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
4456
4478
  # resp.license_info #=> String
4457
4479
  # resp.compatible_architectures #=> Array
4458
4480
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4564,7 +4586,7 @@ module Aws::Lambda
4564
4586
  #
4565
4587
  # resp.function_name #=> String
4566
4588
  # resp.function_arn #=> String
4567
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
4589
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
4568
4590
  # resp.role #=> String
4569
4591
  # resp.handler #=> String
4570
4592
  # resp.code_size #=> Integer
@@ -5764,7 +5786,7 @@ module Aws::Lambda
5764
5786
  #
5765
5787
  # resp.function_name #=> String
5766
5788
  # resp.function_arn #=> String
5767
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
5789
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
5768
5790
  # resp.role #=> String
5769
5791
  # resp.handler #=> String
5770
5792
  # resp.code_size #=> Integer
@@ -5944,8 +5966,12 @@ module Aws::Lambda
5944
5966
  # @option params [String] :kms_key_arn
5945
5967
  # The ARN of the Key Management Service (KMS) customer managed key
5946
5968
  # that's used to encrypt your function's [environment variables][1].
5947
- # When [Lambda SnapStart][2] is activated, this key is also used to
5948
- # encrypt your function's snapshot. If you don't provide a customer
5969
+ # When [Lambda SnapStart][2] is activated, Lambda also uses this key is
5970
+ # to encrypt your function's snapshot. If you deploy your function
5971
+ # using a container image, Lambda also uses this key to encrypt your
5972
+ # function when it's deployed. Note that this is not the same key
5973
+ # that's used to protect your container image in the Amazon Elastic
5974
+ # Container Registry (Amazon ECR). If you don't provide a customer
5949
5975
  # managed key, Lambda uses a default service key.
5950
5976
  #
5951
5977
  #
@@ -6052,7 +6078,7 @@ module Aws::Lambda
6052
6078
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
6053
6079
  # },
6054
6080
  # },
6055
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
6081
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
6056
6082
  # dead_letter_config: {
6057
6083
  # target_arn: "ResourceArn",
6058
6084
  # },
@@ -6085,7 +6111,7 @@ module Aws::Lambda
6085
6111
  #
6086
6112
  # resp.function_name #=> String
6087
6113
  # resp.function_arn #=> String
6088
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
6114
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
6089
6115
  # resp.role #=> String
6090
6116
  # resp.handler #=> String
6091
6117
  # resp.code_size #=> Integer
@@ -6367,7 +6393,7 @@ module Aws::Lambda
6367
6393
  params: params,
6368
6394
  config: config)
6369
6395
  context[:gem_name] = 'aws-sdk-lambda'
6370
- context[:gem_version] = '1.97.0'
6396
+ context[:gem_version] = '1.98.0'
6371
6397
  Seahorse::Client::Request.new(handlers, context)
6372
6398
  end
6373
6399
 
@@ -979,8 +979,12 @@ module Aws::Lambda
979
979
  # @!attribute [rw] kms_key_arn
980
980
  # The ARN of the Key Management Service (KMS) customer managed key
981
981
  # that's used to encrypt your function's [environment variables][1].
982
- # When [Lambda SnapStart][2] is activated, this key is also used to
983
- # encrypt your function's snapshot. If you don't provide a customer
982
+ # When [Lambda SnapStart][2] is activated, Lambda also uses this key
983
+ # is to encrypt your function's snapshot. If you deploy your function
984
+ # using a container image, Lambda also uses this key to encrypt your
985
+ # function when it's deployed. Note that this is not the same key
986
+ # that's used to protect your container image in the Amazon Elastic
987
+ # Container Registry (Amazon ECR). If you don't provide a customer
984
988
  # managed key, Lambda uses a default service key.
985
989
  #
986
990
  #
@@ -1892,7 +1896,9 @@ module Aws::Lambda
1892
1896
  # to infinite. When the value is set to infinite, Lambda never
1893
1897
  # discards old records.
1894
1898
  #
1895
- # <note markdown="1"> The minimum value that can be set is 60 seconds.
1899
+ # <note markdown="1"> The minimum valid value for maximum record age is 60s. Although
1900
+ # values less than 60 and greater than -1 fall within the parameter's
1901
+ # absolute range, they are not allowed
1896
1902
  #
1897
1903
  # </note>
1898
1904
  # @return [Integer]
@@ -2988,6 +2994,13 @@ module Aws::Lambda
2988
2994
  #
2989
2995
  # @!attribute [rw] compatible_runtimes
2990
2996
  # The layer's compatible runtimes.
2997
+ #
2998
+ # The following list includes deprecated runtimes. For more
2999
+ # information, see [Runtime deprecation policy][1].
3000
+ #
3001
+ #
3002
+ #
3003
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
2991
3004
  # @return [Array<String>]
2992
3005
  #
2993
3006
  # @!attribute [rw] license_info
@@ -3886,6 +3899,13 @@ module Aws::Lambda
3886
3899
  #
3887
3900
  # @!attribute [rw] compatible_runtimes
3888
3901
  # The layer's compatible runtimes.
3902
+ #
3903
+ # The following list includes deprecated runtimes. For more
3904
+ # information, see [Runtime deprecation policy][1].
3905
+ #
3906
+ #
3907
+ #
3908
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
3889
3909
  # @return [Array<String>]
3890
3910
  #
3891
3911
  # @!attribute [rw] license_info
@@ -4314,6 +4334,13 @@ module Aws::Lambda
4314
4334
 
4315
4335
  # @!attribute [rw] compatible_runtime
4316
4336
  # A runtime identifier. For example, `go1.x`.
4337
+ #
4338
+ # The following list includes deprecated runtimes. For more
4339
+ # information, see [Runtime deprecation policy][1].
4340
+ #
4341
+ #
4342
+ #
4343
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4317
4344
  # @return [String]
4318
4345
  #
4319
4346
  # @!attribute [rw] layer_name
@@ -4368,6 +4395,13 @@ module Aws::Lambda
4368
4395
 
4369
4396
  # @!attribute [rw] compatible_runtime
4370
4397
  # A runtime identifier. For example, `go1.x`.
4398
+ #
4399
+ # The following list includes deprecated runtimes. For more
4400
+ # information, see [Runtime deprecation policy][1].
4401
+ #
4402
+ #
4403
+ #
4404
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4371
4405
  # @return [String]
4372
4406
  #
4373
4407
  # @!attribute [rw] marker
@@ -4704,9 +4738,13 @@ module Aws::Lambda
4704
4738
  # A list of compatible [function runtimes][1]. Used for filtering with
4705
4739
  # ListLayers and ListLayerVersions.
4706
4740
  #
4741
+ # The following list includes deprecated runtimes. For more
4742
+ # information, see [Runtime deprecation policy][2].
4743
+ #
4707
4744
  #
4708
4745
  #
4709
4746
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
4747
+ # [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4710
4748
  # @return [Array<String>]
4711
4749
  #
4712
4750
  # @!attribute [rw] license_info
@@ -4776,6 +4814,13 @@ module Aws::Lambda
4776
4814
  #
4777
4815
  # @!attribute [rw] compatible_runtimes
4778
4816
  # The layer's compatible runtimes.
4817
+ #
4818
+ # The following list includes deprecated runtimes. For more
4819
+ # information, see [Runtime deprecation policy][1].
4820
+ #
4821
+ #
4822
+ #
4823
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
4779
4824
  # @return [Array<String>]
4780
4825
  #
4781
4826
  # @!attribute [rw] license_info
@@ -6214,8 +6259,12 @@ module Aws::Lambda
6214
6259
  # @!attribute [rw] kms_key_arn
6215
6260
  # The ARN of the Key Management Service (KMS) customer managed key
6216
6261
  # that's used to encrypt your function's [environment variables][1].
6217
- # When [Lambda SnapStart][2] is activated, this key is also used to
6218
- # encrypt your function's snapshot. If you don't provide a customer
6262
+ # When [Lambda SnapStart][2] is activated, Lambda also uses this key
6263
+ # is to encrypt your function's snapshot. If you deploy your function
6264
+ # using a container image, Lambda also uses this key to encrypt your
6265
+ # function when it's deployed. Note that this is not the same key
6266
+ # that's used to protect your container image in the Amazon Elastic
6267
+ # Container Registry (Amazon ECR). If you don't provide a customer
6219
6268
  # managed key, Lambda uses a default service key.
6220
6269
  #
6221
6270
  #
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-lambda/event_streams'
54
54
  # @!group service
55
55
  module Aws::Lambda
56
56
 
57
- GEM_VERSION = '1.97.0'
57
+ GEM_VERSION = '1.98.0'
58
58
 
59
59
  end
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.97.0
4
+ version: 1.98.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-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core