aws-sdk-lambda 1.165.0 → 1.166.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8e847775e9ea8c52a2f16c7bf37752597ea2cb29b615bb4c4ee7411d026e6cf
4
- data.tar.gz: fd339b6ce7114caaa0764388fbc9910ba3df9e2237b05707b2cd0e67cf190154
3
+ metadata.gz: cd244c5f7d4d9f3133b524e4ca709dac95a10dde1e496f740a9f05e0115bd138
4
+ data.tar.gz: 229ff9994ce7b816013ad34e50ea8fc1900be11604a5ef04b429aa1c78ffa08c
5
5
  SHA512:
6
- metadata.gz: 3b00ec7e70eed202c3c8d52bcf35b4a0e5aee7b78d02d2450d6d0638f0df461ac7f2e6cf95a32cdc5c2db71de235a8ef369ad88c68722fc13526f6c27c7d3ec1
7
- data.tar.gz: 394c0b0a49e8178f2066eecea2923d0938fe8631e81bf23e209a6cf603e6f2af87c33674a3227ed6992a422a2a3e3639b8b868dbed48d650c15821bf093ac55b
6
+ metadata.gz: 649f9f46269681f716c6e31be1d8c79d963e4afda7e3e979e05e5ae408a24105feba41457d867568efed59455e68809d84b5d5be5fe4457b5b08db245b6d4d94
7
+ data.tar.gz: fbbec93b193cd935ecd2a0bcb7566af4174685bd99b6d6bf05606617ca9c14ad8fb785973bb6c1fb17fdafb3d171124bb62ed403a486e30ba42915c2f623b097
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.166.0 (2025-11-19)
5
+ ------------------
6
+
7
+ * Feature - Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs.
8
+
4
9
  1.165.0 (2025-10-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.165.0
1
+ 1.166.0
@@ -682,7 +682,7 @@ module Aws::Lambda
682
682
  #
683
683
  # @option params [Boolean] :invoked_via_function_url
684
684
  # Restricts the `lambda:InvokeFunction` action to function URL calls.
685
- # When set to `true`, this prevents the principal from invoking the
685
+ # When specified, this option prevents the principal from invoking the
686
686
  # function by any means other than the function URL. For more
687
687
  # information, see [Control access to Lambda function URLs][1].
688
688
  #
@@ -1200,9 +1200,9 @@ module Aws::Lambda
1200
1200
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
1201
1201
  #
1202
1202
  # @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
1203
- # (Amazon MSK and self-managed Apache Kafka only) The provisioned mode
1204
- # configuration for the event source. For more information, see
1205
- # [provisioned mode][1].
1203
+ # (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
1204
+ # provisioned mode configuration for the event source. For more
1205
+ # information, see [provisioned mode][1].
1206
1206
  #
1207
1207
  #
1208
1208
  #
@@ -1710,6 +1710,11 @@ module Aws::Lambda
1710
1710
  # @option params [Types::LoggingConfig] :logging_config
1711
1711
  # The function's Amazon CloudWatch Logs configuration settings.
1712
1712
  #
1713
+ # @option params [Types::TenancyConfig] :tenancy_config
1714
+ # Configuration for multi-tenant applications that use Lambda functions.
1715
+ # Defines tenant isolation settings and resource allocations. Required
1716
+ # for functions supporting multiple tenants.
1717
+ #
1713
1718
  # @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1714
1719
  #
1715
1720
  # * {Types::FunctionConfiguration#function_name #function_name} => String
@@ -1748,6 +1753,7 @@ module Aws::Lambda
1748
1753
  # * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
1749
1754
  # * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
1750
1755
  # * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
1756
+ # * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
1751
1757
  #
1752
1758
  #
1753
1759
  # @example Example: To create a function
@@ -1816,7 +1822,7 @@ module Aws::Lambda
1816
1822
  #
1817
1823
  # resp = client.create_function({
1818
1824
  # function_name: "FunctionName", # required
1819
- # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
1825
+ # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25
1820
1826
  # role: "RoleArn", # required
1821
1827
  # handler: "Handler",
1822
1828
  # code: { # required
@@ -1878,13 +1884,16 @@ module Aws::Lambda
1878
1884
  # system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
1879
1885
  # log_group: "LogGroup",
1880
1886
  # },
1887
+ # tenancy_config: {
1888
+ # tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
1889
+ # },
1881
1890
  # })
1882
1891
  #
1883
1892
  # @example Response structure
1884
1893
  #
1885
1894
  # resp.function_name #=> String
1886
1895
  # resp.function_arn #=> String
1887
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
1896
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
1888
1897
  # resp.role #=> String
1889
1898
  # resp.handler #=> String
1890
1899
  # resp.code_size #=> Integer
@@ -1945,6 +1954,7 @@ module Aws::Lambda
1945
1954
  # resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
1946
1955
  # resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
1947
1956
  # resp.logging_config.log_group #=> String
1957
+ # resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
1948
1958
  #
1949
1959
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunction AWS API Documentation
1950
1960
  #
@@ -3015,7 +3025,7 @@ module Aws::Lambda
3015
3025
  #
3016
3026
  # resp.configuration.function_name #=> String
3017
3027
  # resp.configuration.function_arn #=> String
3018
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
3028
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
3019
3029
  # resp.configuration.role #=> String
3020
3030
  # resp.configuration.handler #=> String
3021
3031
  # resp.configuration.code_size #=> Integer
@@ -3076,6 +3086,7 @@ module Aws::Lambda
3076
3086
  # resp.configuration.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
3077
3087
  # resp.configuration.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
3078
3088
  # resp.configuration.logging_config.log_group #=> String
3089
+ # resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
3079
3090
  # resp.code.repository_type #=> String
3080
3091
  # resp.code.location #=> String
3081
3092
  # resp.code.image_uri #=> String
@@ -3267,6 +3278,7 @@ module Aws::Lambda
3267
3278
  # * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
3268
3279
  # * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
3269
3280
  # * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
3281
+ # * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
3270
3282
  #
3271
3283
  #
3272
3284
  # @example Example: To get a Lambda function's event source mapping
@@ -3318,7 +3330,7 @@ module Aws::Lambda
3318
3330
  #
3319
3331
  # resp.function_name #=> String
3320
3332
  # resp.function_arn #=> String
3321
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
3333
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
3322
3334
  # resp.role #=> String
3323
3335
  # resp.handler #=> String
3324
3336
  # resp.code_size #=> Integer
@@ -3379,6 +3391,7 @@ module Aws::Lambda
3379
3391
  # resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
3380
3392
  # resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
3381
3393
  # resp.logging_config.log_group #=> String
3394
+ # resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
3382
3395
  #
3383
3396
  #
3384
3397
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3651,7 +3664,7 @@ module Aws::Lambda
3651
3664
  # resp.created_date #=> Time
3652
3665
  # resp.version #=> Integer
3653
3666
  # resp.compatible_runtimes #=> Array
3654
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
3667
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
3655
3668
  # resp.license_info #=> String
3656
3669
  # resp.compatible_architectures #=> Array
3657
3670
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3732,7 +3745,7 @@ module Aws::Lambda
3732
3745
  # resp.created_date #=> Time
3733
3746
  # resp.version #=> Integer
3734
3747
  # resp.compatible_runtimes #=> Array
3735
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
3748
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
3736
3749
  # resp.license_info #=> String
3737
3750
  # resp.compatible_architectures #=> Array
3738
3751
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -3885,9 +3898,9 @@ module Aws::Lambda
3885
3898
  # * {Types::GetProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
3886
3899
  #
3887
3900
  #
3888
- # @example Example: To view a provisioned concurrency configuration
3901
+ # @example Example: To get a provisioned concurrency configuration
3889
3902
  #
3890
- # # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
3903
+ # # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
3891
3904
  # # function.
3892
3905
  #
3893
3906
  # resp = client.get_provisioned_concurrency_config({
@@ -3904,9 +3917,9 @@ module Aws::Lambda
3904
3917
  # status: "READY",
3905
3918
  # }
3906
3919
  #
3907
- # @example Example: To get a provisioned concurrency configuration
3920
+ # @example Example: To view a provisioned concurrency configuration
3908
3921
  #
3909
- # # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
3922
+ # # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
3910
3923
  # # function.
3911
3924
  #
3912
3925
  # resp = client.get_provisioned_concurrency_config({
@@ -4121,6 +4134,9 @@ module Aws::Lambda
4121
4134
  # Specify a version or alias to invoke a published version of the
4122
4135
  # function.
4123
4136
  #
4137
+ # @option params [String] :tenant_id
4138
+ # The identifier of the tenant in a multi-tenant Lambda function.
4139
+ #
4124
4140
  # @return [Types::InvocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4125
4141
  #
4126
4142
  # * {Types::InvocationResponse#status_code #status_code} => Integer
@@ -4172,6 +4188,7 @@ module Aws::Lambda
4172
4188
  # client_context: "String",
4173
4189
  # payload: "data",
4174
4190
  # qualifier: "Qualifier",
4191
+ # tenant_id: "TenantId",
4175
4192
  # })
4176
4193
  #
4177
4194
  # @example Response structure
@@ -4325,6 +4342,9 @@ module Aws::Lambda
4325
4342
  # "value" }'`. You can also specify a file path. For example, `--payload
4326
4343
  # file://payload.json`.
4327
4344
  #
4345
+ # @option params [String] :tenant_id
4346
+ # The identifier of the tenant in a multi-tenant Lambda function.
4347
+ #
4328
4348
  # @return [Types::InvokeWithResponseStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4329
4349
  #
4330
4350
  # * {Types::InvokeWithResponseStreamResponse#status_code #status_code} => Integer
@@ -4439,6 +4459,7 @@ module Aws::Lambda
4439
4459
  # client_context: "String",
4440
4460
  # qualifier: "Qualifier",
4441
4461
  # payload: "data",
4462
+ # tenant_id: "TenantId",
4442
4463
  # })
4443
4464
  #
4444
4465
  # @example Response structure
@@ -5079,7 +5100,7 @@ module Aws::Lambda
5079
5100
  # resp.functions #=> Array
5080
5101
  # resp.functions[0].function_name #=> String
5081
5102
  # resp.functions[0].function_arn #=> String
5082
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
5103
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
5083
5104
  # resp.functions[0].role #=> String
5084
5105
  # resp.functions[0].handler #=> String
5085
5106
  # resp.functions[0].code_size #=> Integer
@@ -5140,6 +5161,7 @@ module Aws::Lambda
5140
5161
  # resp.functions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
5141
5162
  # resp.functions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
5142
5163
  # resp.functions[0].logging_config.log_group #=> String
5164
+ # resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
5143
5165
  #
5144
5166
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctions AWS API Documentation
5145
5167
  #
@@ -5278,7 +5300,7 @@ module Aws::Lambda
5278
5300
  # @example Request syntax with placeholder values
5279
5301
  #
5280
5302
  # resp = client.list_layer_versions({
5281
- # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
5303
+ # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25
5282
5304
  # layer_name: "LayerName", # required
5283
5305
  # marker: "String",
5284
5306
  # max_items: 1,
@@ -5294,7 +5316,7 @@ module Aws::Lambda
5294
5316
  # resp.layer_versions[0].description #=> String
5295
5317
  # resp.layer_versions[0].created_date #=> Time
5296
5318
  # resp.layer_versions[0].compatible_runtimes #=> Array
5297
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
5319
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
5298
5320
  # resp.layer_versions[0].license_info #=> String
5299
5321
  # resp.layer_versions[0].compatible_architectures #=> Array
5300
5322
  # resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -5386,7 +5408,7 @@ module Aws::Lambda
5386
5408
  # @example Request syntax with placeholder values
5387
5409
  #
5388
5410
  # resp = client.list_layers({
5389
- # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
5411
+ # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25
5390
5412
  # marker: "String",
5391
5413
  # max_items: 1,
5392
5414
  # compatible_architecture: "x86_64", # accepts x86_64, arm64
@@ -5403,7 +5425,7 @@ module Aws::Lambda
5403
5425
  # resp.layers[0].latest_matching_version.description #=> String
5404
5426
  # resp.layers[0].latest_matching_version.created_date #=> Time
5405
5427
  # resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
5406
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
5428
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
5407
5429
  # resp.layers[0].latest_matching_version.license_info #=> String
5408
5430
  # resp.layers[0].latest_matching_version.compatible_architectures #=> Array
5409
5431
  # resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -5679,7 +5701,7 @@ module Aws::Lambda
5679
5701
  # resp.versions #=> Array
5680
5702
  # resp.versions[0].function_name #=> String
5681
5703
  # resp.versions[0].function_arn #=> String
5682
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
5704
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
5683
5705
  # resp.versions[0].role #=> String
5684
5706
  # resp.versions[0].handler #=> String
5685
5707
  # resp.versions[0].code_size #=> Integer
@@ -5740,6 +5762,7 @@ module Aws::Lambda
5740
5762
  # resp.versions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
5741
5763
  # resp.versions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
5742
5764
  # resp.versions[0].logging_config.log_group #=> String
5765
+ # resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
5743
5766
  #
5744
5767
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListVersionsByFunction AWS API Documentation
5745
5768
  #
@@ -5865,7 +5888,7 @@ module Aws::Lambda
5865
5888
  # s3_object_version: "S3ObjectVersion",
5866
5889
  # zip_file: "data",
5867
5890
  # },
5868
- # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
5891
+ # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25
5869
5892
  # license_info: "LicenseInfo",
5870
5893
  # compatible_architectures: ["x86_64"], # accepts x86_64, arm64
5871
5894
  # })
@@ -5883,7 +5906,7 @@ module Aws::Lambda
5883
5906
  # resp.created_date #=> Time
5884
5907
  # resp.version #=> Integer
5885
5908
  # resp.compatible_runtimes #=> Array
5886
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
5909
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
5887
5910
  # resp.license_info #=> String
5888
5911
  # resp.compatible_architectures #=> Array
5889
5912
  # resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
@@ -5982,6 +6005,7 @@ module Aws::Lambda
5982
6005
  # * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
5983
6006
  # * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
5984
6007
  # * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
6008
+ # * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
5985
6009
  #
5986
6010
  #
5987
6011
  # @example Example: To publish a version of a Lambda function
@@ -6036,7 +6060,7 @@ module Aws::Lambda
6036
6060
  #
6037
6061
  # resp.function_name #=> String
6038
6062
  # resp.function_arn #=> String
6039
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
6063
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
6040
6064
  # resp.role #=> String
6041
6065
  # resp.handler #=> String
6042
6066
  # resp.code_size #=> Integer
@@ -6097,6 +6121,7 @@ module Aws::Lambda
6097
6121
  # resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
6098
6122
  # resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
6099
6123
  # resp.logging_config.log_group #=> String
6124
+ # resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
6100
6125
  #
6101
6126
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishVersion AWS API Documentation
6102
6127
  #
@@ -7243,9 +7268,9 @@ module Aws::Lambda
7243
7268
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
7244
7269
  #
7245
7270
  # @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
7246
- # (Amazon MSK and self-managed Apache Kafka only) The provisioned mode
7247
- # configuration for the event source. For more information, see
7248
- # [provisioned mode][1].
7271
+ # (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
7272
+ # provisioned mode configuration for the event source. For more
7273
+ # information, see [provisioned mode][1].
7249
7274
  #
7250
7275
  #
7251
7276
  #
@@ -7603,6 +7628,7 @@ module Aws::Lambda
7603
7628
  # * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
7604
7629
  # * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
7605
7630
  # * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
7631
+ # * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
7606
7632
  #
7607
7633
  #
7608
7634
  # @example Example: To update a Lambda function's code
@@ -7656,7 +7682,7 @@ module Aws::Lambda
7656
7682
  #
7657
7683
  # resp.function_name #=> String
7658
7684
  # resp.function_arn #=> String
7659
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
7685
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
7660
7686
  # resp.role #=> String
7661
7687
  # resp.handler #=> String
7662
7688
  # resp.code_size #=> Integer
@@ -7717,6 +7743,7 @@ module Aws::Lambda
7717
7743
  # resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
7718
7744
  # resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
7719
7745
  # resp.logging_config.log_group #=> String
7746
+ # resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
7720
7747
  #
7721
7748
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionCode AWS API Documentation
7722
7749
  #
@@ -7965,6 +7992,7 @@ module Aws::Lambda
7965
7992
  # * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
7966
7993
  # * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
7967
7994
  # * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
7995
+ # * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
7968
7996
  #
7969
7997
  #
7970
7998
  # @example Example: To update a Lambda function's configuration
@@ -8016,7 +8044,7 @@ module Aws::Lambda
8016
8044
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
8017
8045
  # },
8018
8046
  # },
8019
- # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, java25, nodejs24.x, python3.14
8047
+ # 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, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25
8020
8048
  # dead_letter_config: {
8021
8049
  # target_arn: "ResourceArn",
8022
8050
  # },
@@ -8055,7 +8083,7 @@ module Aws::Lambda
8055
8083
  #
8056
8084
  # resp.function_name #=> String
8057
8085
  # resp.function_arn #=> String
8058
- # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "java25", "nodejs24.x", "python3.14"
8086
+ # 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", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25"
8059
8087
  # resp.role #=> String
8060
8088
  # resp.handler #=> String
8061
8089
  # resp.code_size #=> Integer
@@ -8116,6 +8144,7 @@ module Aws::Lambda
8116
8144
  # resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
8117
8145
  # resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
8118
8146
  # resp.logging_config.log_group #=> String
8147
+ # resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
8119
8148
  #
8120
8149
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionConfiguration AWS API Documentation
8121
8150
  #
@@ -8379,7 +8408,7 @@ module Aws::Lambda
8379
8408
  tracer: tracer
8380
8409
  )
8381
8410
  context[:gem_name] = 'aws-sdk-lambda'
8382
- context[:gem_version] = '1.165.0'
8411
+ context[:gem_version] = '1.166.0'
8383
8412
  Seahorse::Client::Request.new(handlers, context)
8384
8413
  end
8385
8414
 
@@ -369,6 +369,9 @@ module Aws::Lambda
369
369
  TagsError = Shapes::StructureShape.new(name: 'TagsError')
370
370
  TagsErrorCode = Shapes::StringShape.new(name: 'TagsErrorCode')
371
371
  TagsErrorMessage = Shapes::StringShape.new(name: 'TagsErrorMessage')
372
+ TenancyConfig = Shapes::StructureShape.new(name: 'TenancyConfig')
373
+ TenantId = Shapes::StringShape.new(name: 'TenantId')
374
+ TenantIsolationMode = Shapes::StringShape.new(name: 'TenantIsolationMode')
372
375
  ThrottleReason = Shapes::StringShape.new(name: 'ThrottleReason')
373
376
  Timeout = Shapes::IntegerShape.new(name: 'Timeout')
374
377
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
@@ -580,6 +583,7 @@ module Aws::Lambda
580
583
  CreateFunctionRequest.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "EphemeralStorage"))
581
584
  CreateFunctionRequest.add_member(:snap_start, Shapes::ShapeRef.new(shape: SnapStart, location_name: "SnapStart"))
582
585
  CreateFunctionRequest.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "LoggingConfig"))
586
+ CreateFunctionRequest.add_member(:tenancy_config, Shapes::ShapeRef.new(shape: TenancyConfig, location_name: "TenancyConfig"))
583
587
  CreateFunctionRequest.struct_class = Types::CreateFunctionRequest
584
588
 
585
589
  CreateFunctionUrlConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
@@ -814,6 +818,7 @@ module Aws::Lambda
814
818
  FunctionConfiguration.add_member(:snap_start, Shapes::ShapeRef.new(shape: SnapStartResponse, location_name: "SnapStart"))
815
819
  FunctionConfiguration.add_member(:runtime_version_config, Shapes::ShapeRef.new(shape: RuntimeVersionConfig, location_name: "RuntimeVersionConfig"))
816
820
  FunctionConfiguration.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "LoggingConfig"))
821
+ FunctionConfiguration.add_member(:tenancy_config, Shapes::ShapeRef.new(shape: TenancyConfig, location_name: "TenancyConfig"))
817
822
  FunctionConfiguration.struct_class = Types::FunctionConfiguration
818
823
 
819
824
  FunctionEventInvokeConfig.add_member(:last_modified, Shapes::ShapeRef.new(shape: Date, location_name: "LastModified"))
@@ -1014,6 +1019,7 @@ module Aws::Lambda
1014
1019
  InvocationRequest.add_member(:client_context, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amz-Client-Context"))
1015
1020
  InvocationRequest.add_member(:payload, Shapes::ShapeRef.new(shape: Blob, location_name: "Payload"))
1016
1021
  InvocationRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: Qualifier, location: "querystring", location_name: "Qualifier"))
1022
+ InvocationRequest.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location: "header", location_name: "X-Amz-Tenant-Id"))
1017
1023
  InvocationRequest.struct_class = Types::InvocationRequest
1018
1024
  InvocationRequest[:payload] = :payload
1019
1025
  InvocationRequest[:payload_member] = InvocationRequest.member(:payload)
@@ -1050,6 +1056,7 @@ module Aws::Lambda
1050
1056
  InvokeWithResponseStreamRequest.add_member(:client_context, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amz-Client-Context"))
1051
1057
  InvokeWithResponseStreamRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: Qualifier, location: "querystring", location_name: "Qualifier"))
1052
1058
  InvokeWithResponseStreamRequest.add_member(:payload, Shapes::ShapeRef.new(shape: Blob, location_name: "Payload"))
1059
+ InvokeWithResponseStreamRequest.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location: "header", location_name: "X-Amz-Tenant-Id"))
1053
1060
  InvokeWithResponseStreamRequest.struct_class = Types::InvokeWithResponseStreamRequest
1054
1061
  InvokeWithResponseStreamRequest[:payload] = :payload
1055
1062
  InvokeWithResponseStreamRequest[:payload_member] = InvokeWithResponseStreamRequest.member(:payload)
@@ -1478,6 +1485,9 @@ module Aws::Lambda
1478
1485
  TagsError.add_member(:message, Shapes::ShapeRef.new(shape: TagsErrorMessage, required: true, location_name: "Message"))
1479
1486
  TagsError.struct_class = Types::TagsError
1480
1487
 
1488
+ TenancyConfig.add_member(:tenant_isolation_mode, Shapes::ShapeRef.new(shape: TenantIsolationMode, required: true, location_name: "TenantIsolationMode"))
1489
+ TenancyConfig.struct_class = Types::TenancyConfig
1490
+
1481
1491
  TooManyRequestsException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "Retry-After"))
1482
1492
  TooManyRequestsException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
1483
1493
  TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
@@ -226,7 +226,7 @@ module Aws::Lambda
226
226
  #
227
227
  # @!attribute [rw] invoked_via_function_url
228
228
  # Restricts the `lambda:InvokeFunction` action to function URL calls.
229
- # When set to `true`, this prevents the principal from invoking the
229
+ # When specified, this option prevents the principal from invoking the
230
230
  # function by any means other than the function URL. For more
231
231
  # information, see [Control access to Lambda function URLs][1].
232
232
  #
@@ -891,9 +891,9 @@ module Aws::Lambda
891
891
  # @return [Types::EventSourceMappingMetricsConfig]
892
892
  #
893
893
  # @!attribute [rw] provisioned_poller_config
894
- # (Amazon MSK and self-managed Apache Kafka only) The provisioned mode
895
- # configuration for the event source. For more information, see
896
- # [provisioned mode][1].
894
+ # (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
895
+ # provisioned mode configuration for the event source. For more
896
+ # information, see [provisioned mode][1].
897
897
  #
898
898
  #
899
899
  #
@@ -1161,6 +1161,12 @@ module Aws::Lambda
1161
1161
  # The function's Amazon CloudWatch Logs configuration settings.
1162
1162
  # @return [Types::LoggingConfig]
1163
1163
  #
1164
+ # @!attribute [rw] tenancy_config
1165
+ # Configuration for multi-tenant applications that use Lambda
1166
+ # functions. Defines tenant isolation settings and resource
1167
+ # allocations. Required for functions supporting multiple tenants.
1168
+ # @return [Types::TenancyConfig]
1169
+ #
1164
1170
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionRequest AWS API Documentation
1165
1171
  #
1166
1172
  class CreateFunctionRequest < Struct.new(
@@ -1187,7 +1193,8 @@ module Aws::Lambda
1187
1193
  :architectures,
1188
1194
  :ephemeral_storage,
1189
1195
  :snap_start,
1190
- :logging_config)
1196
+ :logging_config,
1197
+ :tenancy_config)
1191
1198
  SENSITIVE = []
1192
1199
  include Aws::Structure
1193
1200
  end
@@ -2093,9 +2100,9 @@ module Aws::Lambda
2093
2100
  # @return [Types::EventSourceMappingMetricsConfig]
2094
2101
  #
2095
2102
  # @!attribute [rw] provisioned_poller_config
2096
- # (Amazon MSK and self-managed Apache Kafka only) The provisioned mode
2097
- # configuration for the event source. For more information, see
2098
- # [provisioned mode][1].
2103
+ # (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
2104
+ # provisioned mode configuration for the event source. For more
2105
+ # information, see [provisioned mode][1].
2099
2106
  #
2100
2107
  #
2101
2108
  #
@@ -2575,6 +2582,12 @@ module Aws::Lambda
2575
2582
  # The function's Amazon CloudWatch Logs configuration settings.
2576
2583
  # @return [Types::LoggingConfig]
2577
2584
  #
2585
+ # @!attribute [rw] tenancy_config
2586
+ # The function's tenant isolation configuration settings. Determines
2587
+ # whether the Lambda function runs on a shared or dedicated
2588
+ # infrastructure per unique tenant.
2589
+ # @return [Types::TenancyConfig]
2590
+ #
2578
2591
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionConfiguration AWS API Documentation
2579
2592
  #
2580
2593
  class FunctionConfiguration < Struct.new(
@@ -2613,7 +2626,8 @@ module Aws::Lambda
2613
2626
  :ephemeral_storage,
2614
2627
  :snap_start,
2615
2628
  :runtime_version_config,
2616
- :logging_config)
2629
+ :logging_config,
2630
+ :tenancy_config)
2617
2631
  SENSITIVE = []
2618
2632
  include Aws::Structure
2619
2633
  end
@@ -3775,6 +3789,10 @@ module Aws::Lambda
3775
3789
  # function.
3776
3790
  # @return [String]
3777
3791
  #
3792
+ # @!attribute [rw] tenant_id
3793
+ # The identifier of the tenant in a multi-tenant Lambda function.
3794
+ # @return [String]
3795
+ #
3778
3796
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/InvocationRequest AWS API Documentation
3779
3797
  #
3780
3798
  class InvocationRequest < Struct.new(
@@ -3783,7 +3801,8 @@ module Aws::Lambda
3783
3801
  :log_type,
3784
3802
  :client_context,
3785
3803
  :payload,
3786
- :qualifier)
3804
+ :qualifier,
3805
+ :tenant_id)
3787
3806
  SENSITIVE = [:payload]
3788
3807
  include Aws::Structure
3789
3808
  end
@@ -3961,6 +3980,10 @@ module Aws::Lambda
3961
3980
  # `--payload file://payload.json`.
3962
3981
  # @return [String]
3963
3982
  #
3983
+ # @!attribute [rw] tenant_id
3984
+ # The identifier of the tenant in a multi-tenant Lambda function.
3985
+ # @return [String]
3986
+ #
3964
3987
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/InvokeWithResponseStreamRequest AWS API Documentation
3965
3988
  #
3966
3989
  class InvokeWithResponseStreamRequest < Struct.new(
@@ -3969,7 +3992,8 @@ module Aws::Lambda
3969
3992
  :log_type,
3970
3993
  :client_context,
3971
3994
  :qualifier,
3972
- :payload)
3995
+ :payload,
3996
+ :tenant_id)
3973
3997
  SENSITIVE = [:payload]
3974
3998
  include Aws::Structure
3975
3999
  end
@@ -5251,8 +5275,7 @@ module Aws::Lambda
5251
5275
 
5252
5276
  # The [ provisioned mode][1] configuration for the event source. Use
5253
5277
  # Provisioned Mode to customize the minimum and maximum number of event
5254
- # pollers for your event source. An event poller is a compute unit that
5255
- # provides approximately 5 MBps of throughput.
5278
+ # pollers for your event source.
5256
5279
  #
5257
5280
  #
5258
5281
  #
@@ -5260,12 +5283,17 @@ module Aws::Lambda
5260
5283
  #
5261
5284
  # @!attribute [rw] minimum_pollers
5262
5285
  # The minimum number of event pollers this event source can scale down
5263
- # to.
5286
+ # to. For Amazon SQS events source mappings, default is 2, and minimum
5287
+ # 2 required. For Amazon MSK and self-managed Apache Kafka event
5288
+ # source mappings, default is 1.
5264
5289
  # @return [Integer]
5265
5290
  #
5266
5291
  # @!attribute [rw] maximum_pollers
5267
5292
  # The maximum number of event pollers this event source can scale up
5268
- # to.
5293
+ # to. For Amazon SQS events source mappings, default is 200, and
5294
+ # minimum value allowed is 2. For Amazon MSK and self-managed Apache
5295
+ # Kafka event source mappings, default is 200, and minimum value
5296
+ # allowed is 1.
5269
5297
  # @return [Integer]
5270
5298
  #
5271
5299
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ProvisionedPollerConfig AWS API Documentation
@@ -6423,6 +6451,25 @@ module Aws::Lambda
6423
6451
  include Aws::Structure
6424
6452
  end
6425
6453
 
6454
+ # Specifies the tenant isolation mode configuration for a Lambda
6455
+ # function. This allows you to configure specific tenant isolation
6456
+ # strategies for your function invocations. Tenant isolation
6457
+ # configuration cannot be modified after function creation.
6458
+ #
6459
+ # @!attribute [rw] tenant_isolation_mode
6460
+ # Tenant isolation mode allows for invocation to be sent to a
6461
+ # corresponding execution environment dedicated to a specific tenant
6462
+ # ID.
6463
+ # @return [String]
6464
+ #
6465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/TenancyConfig AWS API Documentation
6466
+ #
6467
+ class TenancyConfig < Struct.new(
6468
+ :tenant_isolation_mode)
6469
+ SENSITIVE = []
6470
+ include Aws::Structure
6471
+ end
6472
+
6426
6473
  # The request throughput limit was exceeded. For more information, see
6427
6474
  # [Lambda quotas][1].
6428
6475
  #
@@ -6789,9 +6836,9 @@ module Aws::Lambda
6789
6836
  # @return [Types::EventSourceMappingMetricsConfig]
6790
6837
  #
6791
6838
  # @!attribute [rw] provisioned_poller_config
6792
- # (Amazon MSK and self-managed Apache Kafka only) The provisioned mode
6793
- # configuration for the event source. For more information, see
6794
- # [provisioned mode][1].
6839
+ # (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
6840
+ # provisioned mode configuration for the event source. For more
6841
+ # information, see [provisioned mode][1].
6795
6842
  #
6796
6843
  #
6797
6844
  #
@@ -56,7 +56,7 @@ module Aws::Lambda
56
56
  autoload :Endpoints, 'aws-sdk-lambda/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-lambda/event_streams'
58
58
 
59
- GEM_VERSION = '1.165.0'
59
+ GEM_VERSION = '1.166.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -293,7 +293,7 @@ module Aws
293
293
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
294
294
  def function_name: () -> ::String
295
295
  def function_arn: () -> ::String
296
- def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
296
+ def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
297
297
  def role: () -> ::String
298
298
  def handler: () -> ::String
299
299
  def code_size: () -> ::Integer
@@ -327,11 +327,12 @@ module Aws
327
327
  def snap_start: () -> Types::SnapStartResponse
328
328
  def runtime_version_config: () -> Types::RuntimeVersionConfig
329
329
  def logging_config: () -> Types::LoggingConfig
330
+ def tenancy_config: () -> Types::TenancyConfig
330
331
  end
331
332
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
332
333
  def create_function: (
333
334
  function_name: ::String,
334
- ?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
335
+ ?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
335
336
  role: ::String,
336
337
  ?handler: ::String,
337
338
  code: {
@@ -388,6 +389,9 @@ module Aws
388
389
  application_log_level: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")?,
389
390
  system_log_level: ("DEBUG" | "INFO" | "WARN")?,
390
391
  log_group: ::String?
392
+ },
393
+ ?tenancy_config: {
394
+ tenant_isolation_mode: ("PER_TENANT")
391
395
  }
392
396
  ) -> _CreateFunctionResponseSuccess
393
397
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionResponseSuccess
@@ -639,7 +643,7 @@ module Aws
639
643
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
640
644
  def function_name: () -> ::String
641
645
  def function_arn: () -> ::String
642
- def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
646
+ def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
643
647
  def role: () -> ::String
644
648
  def handler: () -> ::String
645
649
  def code_size: () -> ::Integer
@@ -673,6 +677,7 @@ module Aws
673
677
  def snap_start: () -> Types::SnapStartResponse
674
678
  def runtime_version_config: () -> Types::RuntimeVersionConfig
675
679
  def logging_config: () -> Types::LoggingConfig
680
+ def tenancy_config: () -> Types::TenancyConfig
676
681
  end
677
682
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_configuration-instance_method
678
683
  def get_function_configuration: (
@@ -731,7 +736,7 @@ module Aws
731
736
  def description: () -> ::String
732
737
  def created_date: () -> ::Time
733
738
  def version: () -> ::Integer
734
- def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
739
+ def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
735
740
  def license_info: () -> ::String
736
741
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
737
742
  end
@@ -750,7 +755,7 @@ module Aws
750
755
  def description: () -> ::String
751
756
  def created_date: () -> ::Time
752
757
  def version: () -> ::Integer
753
- def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
758
+ def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
754
759
  def license_info: () -> ::String
755
760
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
756
761
  end
@@ -828,7 +833,8 @@ module Aws
828
833
  ?log_type: ("None" | "Tail"),
829
834
  ?client_context: ::String,
830
835
  ?payload: ::String,
831
- ?qualifier: ::String
836
+ ?qualifier: ::String,
837
+ ?tenant_id: ::String
832
838
  ) -> _InvokeResponseSuccess
833
839
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeResponseSuccess
834
840
 
@@ -857,7 +863,8 @@ module Aws
857
863
  ?log_type: ("None" | "Tail"),
858
864
  ?client_context: ::String,
859
865
  ?qualifier: ::String,
860
- ?payload: ::String
866
+ ?payload: ::String,
867
+ ?tenant_id: ::String
861
868
  ) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
862
869
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
863
870
 
@@ -961,7 +968,7 @@ module Aws
961
968
  end
962
969
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
963
970
  def list_layer_versions: (
964
- ?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
971
+ ?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
965
972
  layer_name: ::String,
966
973
  ?marker: ::String,
967
974
  ?max_items: ::Integer,
@@ -976,7 +983,7 @@ module Aws
976
983
  end
977
984
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
978
985
  def list_layers: (
979
- ?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
986
+ ?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
980
987
  ?marker: ::String,
981
988
  ?max_items: ::Integer,
982
989
  ?compatible_architecture: ("x86_64" | "arm64")
@@ -1027,7 +1034,7 @@ module Aws
1027
1034
  def description: () -> ::String
1028
1035
  def created_date: () -> ::Time
1029
1036
  def version: () -> ::Integer
1030
- def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
1037
+ def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
1031
1038
  def license_info: () -> ::String
1032
1039
  def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
1033
1040
  end
@@ -1041,7 +1048,7 @@ module Aws
1041
1048
  s3_object_version: ::String?,
1042
1049
  zip_file: ::String?
1043
1050
  },
1044
- ?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")],
1051
+ ?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")],
1045
1052
  ?license_info: ::String,
1046
1053
  ?compatible_architectures: Array[("x86_64" | "arm64")]
1047
1054
  ) -> _PublishLayerVersionResponseSuccess
@@ -1051,7 +1058,7 @@ module Aws
1051
1058
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1052
1059
  def function_name: () -> ::String
1053
1060
  def function_arn: () -> ::String
1054
- def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1061
+ def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1055
1062
  def role: () -> ::String
1056
1063
  def handler: () -> ::String
1057
1064
  def code_size: () -> ::Integer
@@ -1085,6 +1092,7 @@ module Aws
1085
1092
  def snap_start: () -> Types::SnapStartResponse
1086
1093
  def runtime_version_config: () -> Types::RuntimeVersionConfig
1087
1094
  def logging_config: () -> Types::LoggingConfig
1095
+ def tenancy_config: () -> Types::TenancyConfig
1088
1096
  end
1089
1097
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_version-instance_method
1090
1098
  def publish_version: (
@@ -1385,7 +1393,7 @@ module Aws
1385
1393
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1386
1394
  def function_name: () -> ::String
1387
1395
  def function_arn: () -> ::String
1388
- def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1396
+ def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1389
1397
  def role: () -> ::String
1390
1398
  def handler: () -> ::String
1391
1399
  def code_size: () -> ::Integer
@@ -1419,6 +1427,7 @@ module Aws
1419
1427
  def snap_start: () -> Types::SnapStartResponse
1420
1428
  def runtime_version_config: () -> Types::RuntimeVersionConfig
1421
1429
  def logging_config: () -> Types::LoggingConfig
1430
+ def tenancy_config: () -> Types::TenancyConfig
1422
1431
  end
1423
1432
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_code-instance_method
1424
1433
  def update_function_code: (
@@ -1440,7 +1449,7 @@ module Aws
1440
1449
  include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1441
1450
  def function_name: () -> ::String
1442
1451
  def function_arn: () -> ::String
1443
- def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1452
+ def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1444
1453
  def role: () -> ::String
1445
1454
  def handler: () -> ::String
1446
1455
  def code_size: () -> ::Integer
@@ -1474,6 +1483,7 @@ module Aws
1474
1483
  def snap_start: () -> Types::SnapStartResponse
1475
1484
  def runtime_version_config: () -> Types::RuntimeVersionConfig
1476
1485
  def logging_config: () -> Types::LoggingConfig
1486
+ def tenancy_config: () -> Types::TenancyConfig
1477
1487
  end
1478
1488
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_configuration-instance_method
1479
1489
  def update_function_configuration: (
@@ -1491,7 +1501,7 @@ module Aws
1491
1501
  ?environment: {
1492
1502
  variables: Hash[::String, ::String]?
1493
1503
  },
1494
- ?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14"),
1504
+ ?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
1495
1505
  ?dead_letter_config: {
1496
1506
  target_arn: ::String?
1497
1507
  },
data/sig/types.rbs CHANGED
@@ -190,7 +190,7 @@ module Aws::Lambda
190
190
 
191
191
  class CreateFunctionRequest
192
192
  attr_accessor function_name: ::String
193
- attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
193
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
194
194
  attr_accessor role: ::String
195
195
  attr_accessor handler: ::String
196
196
  attr_accessor code: Types::FunctionCode
@@ -213,6 +213,7 @@ module Aws::Lambda
213
213
  attr_accessor ephemeral_storage: Types::EphemeralStorage
214
214
  attr_accessor snap_start: Types::SnapStart
215
215
  attr_accessor logging_config: Types::LoggingConfig
216
+ attr_accessor tenancy_config: Types::TenancyConfig
216
217
  SENSITIVE: []
217
218
  end
218
219
 
@@ -468,7 +469,7 @@ module Aws::Lambda
468
469
  class FunctionConfiguration
469
470
  attr_accessor function_name: ::String
470
471
  attr_accessor function_arn: ::String
471
- attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
472
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
472
473
  attr_accessor role: ::String
473
474
  attr_accessor handler: ::String
474
475
  attr_accessor code_size: ::Integer
@@ -502,6 +503,7 @@ module Aws::Lambda
502
503
  attr_accessor snap_start: Types::SnapStartResponse
503
504
  attr_accessor runtime_version_config: Types::RuntimeVersionConfig
504
505
  attr_accessor logging_config: Types::LoggingConfig
506
+ attr_accessor tenancy_config: Types::TenancyConfig
505
507
  SENSITIVE: []
506
508
  end
507
509
 
@@ -660,7 +662,7 @@ module Aws::Lambda
660
662
  attr_accessor description: ::String
661
663
  attr_accessor created_date: ::Time
662
664
  attr_accessor version: ::Integer
663
- attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
665
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
664
666
  attr_accessor license_info: ::String
665
667
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
666
668
  SENSITIVE: []
@@ -775,6 +777,7 @@ module Aws::Lambda
775
777
  attr_accessor client_context: ::String
776
778
  attr_accessor payload: ::String
777
779
  attr_accessor qualifier: ::String
780
+ attr_accessor tenant_id: ::String
778
781
  SENSITIVE: [:payload]
779
782
  end
780
783
 
@@ -819,6 +822,7 @@ module Aws::Lambda
819
822
  attr_accessor client_context: ::String
820
823
  attr_accessor qualifier: ::String
821
824
  attr_accessor payload: ::String
825
+ attr_accessor tenant_id: ::String
822
826
  SENSITIVE: [:payload]
823
827
  end
824
828
 
@@ -903,7 +907,7 @@ module Aws::Lambda
903
907
  attr_accessor version: ::Integer
904
908
  attr_accessor description: ::String
905
909
  attr_accessor created_date: ::Time
906
- attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
910
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
907
911
  attr_accessor license_info: ::String
908
912
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
909
913
  SENSITIVE: []
@@ -1010,7 +1014,7 @@ module Aws::Lambda
1010
1014
  end
1011
1015
 
1012
1016
  class ListLayerVersionsRequest
1013
- attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1017
+ attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1014
1018
  attr_accessor layer_name: ::String
1015
1019
  attr_accessor marker: ::String
1016
1020
  attr_accessor max_items: ::Integer
@@ -1025,7 +1029,7 @@ module Aws::Lambda
1025
1029
  end
1026
1030
 
1027
1031
  class ListLayersRequest
1028
- attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1032
+ attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1029
1033
  attr_accessor marker: ::String
1030
1034
  attr_accessor max_items: ::Integer
1031
1035
  attr_accessor compatible_architecture: ("x86_64" | "arm64")
@@ -1131,7 +1135,7 @@ module Aws::Lambda
1131
1135
  attr_accessor layer_name: ::String
1132
1136
  attr_accessor description: ::String
1133
1137
  attr_accessor content: Types::LayerVersionContentInput
1134
- attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
1138
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
1135
1139
  attr_accessor license_info: ::String
1136
1140
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1137
1141
  SENSITIVE: []
@@ -1144,7 +1148,7 @@ module Aws::Lambda
1144
1148
  attr_accessor description: ::String
1145
1149
  attr_accessor created_date: ::Time
1146
1150
  attr_accessor version: ::Integer
1147
- attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")]
1151
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
1148
1152
  attr_accessor license_info: ::String
1149
1153
  attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1150
1154
  SENSITIVE: []
@@ -1373,6 +1377,11 @@ module Aws::Lambda
1373
1377
  SENSITIVE: []
1374
1378
  end
1375
1379
 
1380
+ class TenancyConfig
1381
+ attr_accessor tenant_isolation_mode: ("PER_TENANT")
1382
+ SENSITIVE: []
1383
+ end
1384
+
1376
1385
  class TooManyRequestsException
1377
1386
  attr_accessor retry_after_seconds: ::String
1378
1387
  attr_accessor type: ::String
@@ -1475,7 +1484,7 @@ module Aws::Lambda
1475
1484
  attr_accessor memory_size: ::Integer
1476
1485
  attr_accessor vpc_config: Types::VpcConfig
1477
1486
  attr_accessor environment: Types::Environment
1478
- attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "java25" | "nodejs24.x" | "python3.14")
1487
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
1479
1488
  attr_accessor dead_letter_config: Types::DeadLetterConfig
1480
1489
  attr_accessor kms_key_arn: ::String
1481
1490
  attr_accessor tracing_config: Types::TracingConfig
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.165.0
4
+ version: 1.166.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services