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