aws-sdk-lambda 1.116.0 → 1.118.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: cd5e6eb11f26105cc4f7a69d17c14405a2ae6b8c58fda9808ac58fc0104c4644
4
- data.tar.gz: c9f7d0b3d706096063cdadbf1086096b47fae53ddfe5564e5e8833b92a7360f5
3
+ metadata.gz: 129f32e585cbe033b027f19c87bce765f6024b78f1337bfa55dac17805e4c5fc
4
+ data.tar.gz: 8d818dcde36a624d7bacca58377e0adc4b5d7faf618e992016a2e180dd0c1b80
5
5
  SHA512:
6
- metadata.gz: e52bf6df0c72bafff38be03c332cec44f9e46e490b02958903fcb62ecc72880cd33bf3153d6be3b0247a313498b3762539c8b5fa198982916d760498cb65565a
7
- data.tar.gz: c8735d0a2a348fe5554951cb488b5e95c0089204afd71738e9e897f24954d27a3fe3f79010ef6db26ccede01cfbf618eefffda99f72dfc171ee2b5d08e177989
6
+ metadata.gz: 120371ff4519cdde1194dd12f4b152b9e582c58960157f7608dc87357137dce978b82407bf051e5386c834e2abfbb95f29b76f8b6cdbad57875142be06fcf368
7
+ data.tar.gz: 4b600307c10949a0dab6f92947537f360d68b6e185f2a6513f754710c8e035a3bfea27c9c5fd3c027d9d6efcb2a5c8c80349522bd1155624e497fd2c92ef10ae
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.118.0 (2024-04-03)
5
+ ------------------
6
+
7
+ * Feature - Add Ruby 3.3 (ruby3.3) support to AWS Lambda
8
+
9
+ 1.117.0 (2024-03-07)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for AWS Lambda
13
+
4
14
  1.116.0 (2024-02-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.116.0
1
+ 1.118.0
@@ -500,7 +500,7 @@ module Aws::Lambda
500
500
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html
501
501
  #
502
502
  # @option params [required, String] :function_name
503
- # The name of the Lambda function, version, or alias.
503
+ # The name or ARN of the Lambda function, version, or alias.
504
504
  #
505
505
  # **Name formats**
506
506
  #
@@ -617,7 +617,7 @@ module Aws::Lambda
617
617
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
618
618
  #
619
619
  # @option params [required, String] :function_name
620
- # The name of the Lambda function.
620
+ # The name or ARN of the Lambda function.
621
621
  #
622
622
  # **Name formats**
623
623
  #
@@ -840,7 +840,7 @@ module Aws::Lambda
840
840
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
841
841
  #
842
842
  # @option params [required, String] :function_name
843
- # The name of the Lambda function.
843
+ # The name or ARN of the Lambda function.
844
844
  #
845
845
  # **Name formats**
846
846
  #
@@ -1200,7 +1200,7 @@ module Aws::Lambda
1200
1200
  # [6]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html
1201
1201
  #
1202
1202
  # @option params [required, String] :function_name
1203
- # The name of the Lambda function.
1203
+ # The name or ARN of the Lambda function.
1204
1204
  #
1205
1205
  # **Name formats**
1206
1206
  #
@@ -1345,7 +1345,7 @@ module Aws::Lambda
1345
1345
  #
1346
1346
  #
1347
1347
  #
1348
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-images.html#configuration-images-settings
1348
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
1349
1349
  #
1350
1350
  # @option params [String] :code_signing_config_arn
1351
1351
  # To enable code signing for this function, specify the ARN of a
@@ -1420,7 +1420,7 @@ module Aws::Lambda
1420
1420
  #
1421
1421
  # resp = client.create_function({
1422
1422
  # function_name: "FunctionName", # required
1423
- # 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
1423
+ # 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
1424
1424
  # role: "RoleArn", # required
1425
1425
  # handler: "Handler",
1426
1426
  # code: { # required
@@ -1487,7 +1487,7 @@ module Aws::Lambda
1487
1487
  #
1488
1488
  # resp.function_name #=> String
1489
1489
  # resp.function_arn #=> String
1490
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
1490
+ # 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"
1491
1491
  # resp.role #=> String
1492
1492
  # resp.handler #=> String
1493
1493
  # resp.code_size #=> Integer
@@ -1563,7 +1563,7 @@ module Aws::Lambda
1563
1563
  # can use to invoke your function.
1564
1564
  #
1565
1565
  # @option params [required, String] :function_name
1566
- # The name of the Lambda function.
1566
+ # The name or ARN of the Lambda function.
1567
1567
  #
1568
1568
  # **Name formats**
1569
1569
  #
@@ -1677,7 +1677,7 @@ module Aws::Lambda
1677
1677
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
1678
1678
  #
1679
1679
  # @option params [required, String] :function_name
1680
- # The name of the Lambda function.
1680
+ # The name or ARN of the Lambda function.
1681
1681
  #
1682
1682
  # **Name formats**
1683
1683
  #
@@ -1845,7 +1845,7 @@ module Aws::Lambda
1845
1845
  # you originally configured it.
1846
1846
  #
1847
1847
  # @option params [required, String] :function_name
1848
- # The name of the Lambda function or version.
1848
+ # The name or ARN of the Lambda function or version.
1849
1849
  #
1850
1850
  # **Name formats**
1851
1851
  #
@@ -1886,7 +1886,7 @@ module Aws::Lambda
1886
1886
  # Removes the code signing configuration from the function.
1887
1887
  #
1888
1888
  # @option params [required, String] :function_name
1889
- # The name of the Lambda function.
1889
+ # The name or ARN of the Lambda function.
1890
1890
  #
1891
1891
  # **Name formats**
1892
1892
  #
@@ -1920,7 +1920,7 @@ module Aws::Lambda
1920
1920
  # Removes a concurrent execution limit from a function.
1921
1921
  #
1922
1922
  # @option params [required, String] :function_name
1923
- # The name of the Lambda function.
1923
+ # The name or ARN of the Lambda function.
1924
1924
  #
1925
1925
  # **Name formats**
1926
1926
  #
@@ -1958,7 +1958,7 @@ module Aws::Lambda
1958
1958
  # PutFunctionEventInvokeConfig.
1959
1959
  #
1960
1960
  # @option params [required, String] :function_name
1961
- # The name of the Lambda function, version, or alias.
1961
+ # The name or ARN of the Lambda function, version, or alias.
1962
1962
  #
1963
1963
  # **Name formats**
1964
1964
  #
@@ -2000,7 +2000,7 @@ module Aws::Lambda
2000
2000
  # URL address.
2001
2001
  #
2002
2002
  # @option params [required, String] :function_name
2003
- # The name of the Lambda function.
2003
+ # The name or ARN of the Lambda function.
2004
2004
  #
2005
2005
  # **Name formats**
2006
2006
  #
@@ -2070,7 +2070,7 @@ module Aws::Lambda
2070
2070
  # Deletes the provisioned concurrency configuration for a function.
2071
2071
  #
2072
2072
  # @option params [required, String] :function_name
2073
- # The name of the Lambda function.
2073
+ # The name or ARN of the Lambda function.
2074
2074
  #
2075
2075
  # **Name formats**
2076
2076
  #
@@ -2143,7 +2143,7 @@ module Aws::Lambda
2143
2143
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
2144
2144
  #
2145
2145
  # @option params [required, String] :function_name
2146
- # The name of the Lambda function.
2146
+ # The name or ARN of the Lambda function.
2147
2147
  #
2148
2148
  # **Name formats**
2149
2149
  #
@@ -2327,7 +2327,7 @@ module Aws::Lambda
2327
2327
  # that version are returned.
2328
2328
  #
2329
2329
  # @option params [required, String] :function_name
2330
- # The name of the Lambda function, version, or alias.
2330
+ # The name or ARN of the Lambda function, version, or alias.
2331
2331
  #
2332
2332
  # **Name formats**
2333
2333
  #
@@ -2365,7 +2365,7 @@ module Aws::Lambda
2365
2365
  #
2366
2366
  # resp.configuration.function_name #=> String
2367
2367
  # resp.configuration.function_arn #=> String
2368
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2368
+ # 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"
2369
2369
  # resp.configuration.role #=> String
2370
2370
  # resp.configuration.handler #=> String
2371
2371
  # resp.configuration.code_size #=> Integer
@@ -2453,7 +2453,7 @@ module Aws::Lambda
2453
2453
  # Returns the code signing configuration for the specified function.
2454
2454
  #
2455
2455
  # @option params [required, String] :function_name
2456
- # The name of the Lambda function.
2456
+ # The name or ARN of the Lambda function.
2457
2457
  #
2458
2458
  # **Name formats**
2459
2459
  #
@@ -2497,7 +2497,7 @@ module Aws::Lambda
2497
2497
  # PutFunctionConcurrency.
2498
2498
  #
2499
2499
  # @option params [required, String] :function_name
2500
- # The name of the Lambda function.
2500
+ # The name or ARN of the Lambda function.
2501
2501
  #
2502
2502
  # **Name formats**
2503
2503
  #
@@ -2542,7 +2542,7 @@ module Aws::Lambda
2542
2542
  # settings, use GetFunction.
2543
2543
  #
2544
2544
  # @option params [required, String] :function_name
2545
- # The name of the Lambda function, version, or alias.
2545
+ # The name or ARN of the Lambda function, version, or alias.
2546
2546
  #
2547
2547
  # **Name formats**
2548
2548
  #
@@ -2612,7 +2612,7 @@ module Aws::Lambda
2612
2612
  #
2613
2613
  # resp.function_name #=> String
2614
2614
  # resp.function_arn #=> String
2615
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2615
+ # 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"
2616
2616
  # resp.role #=> String
2617
2617
  # resp.handler #=> String
2618
2618
  # resp.code_size #=> Integer
@@ -2697,7 +2697,7 @@ module Aws::Lambda
2697
2697
  # PutFunctionEventInvokeConfig.
2698
2698
  #
2699
2699
  # @option params [required, String] :function_name
2700
- # The name of the Lambda function, version, or alias.
2700
+ # The name or ARN of the Lambda function, version, or alias.
2701
2701
  #
2702
2702
  # **Name formats**
2703
2703
  #
@@ -2752,7 +2752,7 @@ module Aws::Lambda
2752
2752
  # Returns details about a Lambda function URL.
2753
2753
  #
2754
2754
  # @option params [required, String] :function_name
2755
- # The name of the Lambda function.
2755
+ # The name or ARN of the Lambda function.
2756
2756
  #
2757
2757
  # **Name formats**
2758
2758
  #
@@ -2859,7 +2859,7 @@ module Aws::Lambda
2859
2859
  # resp.created_date #=> Time
2860
2860
  # resp.version #=> Integer
2861
2861
  # resp.compatible_runtimes #=> Array
2862
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2862
+ # 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"
2863
2863
  # resp.license_info #=> String
2864
2864
  # resp.compatible_architectures #=> Array
2865
2865
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -2914,7 +2914,7 @@ module Aws::Lambda
2914
2914
  # resp.created_date #=> Time
2915
2915
  # resp.version #=> Integer
2916
2916
  # resp.compatible_runtimes #=> Array
2917
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
2917
+ # 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"
2918
2918
  # resp.license_info #=> String
2919
2919
  # resp.compatible_architectures #=> Array
2920
2920
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -2975,7 +2975,7 @@ module Aws::Lambda
2975
2975
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html
2976
2976
  #
2977
2977
  # @option params [required, String] :function_name
2978
- # The name of the Lambda function, version, or alias.
2978
+ # The name or ARN of the Lambda function, version, or alias.
2979
2979
  #
2980
2980
  # **Name formats**
2981
2981
  #
@@ -3024,7 +3024,7 @@ module Aws::Lambda
3024
3024
  # alias or version.
3025
3025
  #
3026
3026
  # @option params [required, String] :function_name
3027
- # The name of the Lambda function.
3027
+ # The name or ARN of the Lambda function.
3028
3028
  #
3029
3029
  # **Name formats**
3030
3030
  #
@@ -3087,7 +3087,7 @@ module Aws::Lambda
3087
3087
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html
3088
3088
  #
3089
3089
  # @option params [required, String] :function_name
3090
- # The name of the Lambda function.
3090
+ # The name or ARN of the Lambda function.
3091
3091
  #
3092
3092
  # **Name formats**
3093
3093
  #
@@ -3191,7 +3191,7 @@ module Aws::Lambda
3191
3191
  # [9]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke
3192
3192
  #
3193
3193
  # @option params [required, String] :function_name
3194
- # The name of the Lambda function, version, or alias.
3194
+ # The name or ARN of the Lambda function, version, or alias.
3195
3195
  #
3196
3196
  # **Name formats**
3197
3197
  #
@@ -3290,7 +3290,7 @@ module Aws::Lambda
3290
3290
  # </note>
3291
3291
  #
3292
3292
  # @option params [required, String] :function_name
3293
- # The name of the Lambda function.
3293
+ # The name or ARN of the Lambda function.
3294
3294
  #
3295
3295
  # **Name formats**
3296
3296
  #
@@ -3346,7 +3346,7 @@ module Aws::Lambda
3346
3346
  # [3]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke
3347
3347
  #
3348
3348
  # @option params [required, String] :function_name
3349
- # The name of the Lambda function.
3349
+ # The name or ARN of the Lambda function.
3350
3350
  #
3351
3351
  # **Name formats**
3352
3352
  #
@@ -3552,7 +3552,7 @@ module Aws::Lambda
3552
3552
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
3553
3553
  #
3554
3554
  # @option params [required, String] :function_name
3555
- # The name of the Lambda function.
3555
+ # The name or ARN of the Lambda function.
3556
3556
  #
3557
3557
  # **Name formats**
3558
3558
  #
@@ -3690,7 +3690,7 @@ module Aws::Lambda
3690
3690
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#msk-multi-vpc
3691
3691
  #
3692
3692
  # @option params [String] :function_name
3693
- # The name of the Lambda function.
3693
+ # The name or ARN of the Lambda function.
3694
3694
  #
3695
3695
  # **Name formats**
3696
3696
  #
@@ -3790,7 +3790,7 @@ module Aws::Lambda
3790
3790
  # PutFunctionEventInvokeConfig.
3791
3791
  #
3792
3792
  # @option params [required, String] :function_name
3793
- # The name of the Lambda function.
3793
+ # The name or ARN of the Lambda function.
3794
3794
  #
3795
3795
  # **Name formats**
3796
3796
  #
@@ -3849,7 +3849,7 @@ module Aws::Lambda
3849
3849
  # Returns a list of Lambda function URLs for the specified function.
3850
3850
  #
3851
3851
  # @option params [required, String] :function_name
3852
- # The name of the Lambda function.
3852
+ # The name or ARN of the Lambda function.
3853
3853
  #
3854
3854
  # **Name formats**
3855
3855
  #
@@ -3973,7 +3973,7 @@ module Aws::Lambda
3973
3973
  # resp.functions #=> Array
3974
3974
  # resp.functions[0].function_name #=> String
3975
3975
  # resp.functions[0].function_arn #=> String
3976
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
3976
+ # 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"
3977
3977
  # resp.functions[0].role #=> String
3978
3978
  # resp.functions[0].handler #=> String
3979
3979
  # resp.functions[0].code_size #=> Integer
@@ -4135,7 +4135,7 @@ module Aws::Lambda
4135
4135
  # @example Request syntax with placeholder values
4136
4136
  #
4137
4137
  # resp = client.list_layer_versions({
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, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, python3.11, nodejs20.x, provided.al2023, python3.12, java21
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, 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
4139
4139
  # layer_name: "LayerName", # required
4140
4140
  # marker: "String",
4141
4141
  # max_items: 1,
@@ -4151,7 +4151,7 @@ module Aws::Lambda
4151
4151
  # resp.layer_versions[0].description #=> String
4152
4152
  # resp.layer_versions[0].created_date #=> Time
4153
4153
  # resp.layer_versions[0].compatible_runtimes #=> Array
4154
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4154
+ # 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"
4155
4155
  # resp.layer_versions[0].license_info #=> String
4156
4156
  # resp.layer_versions[0].compatible_architectures #=> Array
4157
4157
  # resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4210,7 +4210,7 @@ module Aws::Lambda
4210
4210
  # @example Request syntax with placeholder values
4211
4211
  #
4212
4212
  # resp = client.list_layers({
4213
- # 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4213
+ # 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
4214
4214
  # marker: "String",
4215
4215
  # max_items: 1,
4216
4216
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -4227,7 +4227,7 @@ module Aws::Lambda
4227
4227
  # resp.layers[0].latest_matching_version.description #=> String
4228
4228
  # resp.layers[0].latest_matching_version.created_date #=> Time
4229
4229
  # resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
4230
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4230
+ # 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"
4231
4231
  # resp.layers[0].latest_matching_version.license_info #=> String
4232
4232
  # resp.layers[0].latest_matching_version.compatible_architectures #=> Array
4233
4233
  # resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4245,7 +4245,7 @@ module Aws::Lambda
4245
4245
  # function.
4246
4246
  #
4247
4247
  # @option params [required, String] :function_name
4248
- # The name of the Lambda function.
4248
+ # The name or ARN of the Lambda function.
4249
4249
  #
4250
4250
  # **Name formats**
4251
4251
  #
@@ -4345,7 +4345,7 @@ module Aws::Lambda
4345
4345
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
4346
4346
  #
4347
4347
  # @option params [required, String] :function_name
4348
- # The name of the Lambda function.
4348
+ # The name or ARN of the Lambda function.
4349
4349
  #
4350
4350
  # **Name formats**
4351
4351
  #
@@ -4389,7 +4389,7 @@ module Aws::Lambda
4389
4389
  # resp.versions #=> Array
4390
4390
  # resp.versions[0].function_name #=> String
4391
4391
  # resp.versions[0].function_arn #=> String
4392
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4392
+ # 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"
4393
4393
  # resp.versions[0].role #=> String
4394
4394
  # resp.versions[0].handler #=> String
4395
4395
  # resp.versions[0].code_size #=> Integer
@@ -4536,7 +4536,7 @@ module Aws::Lambda
4536
4536
  # s3_object_version: "S3ObjectVersion",
4537
4537
  # zip_file: "data",
4538
4538
  # },
4539
- # 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
4539
+ # 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
4540
4540
  # license_info: "LicenseInfo",
4541
4541
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
4542
4542
  # })
@@ -4554,7 +4554,7 @@ module Aws::Lambda
4554
4554
  # resp.created_date #=> Time
4555
4555
  # resp.version #=> Integer
4556
4556
  # resp.compatible_runtimes #=> Array
4557
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4557
+ # 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"
4558
4558
  # resp.license_info #=> String
4559
4559
  # resp.compatible_architectures #=> Array
4560
4560
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -4585,7 +4585,7 @@ module Aws::Lambda
4585
4585
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html
4586
4586
  #
4587
4587
  # @option params [required, String] :function_name
4588
- # The name of the Lambda function.
4588
+ # The name or ARN of the Lambda function.
4589
4589
  #
4590
4590
  # **Name formats**
4591
4591
  #
@@ -4667,7 +4667,7 @@ module Aws::Lambda
4667
4667
  #
4668
4668
  # resp.function_name #=> String
4669
4669
  # resp.function_arn #=> String
4670
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
4670
+ # 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"
4671
4671
  # resp.role #=> String
4672
4672
  # resp.handler #=> String
4673
4673
  # resp.code_size #=> Integer
@@ -4746,7 +4746,7 @@ module Aws::Lambda
4746
4746
  # The The Amazon Resource Name (ARN) of the code signing configuration.
4747
4747
  #
4748
4748
  # @option params [required, String] :function_name
4749
- # The name of the Lambda function.
4749
+ # The name or ARN of the Lambda function.
4750
4750
  #
4751
4751
  # **Name formats**
4752
4752
  #
@@ -4806,7 +4806,7 @@ module Aws::Lambda
4806
4806
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-scaling.html
4807
4807
  #
4808
4808
  # @option params [required, String] :function_name
4809
- # The name of the Lambda function.
4809
+ # The name or ARN of the Lambda function.
4810
4810
  #
4811
4811
  # **Name formats**
4812
4812
  #
@@ -4873,7 +4873,7 @@ module Aws::Lambda
4873
4873
  # [2]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations
4874
4874
  #
4875
4875
  # @option params [required, String] :function_name
4876
- # The name of the Lambda function, version, or alias.
4876
+ # The name or ARN of the Lambda function, version, or alias.
4877
4877
  #
4878
4878
  # **Name formats**
4879
4879
  #
@@ -4961,7 +4961,7 @@ module Aws::Lambda
4961
4961
  # version.
4962
4962
  #
4963
4963
  # @option params [required, String] :function_name
4964
- # The name of the Lambda function.
4964
+ # The name or ARN of the Lambda function.
4965
4965
  #
4966
4966
  # **Name formats**
4967
4967
  #
@@ -5025,7 +5025,7 @@ module Aws::Lambda
5025
5025
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html
5026
5026
  #
5027
5027
  # @option params [required, String] :function_name
5028
- # The name of the Lambda function.
5028
+ # The name or ARN of the Lambda function.
5029
5029
  #
5030
5030
  # **Name formats**
5031
5031
  #
@@ -5157,7 +5157,7 @@ module Aws::Lambda
5157
5157
  # the output of GetPolicy.
5158
5158
  #
5159
5159
  # @option params [required, String] :function_name
5160
- # The name of the Lambda function, version, or alias.
5160
+ # The name or ARN of the Lambda function, version, or alias.
5161
5161
  #
5162
5162
  # **Name formats**
5163
5163
  #
@@ -5274,7 +5274,7 @@ module Aws::Lambda
5274
5274
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
5275
5275
  #
5276
5276
  # @option params [required, String] :function_name
5277
- # The name of the Lambda function.
5277
+ # The name or ARN of the Lambda function.
5278
5278
  #
5279
5279
  # **Name formats**
5280
5280
  #
@@ -5483,7 +5483,7 @@ module Aws::Lambda
5483
5483
  # The identifier of the event source mapping.
5484
5484
  #
5485
5485
  # @option params [String] :function_name
5486
- # The name of the Lambda function.
5486
+ # The name or ARN of the Lambda function.
5487
5487
  #
5488
5488
  # **Name formats**
5489
5489
  #
@@ -5760,7 +5760,7 @@ module Aws::Lambda
5760
5760
  # [3]: https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip
5761
5761
  #
5762
5762
  # @option params [required, String] :function_name
5763
- # The name of the Lambda function.
5763
+ # The name or ARN of the Lambda function.
5764
5764
  #
5765
5765
  # **Name formats**
5766
5766
  #
@@ -5874,7 +5874,7 @@ module Aws::Lambda
5874
5874
  #
5875
5875
  # resp.function_name #=> String
5876
5876
  # resp.function_arn #=> String
5877
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
5877
+ # 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"
5878
5878
  # resp.role #=> String
5879
5879
  # resp.handler #=> String
5880
5880
  # resp.code_size #=> Integer
@@ -5970,7 +5970,7 @@ module Aws::Lambda
5970
5970
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html
5971
5971
  #
5972
5972
  # @option params [required, String] :function_name
5973
- # The name of the Lambda function.
5973
+ # The name or ARN of the Lambda function.
5974
5974
  #
5975
5975
  # **Name formats**
5976
5976
  #
@@ -6102,7 +6102,7 @@ module Aws::Lambda
6102
6102
  #
6103
6103
  #
6104
6104
  #
6105
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html
6105
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
6106
6106
  #
6107
6107
  # @option params [Types::EphemeralStorage] :ephemeral_storage
6108
6108
  # The size of the function's `/tmp` directory in MB. The default value
@@ -6181,7 +6181,7 @@ module Aws::Lambda
6181
6181
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
6182
6182
  # },
6183
6183
  # },
6184
- # 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, python3.11, nodejs20.x, provided.al2023, python3.12, java21
6184
+ # 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
6185
6185
  # dead_letter_config: {
6186
6186
  # target_arn: "ResourceArn",
6187
6187
  # },
@@ -6220,7 +6220,7 @@ module Aws::Lambda
6220
6220
  #
6221
6221
  # resp.function_name #=> String
6222
6222
  # resp.function_arn #=> String
6223
- # 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", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21"
6223
+ # 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"
6224
6224
  # resp.role #=> String
6225
6225
  # resp.handler #=> String
6226
6226
  # resp.code_size #=> Integer
@@ -6298,7 +6298,7 @@ module Aws::Lambda
6298
6298
  # PutFunctionEventInvokeConfig.
6299
6299
  #
6300
6300
  # @option params [required, String] :function_name
6301
- # The name of the Lambda function, version, or alias.
6301
+ # The name or ARN of the Lambda function, version, or alias.
6302
6302
  #
6303
6303
  # **Name formats**
6304
6304
  #
@@ -6385,7 +6385,7 @@ module Aws::Lambda
6385
6385
  # Updates the configuration for a Lambda function URL.
6386
6386
  #
6387
6387
  # @option params [required, String] :function_name
6388
- # The name of the Lambda function.
6388
+ # The name or ARN of the Lambda function.
6389
6389
  #
6390
6390
  # **Name formats**
6391
6391
  #
@@ -6507,7 +6507,7 @@ module Aws::Lambda
6507
6507
  params: params,
6508
6508
  config: config)
6509
6509
  context[:gem_name] = 'aws-sdk-lambda'
6510
- context[:gem_version] = '1.116.0'
6510
+ context[:gem_version] = '1.118.0'
6511
6511
  Seahorse::Client::Request.new(handlers, context)
6512
6512
  end
6513
6513