aws-sdk-lambda 1.165.0 → 1.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +114 -74
- data/lib/aws-sdk-lambda/client_api.rb +12 -0
- data/lib/aws-sdk-lambda/types.rb +136 -71
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +29 -17
- data/sig/types.rbs +19 -9
- metadata +3 -3
|
@@ -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
|
|
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
|
#
|
|
@@ -946,8 +946,8 @@ module Aws::Lambda
|
|
|
946
946
|
#
|
|
947
947
|
# * [ Amazon DocumentDB][7]
|
|
948
948
|
#
|
|
949
|
-
# The following error handling options are available
|
|
950
|
-
#
|
|
949
|
+
# The following error handling options are available for stream sources
|
|
950
|
+
# (DynamoDB, Kinesis, Amazon MSK, and self-managed Apache Kafka):
|
|
951
951
|
#
|
|
952
952
|
# * `BisectBatchOnFunctionError` – If the function returns an error,
|
|
953
953
|
# split the batch in two and retry.
|
|
@@ -960,15 +960,15 @@ module Aws::Lambda
|
|
|
960
960
|
# of retries. The default value is infinite (-1). When set to infinite
|
|
961
961
|
# (-1), failed records are retried until the record expires.
|
|
962
962
|
#
|
|
963
|
-
# * `
|
|
964
|
-
#
|
|
963
|
+
# * `OnFailure` – Send discarded records to an Amazon SQS queue, Amazon
|
|
964
|
+
# SNS topic, Kafka topic, or Amazon S3 bucket. For more information,
|
|
965
|
+
# see [Adding a destination][8].
|
|
965
966
|
#
|
|
966
|
-
#
|
|
967
|
-
#
|
|
967
|
+
# The following option is available only for DynamoDB and Kinesis event
|
|
968
|
+
# sources:
|
|
968
969
|
#
|
|
969
|
-
# * `
|
|
970
|
-
#
|
|
971
|
-
# destination][8].
|
|
970
|
+
# * `ParallelizationFactor` – Process multiple batches from each shard
|
|
971
|
+
# concurrently.
|
|
972
972
|
#
|
|
973
973
|
# ^
|
|
974
974
|
#
|
|
@@ -1118,23 +1118,24 @@ module Aws::Lambda
|
|
|
1118
1118
|
# start reading. `StartingPositionTimestamp` cannot be in the future.
|
|
1119
1119
|
#
|
|
1120
1120
|
# @option params [Types::DestinationConfig] :destination_config
|
|
1121
|
-
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka
|
|
1122
|
-
# configuration object that specifies the destination of an event
|
|
1123
|
-
# Lambda processes it.
|
|
1121
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
1122
|
+
# A configuration object that specifies the destination of an event
|
|
1123
|
+
# after Lambda processes it.
|
|
1124
1124
|
#
|
|
1125
1125
|
# @option params [Integer] :maximum_record_age_in_seconds
|
|
1126
|
-
# (Kinesis
|
|
1127
|
-
# specified age. The default value is
|
|
1126
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
1127
|
+
# Discard records older than the specified age. The default value is
|
|
1128
|
+
# infinite (-1).
|
|
1128
1129
|
#
|
|
1129
1130
|
# @option params [Boolean] :bisect_batch_on_function_error
|
|
1130
|
-
# (Kinesis
|
|
1131
|
-
# split the batch in two and retry.
|
|
1131
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
1132
|
+
# If the function returns an error, split the batch in two and retry.
|
|
1132
1133
|
#
|
|
1133
1134
|
# @option params [Integer] :maximum_retry_attempts
|
|
1134
|
-
# (Kinesis
|
|
1135
|
-
# specified number of retries. The default
|
|
1136
|
-
# set to infinite (-1), failed records are
|
|
1137
|
-
# expires.
|
|
1135
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
1136
|
+
# Discard records after the specified number of retries. The default
|
|
1137
|
+
# value is infinite (-1). When set to infinite (-1), failed records are
|
|
1138
|
+
# retried until the record expires.
|
|
1138
1139
|
#
|
|
1139
1140
|
# @option params [Hash<String,String>] :tags
|
|
1140
1141
|
# A list of tags to apply to the event source mapping.
|
|
@@ -1158,8 +1159,9 @@ module Aws::Lambda
|
|
|
1158
1159
|
# The self-managed Apache Kafka cluster to receive records from.
|
|
1159
1160
|
#
|
|
1160
1161
|
# @option params [Array<String>] :function_response_types
|
|
1161
|
-
# (Kinesis, DynamoDB Streams,
|
|
1162
|
-
# type enums applied to the event
|
|
1162
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, self-managed Apache Kafka, and
|
|
1163
|
+
# Amazon SQS) A list of current response type enums applied to the event
|
|
1164
|
+
# source mapping.
|
|
1163
1165
|
#
|
|
1164
1166
|
# @option params [Types::AmazonManagedKafkaEventSourceConfig] :amazon_managed_kafka_event_source_config
|
|
1165
1167
|
# Specific configuration settings for an Amazon Managed Streaming for
|
|
@@ -1200,9 +1202,9 @@ module Aws::Lambda
|
|
|
1200
1202
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
1201
1203
|
#
|
|
1202
1204
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
1203
|
-
# (Amazon MSK and self-managed Apache Kafka only) The
|
|
1204
|
-
# configuration for the event source. For more
|
|
1205
|
-
# [provisioned mode][1].
|
|
1205
|
+
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
1206
|
+
# provisioned mode configuration for the event source. For more
|
|
1207
|
+
# information, see [provisioned mode][1].
|
|
1206
1208
|
#
|
|
1207
1209
|
#
|
|
1208
1210
|
#
|
|
@@ -1363,6 +1365,7 @@ module Aws::Lambda
|
|
|
1363
1365
|
# provisioned_poller_config: {
|
|
1364
1366
|
# minimum_pollers: 1,
|
|
1365
1367
|
# maximum_pollers: 1,
|
|
1368
|
+
# poller_group_name: "ProvisionedPollerGroupName",
|
|
1366
1369
|
# },
|
|
1367
1370
|
# })
|
|
1368
1371
|
#
|
|
@@ -1428,6 +1431,7 @@ module Aws::Lambda
|
|
|
1428
1431
|
# resp.metrics_config.metrics[0] #=> String, one of "EventCount"
|
|
1429
1432
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
1430
1433
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
1434
|
+
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
1431
1435
|
#
|
|
1432
1436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateEventSourceMapping AWS API Documentation
|
|
1433
1437
|
#
|
|
@@ -1710,6 +1714,11 @@ module Aws::Lambda
|
|
|
1710
1714
|
# @option params [Types::LoggingConfig] :logging_config
|
|
1711
1715
|
# The function's Amazon CloudWatch Logs configuration settings.
|
|
1712
1716
|
#
|
|
1717
|
+
# @option params [Types::TenancyConfig] :tenancy_config
|
|
1718
|
+
# Configuration for multi-tenant applications that use Lambda functions.
|
|
1719
|
+
# Defines tenant isolation settings and resource allocations. Required
|
|
1720
|
+
# for functions supporting multiple tenants.
|
|
1721
|
+
#
|
|
1713
1722
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1714
1723
|
#
|
|
1715
1724
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
|
@@ -1748,6 +1757,7 @@ module Aws::Lambda
|
|
|
1748
1757
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
1749
1758
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
1750
1759
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
1760
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
1751
1761
|
#
|
|
1752
1762
|
#
|
|
1753
1763
|
# @example Example: To create a function
|
|
@@ -1816,7 +1826,7 @@ module Aws::Lambda
|
|
|
1816
1826
|
#
|
|
1817
1827
|
# resp = client.create_function({
|
|
1818
1828
|
# 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,
|
|
1829
|
+
# 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
1830
|
# role: "RoleArn", # required
|
|
1821
1831
|
# handler: "Handler",
|
|
1822
1832
|
# code: { # required
|
|
@@ -1878,13 +1888,16 @@ module Aws::Lambda
|
|
|
1878
1888
|
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
1879
1889
|
# log_group: "LogGroup",
|
|
1880
1890
|
# },
|
|
1891
|
+
# tenancy_config: {
|
|
1892
|
+
# tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
|
|
1893
|
+
# },
|
|
1881
1894
|
# })
|
|
1882
1895
|
#
|
|
1883
1896
|
# @example Response structure
|
|
1884
1897
|
#
|
|
1885
1898
|
# resp.function_name #=> String
|
|
1886
1899
|
# 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", "
|
|
1900
|
+
# 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
1901
|
# resp.role #=> String
|
|
1889
1902
|
# resp.handler #=> String
|
|
1890
1903
|
# resp.code_size #=> Integer
|
|
@@ -1945,6 +1958,7 @@ module Aws::Lambda
|
|
|
1945
1958
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
1946
1959
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
1947
1960
|
# resp.logging_config.log_group #=> String
|
|
1961
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
1948
1962
|
#
|
|
1949
1963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunction AWS API Documentation
|
|
1950
1964
|
#
|
|
@@ -2273,6 +2287,7 @@ module Aws::Lambda
|
|
|
2273
2287
|
# resp.metrics_config.metrics[0] #=> String, one of "EventCount"
|
|
2274
2288
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
2275
2289
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
2290
|
+
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
2276
2291
|
#
|
|
2277
2292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteEventSourceMapping AWS API Documentation
|
|
2278
2293
|
#
|
|
@@ -2912,6 +2927,7 @@ module Aws::Lambda
|
|
|
2912
2927
|
# resp.metrics_config.metrics[0] #=> String, one of "EventCount"
|
|
2913
2928
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
2914
2929
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
2930
|
+
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
2915
2931
|
#
|
|
2916
2932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetEventSourceMapping AWS API Documentation
|
|
2917
2933
|
#
|
|
@@ -3015,7 +3031,7 @@ module Aws::Lambda
|
|
|
3015
3031
|
#
|
|
3016
3032
|
# resp.configuration.function_name #=> String
|
|
3017
3033
|
# 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", "
|
|
3034
|
+
# 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
3035
|
# resp.configuration.role #=> String
|
|
3020
3036
|
# resp.configuration.handler #=> String
|
|
3021
3037
|
# resp.configuration.code_size #=> Integer
|
|
@@ -3076,6 +3092,7 @@ module Aws::Lambda
|
|
|
3076
3092
|
# resp.configuration.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
3077
3093
|
# resp.configuration.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3078
3094
|
# resp.configuration.logging_config.log_group #=> String
|
|
3095
|
+
# resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3079
3096
|
# resp.code.repository_type #=> String
|
|
3080
3097
|
# resp.code.location #=> String
|
|
3081
3098
|
# resp.code.image_uri #=> String
|
|
@@ -3267,6 +3284,7 @@ module Aws::Lambda
|
|
|
3267
3284
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
3268
3285
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
3269
3286
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
3287
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
3270
3288
|
#
|
|
3271
3289
|
#
|
|
3272
3290
|
# @example Example: To get a Lambda function's event source mapping
|
|
@@ -3318,7 +3336,7 @@ module Aws::Lambda
|
|
|
3318
3336
|
#
|
|
3319
3337
|
# resp.function_name #=> String
|
|
3320
3338
|
# 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", "
|
|
3339
|
+
# 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
3340
|
# resp.role #=> String
|
|
3323
3341
|
# resp.handler #=> String
|
|
3324
3342
|
# resp.code_size #=> Integer
|
|
@@ -3379,6 +3397,7 @@ module Aws::Lambda
|
|
|
3379
3397
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
3380
3398
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3381
3399
|
# resp.logging_config.log_group #=> String
|
|
3400
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3382
3401
|
#
|
|
3383
3402
|
#
|
|
3384
3403
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -3651,7 +3670,7 @@ module Aws::Lambda
|
|
|
3651
3670
|
# resp.created_date #=> Time
|
|
3652
3671
|
# resp.version #=> Integer
|
|
3653
3672
|
# 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", "
|
|
3673
|
+
# 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
3674
|
# resp.license_info #=> String
|
|
3656
3675
|
# resp.compatible_architectures #=> Array
|
|
3657
3676
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3732,7 +3751,7 @@ module Aws::Lambda
|
|
|
3732
3751
|
# resp.created_date #=> Time
|
|
3733
3752
|
# resp.version #=> Integer
|
|
3734
3753
|
# 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", "
|
|
3754
|
+
# 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
3755
|
# resp.license_info #=> String
|
|
3737
3756
|
# resp.compatible_architectures #=> Array
|
|
3738
3757
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3885,9 +3904,9 @@ module Aws::Lambda
|
|
|
3885
3904
|
# * {Types::GetProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
|
|
3886
3905
|
#
|
|
3887
3906
|
#
|
|
3888
|
-
# @example Example: To
|
|
3907
|
+
# @example Example: To get a provisioned concurrency configuration
|
|
3889
3908
|
#
|
|
3890
|
-
# # The following example
|
|
3909
|
+
# # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
3891
3910
|
# # function.
|
|
3892
3911
|
#
|
|
3893
3912
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -3904,9 +3923,9 @@ module Aws::Lambda
|
|
|
3904
3923
|
# status: "READY",
|
|
3905
3924
|
# }
|
|
3906
3925
|
#
|
|
3907
|
-
# @example Example: To
|
|
3926
|
+
# @example Example: To view a provisioned concurrency configuration
|
|
3908
3927
|
#
|
|
3909
|
-
# # The following example
|
|
3928
|
+
# # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
3910
3929
|
# # function.
|
|
3911
3930
|
#
|
|
3912
3931
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -4121,6 +4140,9 @@ module Aws::Lambda
|
|
|
4121
4140
|
# Specify a version or alias to invoke a published version of the
|
|
4122
4141
|
# function.
|
|
4123
4142
|
#
|
|
4143
|
+
# @option params [String] :tenant_id
|
|
4144
|
+
# The identifier of the tenant in a multi-tenant Lambda function.
|
|
4145
|
+
#
|
|
4124
4146
|
# @return [Types::InvocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4125
4147
|
#
|
|
4126
4148
|
# * {Types::InvocationResponse#status_code #status_code} => Integer
|
|
@@ -4172,6 +4194,7 @@ module Aws::Lambda
|
|
|
4172
4194
|
# client_context: "String",
|
|
4173
4195
|
# payload: "data",
|
|
4174
4196
|
# qualifier: "Qualifier",
|
|
4197
|
+
# tenant_id: "TenantId",
|
|
4175
4198
|
# })
|
|
4176
4199
|
#
|
|
4177
4200
|
# @example Response structure
|
|
@@ -4325,6 +4348,9 @@ module Aws::Lambda
|
|
|
4325
4348
|
# "value" }'`. You can also specify a file path. For example, `--payload
|
|
4326
4349
|
# file://payload.json`.
|
|
4327
4350
|
#
|
|
4351
|
+
# @option params [String] :tenant_id
|
|
4352
|
+
# The identifier of the tenant in a multi-tenant Lambda function.
|
|
4353
|
+
#
|
|
4328
4354
|
# @return [Types::InvokeWithResponseStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4329
4355
|
#
|
|
4330
4356
|
# * {Types::InvokeWithResponseStreamResponse#status_code #status_code} => Integer
|
|
@@ -4439,6 +4465,7 @@ module Aws::Lambda
|
|
|
4439
4465
|
# client_context: "String",
|
|
4440
4466
|
# qualifier: "Qualifier",
|
|
4441
4467
|
# payload: "data",
|
|
4468
|
+
# tenant_id: "TenantId",
|
|
4442
4469
|
# })
|
|
4443
4470
|
#
|
|
4444
4471
|
# @example Response structure
|
|
@@ -4794,6 +4821,7 @@ module Aws::Lambda
|
|
|
4794
4821
|
# resp.event_source_mappings[0].metrics_config.metrics[0] #=> String, one of "EventCount"
|
|
4795
4822
|
# resp.event_source_mappings[0].provisioned_poller_config.minimum_pollers #=> Integer
|
|
4796
4823
|
# resp.event_source_mappings[0].provisioned_poller_config.maximum_pollers #=> Integer
|
|
4824
|
+
# resp.event_source_mappings[0].provisioned_poller_config.poller_group_name #=> String
|
|
4797
4825
|
#
|
|
4798
4826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListEventSourceMappings AWS API Documentation
|
|
4799
4827
|
#
|
|
@@ -5079,7 +5107,7 @@ module Aws::Lambda
|
|
|
5079
5107
|
# resp.functions #=> Array
|
|
5080
5108
|
# resp.functions[0].function_name #=> String
|
|
5081
5109
|
# 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", "
|
|
5110
|
+
# 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
5111
|
# resp.functions[0].role #=> String
|
|
5084
5112
|
# resp.functions[0].handler #=> String
|
|
5085
5113
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -5140,6 +5168,7 @@ module Aws::Lambda
|
|
|
5140
5168
|
# resp.functions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
5141
5169
|
# resp.functions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5142
5170
|
# resp.functions[0].logging_config.log_group #=> String
|
|
5171
|
+
# resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
5143
5172
|
#
|
|
5144
5173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctions AWS API Documentation
|
|
5145
5174
|
#
|
|
@@ -5278,7 +5307,7 @@ module Aws::Lambda
|
|
|
5278
5307
|
# @example Request syntax with placeholder values
|
|
5279
5308
|
#
|
|
5280
5309
|
# 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,
|
|
5310
|
+
# 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
5311
|
# layer_name: "LayerName", # required
|
|
5283
5312
|
# marker: "String",
|
|
5284
5313
|
# max_items: 1,
|
|
@@ -5294,7 +5323,7 @@ module Aws::Lambda
|
|
|
5294
5323
|
# resp.layer_versions[0].description #=> String
|
|
5295
5324
|
# resp.layer_versions[0].created_date #=> Time
|
|
5296
5325
|
# 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", "
|
|
5326
|
+
# 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
5327
|
# resp.layer_versions[0].license_info #=> String
|
|
5299
5328
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
5300
5329
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -5386,7 +5415,7 @@ module Aws::Lambda
|
|
|
5386
5415
|
# @example Request syntax with placeholder values
|
|
5387
5416
|
#
|
|
5388
5417
|
# 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,
|
|
5418
|
+
# 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
5419
|
# marker: "String",
|
|
5391
5420
|
# max_items: 1,
|
|
5392
5421
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
@@ -5403,7 +5432,7 @@ module Aws::Lambda
|
|
|
5403
5432
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
5404
5433
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
5405
5434
|
# 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", "
|
|
5435
|
+
# 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
5436
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
5408
5437
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
5409
5438
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -5679,7 +5708,7 @@ module Aws::Lambda
|
|
|
5679
5708
|
# resp.versions #=> Array
|
|
5680
5709
|
# resp.versions[0].function_name #=> String
|
|
5681
5710
|
# 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", "
|
|
5711
|
+
# 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
5712
|
# resp.versions[0].role #=> String
|
|
5684
5713
|
# resp.versions[0].handler #=> String
|
|
5685
5714
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -5740,6 +5769,7 @@ module Aws::Lambda
|
|
|
5740
5769
|
# resp.versions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
5741
5770
|
# resp.versions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5742
5771
|
# resp.versions[0].logging_config.log_group #=> String
|
|
5772
|
+
# resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
5743
5773
|
#
|
|
5744
5774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListVersionsByFunction AWS API Documentation
|
|
5745
5775
|
#
|
|
@@ -5865,7 +5895,7 @@ module Aws::Lambda
|
|
|
5865
5895
|
# s3_object_version: "S3ObjectVersion",
|
|
5866
5896
|
# zip_file: "data",
|
|
5867
5897
|
# },
|
|
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,
|
|
5898
|
+
# 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
5899
|
# license_info: "LicenseInfo",
|
|
5870
5900
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
5871
5901
|
# })
|
|
@@ -5883,7 +5913,7 @@ module Aws::Lambda
|
|
|
5883
5913
|
# resp.created_date #=> Time
|
|
5884
5914
|
# resp.version #=> Integer
|
|
5885
5915
|
# 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", "
|
|
5916
|
+
# 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
5917
|
# resp.license_info #=> String
|
|
5888
5918
|
# resp.compatible_architectures #=> Array
|
|
5889
5919
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -5982,6 +6012,7 @@ module Aws::Lambda
|
|
|
5982
6012
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
5983
6013
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
5984
6014
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
6015
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
5985
6016
|
#
|
|
5986
6017
|
#
|
|
5987
6018
|
# @example Example: To publish a version of a Lambda function
|
|
@@ -6036,7 +6067,7 @@ module Aws::Lambda
|
|
|
6036
6067
|
#
|
|
6037
6068
|
# resp.function_name #=> String
|
|
6038
6069
|
# 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", "
|
|
6070
|
+
# 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
6071
|
# resp.role #=> String
|
|
6041
6072
|
# resp.handler #=> String
|
|
6042
6073
|
# resp.code_size #=> Integer
|
|
@@ -6097,6 +6128,7 @@ module Aws::Lambda
|
|
|
6097
6128
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
6098
6129
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
6099
6130
|
# resp.logging_config.log_group #=> String
|
|
6131
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6100
6132
|
#
|
|
6101
6133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishVersion AWS API Documentation
|
|
6102
6134
|
#
|
|
@@ -7030,8 +7062,8 @@ module Aws::Lambda
|
|
|
7030
7062
|
#
|
|
7031
7063
|
# * [ Amazon DocumentDB][7]
|
|
7032
7064
|
#
|
|
7033
|
-
# The following error handling options are available
|
|
7034
|
-
#
|
|
7065
|
+
# The following error handling options are available for stream sources
|
|
7066
|
+
# (DynamoDB, Kinesis, Amazon MSK, and self-managed Apache Kafka):
|
|
7035
7067
|
#
|
|
7036
7068
|
# * `BisectBatchOnFunctionError` – If the function returns an error,
|
|
7037
7069
|
# split the batch in two and retry.
|
|
@@ -7044,15 +7076,15 @@ module Aws::Lambda
|
|
|
7044
7076
|
# of retries. The default value is infinite (-1). When set to infinite
|
|
7045
7077
|
# (-1), failed records are retried until the record expires.
|
|
7046
7078
|
#
|
|
7047
|
-
# * `
|
|
7048
|
-
#
|
|
7079
|
+
# * `OnFailure` – Send discarded records to an Amazon SQS queue, Amazon
|
|
7080
|
+
# SNS topic, Kafka topic, or Amazon S3 bucket. For more information,
|
|
7081
|
+
# see [Adding a destination][8].
|
|
7049
7082
|
#
|
|
7050
|
-
#
|
|
7051
|
-
#
|
|
7083
|
+
# The following option is available only for DynamoDB and Kinesis event
|
|
7084
|
+
# sources:
|
|
7052
7085
|
#
|
|
7053
|
-
# * `
|
|
7054
|
-
#
|
|
7055
|
-
# destination][8].
|
|
7086
|
+
# * `ParallelizationFactor` – Process multiple batches from each shard
|
|
7087
|
+
# concurrently.
|
|
7056
7088
|
#
|
|
7057
7089
|
# ^
|
|
7058
7090
|
#
|
|
@@ -7169,23 +7201,24 @@ module Aws::Lambda
|
|
|
7169
7201
|
# `MaximumBatchingWindowInSeconds` to at least 1.
|
|
7170
7202
|
#
|
|
7171
7203
|
# @option params [Types::DestinationConfig] :destination_config
|
|
7172
|
-
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka
|
|
7173
|
-
# configuration object that specifies the destination of an event
|
|
7174
|
-
# Lambda processes it.
|
|
7204
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
7205
|
+
# A configuration object that specifies the destination of an event
|
|
7206
|
+
# after Lambda processes it.
|
|
7175
7207
|
#
|
|
7176
7208
|
# @option params [Integer] :maximum_record_age_in_seconds
|
|
7177
|
-
# (Kinesis
|
|
7178
|
-
# specified age. The default value is
|
|
7209
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
7210
|
+
# Discard records older than the specified age. The default value is
|
|
7211
|
+
# infinite (-1).
|
|
7179
7212
|
#
|
|
7180
7213
|
# @option params [Boolean] :bisect_batch_on_function_error
|
|
7181
|
-
# (Kinesis
|
|
7182
|
-
# split the batch in two and retry.
|
|
7214
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
7215
|
+
# If the function returns an error, split the batch in two and retry.
|
|
7183
7216
|
#
|
|
7184
7217
|
# @option params [Integer] :maximum_retry_attempts
|
|
7185
|
-
# (Kinesis
|
|
7186
|
-
# specified number of retries. The default
|
|
7187
|
-
# set to infinite (-1), failed records are
|
|
7188
|
-
# expires.
|
|
7218
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
7219
|
+
# Discard records after the specified number of retries. The default
|
|
7220
|
+
# value is infinite (-1). When set to infinite (-1), failed records are
|
|
7221
|
+
# retried until the record expires.
|
|
7189
7222
|
#
|
|
7190
7223
|
# @option params [Integer] :parallelization_factor
|
|
7191
7224
|
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
|
@@ -7201,8 +7234,9 @@ module Aws::Lambda
|
|
|
7201
7234
|
# value of 0 seconds indicates no tumbling window.
|
|
7202
7235
|
#
|
|
7203
7236
|
# @option params [Array<String>] :function_response_types
|
|
7204
|
-
# (Kinesis, DynamoDB Streams,
|
|
7205
|
-
# type enums applied to the event
|
|
7237
|
+
# (Kinesis, DynamoDB Streams, Amazon MSK, self-managed Apache Kafka, and
|
|
7238
|
+
# Amazon SQS) A list of current response type enums applied to the event
|
|
7239
|
+
# source mapping.
|
|
7206
7240
|
#
|
|
7207
7241
|
# @option params [Types::ScalingConfig] :scaling_config
|
|
7208
7242
|
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
@@ -7243,9 +7277,9 @@ module Aws::Lambda
|
|
|
7243
7277
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
7244
7278
|
#
|
|
7245
7279
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
7246
|
-
# (Amazon MSK and self-managed Apache Kafka only) The
|
|
7247
|
-
# configuration for the event source. For more
|
|
7248
|
-
# [provisioned mode][1].
|
|
7280
|
+
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
7281
|
+
# provisioned mode configuration for the event source. For more
|
|
7282
|
+
# information, see [provisioned mode][1].
|
|
7249
7283
|
#
|
|
7250
7284
|
#
|
|
7251
7285
|
#
|
|
@@ -7396,6 +7430,7 @@ module Aws::Lambda
|
|
|
7396
7430
|
# provisioned_poller_config: {
|
|
7397
7431
|
# minimum_pollers: 1,
|
|
7398
7432
|
# maximum_pollers: 1,
|
|
7433
|
+
# poller_group_name: "ProvisionedPollerGroupName",
|
|
7399
7434
|
# },
|
|
7400
7435
|
# })
|
|
7401
7436
|
#
|
|
@@ -7461,6 +7496,7 @@ module Aws::Lambda
|
|
|
7461
7496
|
# resp.metrics_config.metrics[0] #=> String, one of "EventCount"
|
|
7462
7497
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
7463
7498
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
7499
|
+
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
7464
7500
|
#
|
|
7465
7501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateEventSourceMapping AWS API Documentation
|
|
7466
7502
|
#
|
|
@@ -7603,6 +7639,7 @@ module Aws::Lambda
|
|
|
7603
7639
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
7604
7640
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
7605
7641
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
7642
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7606
7643
|
#
|
|
7607
7644
|
#
|
|
7608
7645
|
# @example Example: To update a Lambda function's code
|
|
@@ -7656,7 +7693,7 @@ module Aws::Lambda
|
|
|
7656
7693
|
#
|
|
7657
7694
|
# resp.function_name #=> String
|
|
7658
7695
|
# 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", "
|
|
7696
|
+
# 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
7697
|
# resp.role #=> String
|
|
7661
7698
|
# resp.handler #=> String
|
|
7662
7699
|
# resp.code_size #=> Integer
|
|
@@ -7717,6 +7754,7 @@ module Aws::Lambda
|
|
|
7717
7754
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
7718
7755
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
7719
7756
|
# resp.logging_config.log_group #=> String
|
|
7757
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
7720
7758
|
#
|
|
7721
7759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionCode AWS API Documentation
|
|
7722
7760
|
#
|
|
@@ -7965,6 +8003,7 @@ module Aws::Lambda
|
|
|
7965
8003
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
7966
8004
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
7967
8005
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
8006
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7968
8007
|
#
|
|
7969
8008
|
#
|
|
7970
8009
|
# @example Example: To update a Lambda function's configuration
|
|
@@ -8016,7 +8055,7 @@ module Aws::Lambda
|
|
|
8016
8055
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
8017
8056
|
# },
|
|
8018
8057
|
# },
|
|
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,
|
|
8058
|
+
# 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
8059
|
# dead_letter_config: {
|
|
8021
8060
|
# target_arn: "ResourceArn",
|
|
8022
8061
|
# },
|
|
@@ -8055,7 +8094,7 @@ module Aws::Lambda
|
|
|
8055
8094
|
#
|
|
8056
8095
|
# resp.function_name #=> String
|
|
8057
8096
|
# 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", "
|
|
8097
|
+
# 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
8098
|
# resp.role #=> String
|
|
8060
8099
|
# resp.handler #=> String
|
|
8061
8100
|
# resp.code_size #=> Integer
|
|
@@ -8116,6 +8155,7 @@ module Aws::Lambda
|
|
|
8116
8155
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
8117
8156
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
8118
8157
|
# resp.logging_config.log_group #=> String
|
|
8158
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
8119
8159
|
#
|
|
8120
8160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionConfiguration AWS API Documentation
|
|
8121
8161
|
#
|
|
@@ -8379,7 +8419,7 @@ module Aws::Lambda
|
|
|
8379
8419
|
tracer: tracer
|
|
8380
8420
|
)
|
|
8381
8421
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
8382
|
-
context[:gem_version] = '1.
|
|
8422
|
+
context[:gem_version] = '1.167.0'
|
|
8383
8423
|
Seahorse::Client::Request.new(handlers, context)
|
|
8384
8424
|
end
|
|
8385
8425
|
|