aws-sdk-lambda 1.188.0 → 1.190.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 +60 -31
- data/lib/aws-sdk-lambda/client_api.rb +13 -1
- data/lib/aws-sdk-lambda/types.rb +77 -17
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +27 -15
- data/sig/types.rbs +24 -10
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17a92c61dbe8994d6db83c36884f3dbc5e484e076b9980685895f2bf46ecae8e
|
|
4
|
+
data.tar.gz: '01982cf15ca023cf6d3f856f193e952fbeb1fdd5f127e35f435296e645ed7e89'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 905a20e13ff631ba19d0d3f75b96a954da59fedd699ac0e312194020820448657cb56e2ac2305421d9a050b16dbcb346467070b0d482ccbb71cf4317827beb6a
|
|
7
|
+
data.tar.gz: dca1ef5d2837ffac308e4cea77b41d0f7988e96a7bea51b1c36ac61d79a414bd101de8c8b8f552bfbb96b29756d8e35f6a622879dc8ca486f6ab261e753696ec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.190.0 (2026-07-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add Java 8, 11 and 17 on AL2023 (java8.al2023, java11.al2023, java17.al2023) support to AWS Lambda.
|
|
8
|
+
|
|
9
|
+
1.189.0 (2026-07-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added TelemetryConfig support for Managed Instances Capacity Provider, enabling customers to configure system log level and custom log group for managed instance logging.
|
|
13
|
+
|
|
4
14
|
1.188.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.190.0
|
|
@@ -1031,6 +1031,10 @@ module Aws::Lambda
|
|
|
1031
1031
|
# The tag propagation configuration for the capacity provider. Specifies
|
|
1032
1032
|
# tags to apply to managed resources at launch.
|
|
1033
1033
|
#
|
|
1034
|
+
# @option params [Types::CapacityProviderTelemetryConfig] :telemetry_config
|
|
1035
|
+
# The telemetry configuration for the capacity provider. Specifies
|
|
1036
|
+
# logging settings for managed resources.
|
|
1037
|
+
#
|
|
1034
1038
|
# @return [Types::CreateCapacityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1035
1039
|
#
|
|
1036
1040
|
# * {Types::CreateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
|
|
@@ -1071,6 +1075,12 @@ module Aws::Lambda
|
|
|
1071
1075
|
# "TagKey" => "TagValue",
|
|
1072
1076
|
# },
|
|
1073
1077
|
# },
|
|
1078
|
+
# telemetry_config: {
|
|
1079
|
+
# logging_config: {
|
|
1080
|
+
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
1081
|
+
# log_group: "LogGroup",
|
|
1082
|
+
# },
|
|
1083
|
+
# },
|
|
1074
1084
|
# })
|
|
1075
1085
|
#
|
|
1076
1086
|
# @example Response structure
|
|
@@ -1098,6 +1108,8 @@ module Aws::Lambda
|
|
|
1098
1108
|
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
1099
1109
|
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
1100
1110
|
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
1111
|
+
# resp.capacity_provider.telemetry_config.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
1112
|
+
# resp.capacity_provider.telemetry_config.logging_config.log_group #=> String
|
|
1101
1113
|
#
|
|
1102
1114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateCapacityProvider AWS API Documentation
|
|
1103
1115
|
#
|
|
@@ -2106,7 +2118,7 @@ module Aws::Lambda
|
|
|
2106
2118
|
#
|
|
2107
2119
|
# resp = client.create_function({
|
|
2108
2120
|
# function_name: "FunctionName", # required
|
|
2109
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
2121
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023, java8.al2023, java11.al2023, java17.al2023
|
|
2110
2122
|
# role: "RoleArn", # required
|
|
2111
2123
|
# handler: "Handler",
|
|
2112
2124
|
# code: { # required
|
|
@@ -2191,7 +2203,7 @@ module Aws::Lambda
|
|
|
2191
2203
|
#
|
|
2192
2204
|
# resp.function_name #=> String
|
|
2193
2205
|
# resp.function_arn #=> String
|
|
2194
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
2206
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
2195
2207
|
# resp.role #=> String
|
|
2196
2208
|
# resp.handler #=> String
|
|
2197
2209
|
# resp.code_size #=> Integer
|
|
@@ -2470,6 +2482,8 @@ module Aws::Lambda
|
|
|
2470
2482
|
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
2471
2483
|
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
2472
2484
|
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
2485
|
+
# resp.capacity_provider.telemetry_config.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2486
|
+
# resp.capacity_provider.telemetry_config.logging_config.log_group #=> String
|
|
2473
2487
|
#
|
|
2474
2488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteCapacityProvider AWS API Documentation
|
|
2475
2489
|
#
|
|
@@ -3158,6 +3172,8 @@ module Aws::Lambda
|
|
|
3158
3172
|
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
3159
3173
|
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
3160
3174
|
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
3175
|
+
# resp.capacity_provider.telemetry_config.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3176
|
+
# resp.capacity_provider.telemetry_config.logging_config.log_group #=> String
|
|
3161
3177
|
#
|
|
3162
3178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetCapacityProvider AWS API Documentation
|
|
3163
3179
|
#
|
|
@@ -3800,7 +3816,7 @@ module Aws::Lambda
|
|
|
3800
3816
|
#
|
|
3801
3817
|
# resp.configuration.function_name #=> String
|
|
3802
3818
|
# resp.configuration.function_arn #=> String
|
|
3803
|
-
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
3819
|
+
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
3804
3820
|
# resp.configuration.role #=> String
|
|
3805
3821
|
# resp.configuration.handler #=> String
|
|
3806
3822
|
# resp.configuration.code_size #=> Integer
|
|
@@ -4124,7 +4140,7 @@ module Aws::Lambda
|
|
|
4124
4140
|
#
|
|
4125
4141
|
# resp.function_name #=> String
|
|
4126
4142
|
# resp.function_arn #=> String
|
|
4127
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4143
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
4128
4144
|
# resp.role #=> String
|
|
4129
4145
|
# resp.handler #=> String
|
|
4130
4146
|
# resp.code_size #=> Integer
|
|
@@ -4511,7 +4527,7 @@ module Aws::Lambda
|
|
|
4511
4527
|
# resp.compatible_architectures #=> Array
|
|
4512
4528
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4513
4529
|
# resp.compatible_runtimes #=> Array
|
|
4514
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4530
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
4515
4531
|
# resp.license_info #=> String
|
|
4516
4532
|
#
|
|
4517
4533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersion AWS API Documentation
|
|
@@ -4595,7 +4611,7 @@ module Aws::Lambda
|
|
|
4595
4611
|
# resp.compatible_architectures #=> Array
|
|
4596
4612
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4597
4613
|
# resp.compatible_runtimes #=> Array
|
|
4598
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4614
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
4599
4615
|
# resp.license_info #=> String
|
|
4600
4616
|
#
|
|
4601
4617
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersionByArn AWS API Documentation
|
|
@@ -5180,17 +5196,6 @@ module Aws::Lambda
|
|
|
5180
5196
|
# The length constraint applies only to the full ARN. If you specify
|
|
5181
5197
|
# only the function name, it is limited to 64 characters in length.
|
|
5182
5198
|
#
|
|
5183
|
-
# @option params [String] :invocation_type
|
|
5184
|
-
# Use one of the following options:
|
|
5185
|
-
#
|
|
5186
|
-
# * `RequestResponse` (default) – Invoke the function synchronously.
|
|
5187
|
-
# Keep the connection open until the function returns a response or
|
|
5188
|
-
# times out. The API operation response includes the function response
|
|
5189
|
-
# and additional data.
|
|
5190
|
-
#
|
|
5191
|
-
# * `DryRun` – Validate parameter values and verify that the IAM user or
|
|
5192
|
-
# role has permission to invoke the function.
|
|
5193
|
-
#
|
|
5194
5199
|
# @option params [String] :log_type
|
|
5195
5200
|
# Set to `Tail` to include the execution log in the response. Applies to
|
|
5196
5201
|
# synchronously invoked functions only.
|
|
@@ -5212,6 +5217,17 @@ module Aws::Lambda
|
|
|
5212
5217
|
# @option params [String] :tenant_id
|
|
5213
5218
|
# The identifier of the tenant in a multi-tenant Lambda function.
|
|
5214
5219
|
#
|
|
5220
|
+
# @option params [String] :invocation_type
|
|
5221
|
+
# Use one of the following options:
|
|
5222
|
+
#
|
|
5223
|
+
# * `RequestResponse` (default) – Invoke the function synchronously.
|
|
5224
|
+
# Keep the connection open until the function returns a response or
|
|
5225
|
+
# times out. The API operation response includes the function response
|
|
5226
|
+
# and additional data.
|
|
5227
|
+
#
|
|
5228
|
+
# * `DryRun` – Validate parameter values and verify that the IAM user or
|
|
5229
|
+
# role has permission to invoke the function.
|
|
5230
|
+
#
|
|
5215
5231
|
# @return [Types::InvokeWithResponseStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5216
5232
|
#
|
|
5217
5233
|
# * {Types::InvokeWithResponseStreamResponse#status_code #status_code} => Integer
|
|
@@ -5321,12 +5337,12 @@ module Aws::Lambda
|
|
|
5321
5337
|
#
|
|
5322
5338
|
# resp = client.invoke_with_response_stream({
|
|
5323
5339
|
# function_name: "NamespacedFunctionName", # required
|
|
5324
|
-
# invocation_type: "RequestResponse", # accepts RequestResponse, DryRun
|
|
5325
5340
|
# log_type: "None", # accepts None, Tail
|
|
5326
5341
|
# client_context: "String",
|
|
5327
5342
|
# qualifier: "NumericLatestPublishedOrAliasQualifier",
|
|
5328
5343
|
# payload: "data",
|
|
5329
5344
|
# tenant_id: "TenantId",
|
|
5345
|
+
# invocation_type: "RequestResponse", # accepts RequestResponse, DryRun
|
|
5330
5346
|
# })
|
|
5331
5347
|
#
|
|
5332
5348
|
# @example Response structure
|
|
@@ -5530,6 +5546,8 @@ module Aws::Lambda
|
|
|
5530
5546
|
# resp.capacity_providers[0].propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
5531
5547
|
# resp.capacity_providers[0].propagate_tags.explicit_tags #=> Hash
|
|
5532
5548
|
# resp.capacity_providers[0].propagate_tags.explicit_tags["TagKey"] #=> String
|
|
5549
|
+
# resp.capacity_providers[0].telemetry_config.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5550
|
+
# resp.capacity_providers[0].telemetry_config.logging_config.log_group #=> String
|
|
5533
5551
|
# resp.next_marker #=> String
|
|
5534
5552
|
#
|
|
5535
5553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListCapacityProviders AWS API Documentation
|
|
@@ -6167,7 +6185,7 @@ module Aws::Lambda
|
|
|
6167
6185
|
# resp.functions #=> Array
|
|
6168
6186
|
# resp.functions[0].function_name #=> String
|
|
6169
6187
|
# resp.functions[0].function_arn #=> String
|
|
6170
|
-
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6188
|
+
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
6171
6189
|
# resp.functions[0].role #=> String
|
|
6172
6190
|
# resp.functions[0].handler #=> String
|
|
6173
6191
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -6375,7 +6393,7 @@ module Aws::Lambda
|
|
|
6375
6393
|
#
|
|
6376
6394
|
# resp = client.list_layer_versions({
|
|
6377
6395
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6378
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
6396
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023, java8.al2023, java11.al2023, java17.al2023
|
|
6379
6397
|
# layer_name: "LayerName", # required
|
|
6380
6398
|
# marker: "String",
|
|
6381
6399
|
# max_items: 1,
|
|
@@ -6392,7 +6410,7 @@ module Aws::Lambda
|
|
|
6392
6410
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
6393
6411
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6394
6412
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
6395
|
-
# 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", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6413
|
+
# 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", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
6396
6414
|
# resp.layer_versions[0].license_info #=> String
|
|
6397
6415
|
#
|
|
6398
6416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayerVersions AWS API Documentation
|
|
@@ -6483,7 +6501,7 @@ module Aws::Lambda
|
|
|
6483
6501
|
#
|
|
6484
6502
|
# resp = client.list_layers({
|
|
6485
6503
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6486
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
6504
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023, java8.al2023, java11.al2023, java17.al2023
|
|
6487
6505
|
# marker: "String",
|
|
6488
6506
|
# max_items: 1,
|
|
6489
6507
|
# })
|
|
@@ -6501,7 +6519,7 @@ module Aws::Lambda
|
|
|
6501
6519
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
6502
6520
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6503
6521
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
6504
|
-
# 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", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6522
|
+
# 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", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
6505
6523
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
6506
6524
|
#
|
|
6507
6525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayers AWS API Documentation
|
|
@@ -6783,7 +6801,7 @@ module Aws::Lambda
|
|
|
6783
6801
|
# resp.versions #=> Array
|
|
6784
6802
|
# resp.versions[0].function_name #=> String
|
|
6785
6803
|
# resp.versions[0].function_arn #=> String
|
|
6786
|
-
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6804
|
+
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
6787
6805
|
# resp.versions[0].role #=> String
|
|
6788
6806
|
# resp.versions[0].handler #=> String
|
|
6789
6807
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -6979,7 +6997,7 @@ module Aws::Lambda
|
|
|
6979
6997
|
# zip_file: "data",
|
|
6980
6998
|
# },
|
|
6981
6999
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
6982
|
-
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
7000
|
+
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023, java8.al2023, java11.al2023, java17.al2023
|
|
6983
7001
|
# license_info: "LicenseInfo",
|
|
6984
7002
|
# })
|
|
6985
7003
|
#
|
|
@@ -7001,7 +7019,7 @@ module Aws::Lambda
|
|
|
7001
7019
|
# resp.compatible_architectures #=> Array
|
|
7002
7020
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
7003
7021
|
# resp.compatible_runtimes #=> Array
|
|
7004
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
7022
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
7005
7023
|
# resp.license_info #=> String
|
|
7006
7024
|
#
|
|
7007
7025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishLayerVersion AWS API Documentation
|
|
@@ -7160,7 +7178,7 @@ module Aws::Lambda
|
|
|
7160
7178
|
#
|
|
7161
7179
|
# resp.function_name #=> String
|
|
7162
7180
|
# resp.function_arn #=> String
|
|
7163
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
7181
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
7164
7182
|
# resp.role #=> String
|
|
7165
7183
|
# resp.handler #=> String
|
|
7166
7184
|
# resp.code_size #=> Integer
|
|
@@ -8275,6 +8293,9 @@ module Aws::Lambda
|
|
|
8275
8293
|
# Configuration for tag propagation to managed resources launched by the
|
|
8276
8294
|
# capacity provider.
|
|
8277
8295
|
#
|
|
8296
|
+
# @option params [Types::CapacityProviderTelemetryConfig] :telemetry_config
|
|
8297
|
+
# The updated telemetry configuration for the capacity provider.
|
|
8298
|
+
#
|
|
8278
8299
|
# @return [Types::UpdateCapacityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8279
8300
|
#
|
|
8280
8301
|
# * {Types::UpdateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
|
|
@@ -8299,6 +8320,12 @@ module Aws::Lambda
|
|
|
8299
8320
|
# "TagKey" => "TagValue",
|
|
8300
8321
|
# },
|
|
8301
8322
|
# },
|
|
8323
|
+
# telemetry_config: {
|
|
8324
|
+
# logging_config: {
|
|
8325
|
+
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
8326
|
+
# log_group: "LogGroup",
|
|
8327
|
+
# },
|
|
8328
|
+
# },
|
|
8302
8329
|
# })
|
|
8303
8330
|
#
|
|
8304
8331
|
# @example Response structure
|
|
@@ -8326,6 +8353,8 @@ module Aws::Lambda
|
|
|
8326
8353
|
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
8327
8354
|
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
8328
8355
|
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
8356
|
+
# resp.capacity_provider.telemetry_config.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
8357
|
+
# resp.capacity_provider.telemetry_config.logging_config.log_group #=> String
|
|
8329
8358
|
#
|
|
8330
8359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateCapacityProvider AWS API Documentation
|
|
8331
8360
|
#
|
|
@@ -9064,7 +9093,7 @@ module Aws::Lambda
|
|
|
9064
9093
|
#
|
|
9065
9094
|
# resp.function_name #=> String
|
|
9066
9095
|
# resp.function_arn #=> String
|
|
9067
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
9096
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
9068
9097
|
# resp.role #=> String
|
|
9069
9098
|
# resp.handler #=> String
|
|
9070
9099
|
# resp.code_size #=> Integer
|
|
@@ -9460,7 +9489,7 @@ module Aws::Lambda
|
|
|
9460
9489
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
9461
9490
|
# },
|
|
9462
9491
|
# },
|
|
9463
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
9492
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023, java8.al2023, java11.al2023, java17.al2023
|
|
9464
9493
|
# dead_letter_config: {
|
|
9465
9494
|
# target_arn: "ResourceArn",
|
|
9466
9495
|
# },
|
|
@@ -9511,7 +9540,7 @@ module Aws::Lambda
|
|
|
9511
9540
|
#
|
|
9512
9541
|
# resp.function_name #=> String
|
|
9513
9542
|
# resp.function_arn #=> String
|
|
9514
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
9543
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023", "java8.al2023", "java11.al2023", "java17.al2023"
|
|
9515
9544
|
# resp.role #=> String
|
|
9516
9545
|
# resp.handler #=> String
|
|
9517
9546
|
# resp.code_size #=> Integer
|
|
@@ -9843,7 +9872,7 @@ module Aws::Lambda
|
|
|
9843
9872
|
tracer: tracer
|
|
9844
9873
|
)
|
|
9845
9874
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
9846
|
-
context[:gem_version] = '1.
|
|
9875
|
+
context[:gem_version] = '1.190.0'
|
|
9847
9876
|
Seahorse::Client::Request.new(handlers, context)
|
|
9848
9877
|
end
|
|
9849
9878
|
|
|
@@ -58,6 +58,7 @@ module Aws::Lambda
|
|
|
58
58
|
CapacityProviderArn = Shapes::StringShape.new(name: 'CapacityProviderArn')
|
|
59
59
|
CapacityProviderConfig = Shapes::StructureShape.new(name: 'CapacityProviderConfig')
|
|
60
60
|
CapacityProviderLimitExceededException = Shapes::StructureShape.new(name: 'CapacityProviderLimitExceededException')
|
|
61
|
+
CapacityProviderLoggingConfig = Shapes::StructureShape.new(name: 'CapacityProviderLoggingConfig')
|
|
61
62
|
CapacityProviderMaxVCpuCount = Shapes::IntegerShape.new(name: 'CapacityProviderMaxVCpuCount')
|
|
62
63
|
CapacityProviderName = Shapes::StringShape.new(name: 'CapacityProviderName')
|
|
63
64
|
CapacityProviderPermissionsConfig = Shapes::StructureShape.new(name: 'CapacityProviderPermissionsConfig')
|
|
@@ -68,6 +69,7 @@ module Aws::Lambda
|
|
|
68
69
|
CapacityProviderSecurityGroupIds = Shapes::ListShape.new(name: 'CapacityProviderSecurityGroupIds')
|
|
69
70
|
CapacityProviderState = Shapes::StringShape.new(name: 'CapacityProviderState')
|
|
70
71
|
CapacityProviderSubnetIds = Shapes::ListShape.new(name: 'CapacityProviderSubnetIds')
|
|
72
|
+
CapacityProviderTelemetryConfig = Shapes::StructureShape.new(name: 'CapacityProviderTelemetryConfig')
|
|
71
73
|
CapacityProviderVpcConfig = Shapes::StructureShape.new(name: 'CapacityProviderVpcConfig')
|
|
72
74
|
CapacityProvidersList = Shapes::ListShape.new(name: 'CapacityProvidersList')
|
|
73
75
|
ChainedInvokeDetails = Shapes::StructureShape.new(name: 'ChainedInvokeDetails')
|
|
@@ -702,6 +704,7 @@ module Aws::Lambda
|
|
|
702
704
|
CapacityProvider.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KMSKeyArn, location_name: "KmsKeyArn"))
|
|
703
705
|
CapacityProvider.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModified"))
|
|
704
706
|
CapacityProvider.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateTags, location_name: "PropagateTags"))
|
|
707
|
+
CapacityProvider.add_member(:telemetry_config, Shapes::ShapeRef.new(shape: CapacityProviderTelemetryConfig, location_name: "TelemetryConfig"))
|
|
705
708
|
CapacityProvider.struct_class = Types::CapacityProvider
|
|
706
709
|
|
|
707
710
|
CapacityProviderConfig.add_member(:lambda_managed_instances_capacity_provider_config, Shapes::ShapeRef.new(shape: LambdaManagedInstancesCapacityProviderConfig, required: true, location_name: "LambdaManagedInstancesCapacityProviderConfig"))
|
|
@@ -711,6 +714,10 @@ module Aws::Lambda
|
|
|
711
714
|
CapacityProviderLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
712
715
|
CapacityProviderLimitExceededException.struct_class = Types::CapacityProviderLimitExceededException
|
|
713
716
|
|
|
717
|
+
CapacityProviderLoggingConfig.add_member(:system_log_level, Shapes::ShapeRef.new(shape: SystemLogLevel, location_name: "SystemLogLevel"))
|
|
718
|
+
CapacityProviderLoggingConfig.add_member(:log_group, Shapes::ShapeRef.new(shape: LogGroup, location_name: "LogGroup"))
|
|
719
|
+
CapacityProviderLoggingConfig.struct_class = Types::CapacityProviderLoggingConfig
|
|
720
|
+
|
|
714
721
|
CapacityProviderPermissionsConfig.add_member(:capacity_provider_operator_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "CapacityProviderOperatorRoleArn"))
|
|
715
722
|
CapacityProviderPermissionsConfig.struct_class = Types::CapacityProviderPermissionsConfig
|
|
716
723
|
|
|
@@ -725,6 +732,9 @@ module Aws::Lambda
|
|
|
725
732
|
|
|
726
733
|
CapacityProviderSubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
727
734
|
|
|
735
|
+
CapacityProviderTelemetryConfig.add_member(:logging_config, Shapes::ShapeRef.new(shape: CapacityProviderLoggingConfig, location_name: "LoggingConfig"))
|
|
736
|
+
CapacityProviderTelemetryConfig.struct_class = Types::CapacityProviderTelemetryConfig
|
|
737
|
+
|
|
728
738
|
CapacityProviderVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: CapacityProviderSubnetIds, required: true, location_name: "SubnetIds"))
|
|
729
739
|
CapacityProviderVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: CapacityProviderSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
|
|
730
740
|
CapacityProviderVpcConfig.struct_class = Types::CapacityProviderVpcConfig
|
|
@@ -855,6 +865,7 @@ module Aws::Lambda
|
|
|
855
865
|
CreateCapacityProviderRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KMSKeyArnNonEmpty, location_name: "KmsKeyArn"))
|
|
856
866
|
CreateCapacityProviderRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
857
867
|
CreateCapacityProviderRequest.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateTags, location_name: "PropagateTags"))
|
|
868
|
+
CreateCapacityProviderRequest.add_member(:telemetry_config, Shapes::ShapeRef.new(shape: CapacityProviderTelemetryConfig, location_name: "TelemetryConfig"))
|
|
858
869
|
CreateCapacityProviderRequest.struct_class = Types::CreateCapacityProviderRequest
|
|
859
870
|
|
|
860
871
|
CreateCapacityProviderResponse.add_member(:capacity_provider, Shapes::ShapeRef.new(shape: CapacityProvider, required: true, location_name: "CapacityProvider"))
|
|
@@ -1599,12 +1610,12 @@ module Aws::Lambda
|
|
|
1599
1610
|
InvokeWithResponseStreamCompleteEvent.struct_class = Types::InvokeWithResponseStreamCompleteEvent
|
|
1600
1611
|
|
|
1601
1612
|
InvokeWithResponseStreamRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location: "uri", location_name: "FunctionName"))
|
|
1602
|
-
InvokeWithResponseStreamRequest.add_member(:invocation_type, Shapes::ShapeRef.new(shape: ResponseStreamingInvocationType, location: "header", location_name: "X-Amz-Invocation-Type"))
|
|
1603
1613
|
InvokeWithResponseStreamRequest.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, location: "header", location_name: "X-Amz-Log-Type"))
|
|
1604
1614
|
InvokeWithResponseStreamRequest.add_member(:client_context, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amz-Client-Context"))
|
|
1605
1615
|
InvokeWithResponseStreamRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: NumericLatestPublishedOrAliasQualifier, location: "querystring", location_name: "Qualifier"))
|
|
1606
1616
|
InvokeWithResponseStreamRequest.add_member(:payload, Shapes::ShapeRef.new(shape: Blob, location_name: "Payload"))
|
|
1607
1617
|
InvokeWithResponseStreamRequest.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location: "header", location_name: "X-Amz-Tenant-Id"))
|
|
1618
|
+
InvokeWithResponseStreamRequest.add_member(:invocation_type, Shapes::ShapeRef.new(shape: ResponseStreamingInvocationType, location: "header", location_name: "X-Amz-Invocation-Type"))
|
|
1608
1619
|
InvokeWithResponseStreamRequest.struct_class = Types::InvokeWithResponseStreamRequest
|
|
1609
1620
|
InvokeWithResponseStreamRequest[:payload] = :payload
|
|
1610
1621
|
InvokeWithResponseStreamRequest[:payload_member] = InvokeWithResponseStreamRequest.member(:payload)
|
|
@@ -2261,6 +2272,7 @@ module Aws::Lambda
|
|
|
2261
2272
|
UpdateCapacityProviderRequest.add_member(:capacity_provider_name, Shapes::ShapeRef.new(shape: CapacityProviderName, required: true, location: "uri", location_name: "CapacityProviderName"))
|
|
2262
2273
|
UpdateCapacityProviderRequest.add_member(:capacity_provider_scaling_config, Shapes::ShapeRef.new(shape: CapacityProviderScalingConfig, location_name: "CapacityProviderScalingConfig"))
|
|
2263
2274
|
UpdateCapacityProviderRequest.add_member(:propagate_tags, Shapes::ShapeRef.new(shape: PropagateTags, location_name: "PropagateTags"))
|
|
2275
|
+
UpdateCapacityProviderRequest.add_member(:telemetry_config, Shapes::ShapeRef.new(shape: CapacityProviderTelemetryConfig, location_name: "TelemetryConfig"))
|
|
2264
2276
|
UpdateCapacityProviderRequest.struct_class = Types::UpdateCapacityProviderRequest
|
|
2265
2277
|
|
|
2266
2278
|
UpdateCapacityProviderResponse.add_member(:capacity_provider, Shapes::ShapeRef.new(shape: CapacityProvider, required: true, location_name: "CapacityProvider"))
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -573,6 +573,11 @@ module Aws::Lambda
|
|
|
573
573
|
# the capacity provider.
|
|
574
574
|
# @return [Types::PropagateTags]
|
|
575
575
|
#
|
|
576
|
+
# @!attribute [rw] telemetry_config
|
|
577
|
+
# The telemetry configuration for the capacity provider, including
|
|
578
|
+
# logging settings.
|
|
579
|
+
# @return [Types::CapacityProviderTelemetryConfig]
|
|
580
|
+
#
|
|
576
581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CapacityProvider AWS API Documentation
|
|
577
582
|
#
|
|
578
583
|
class CapacityProvider < Struct.new(
|
|
@@ -584,7 +589,8 @@ module Aws::Lambda
|
|
|
584
589
|
:capacity_provider_scaling_config,
|
|
585
590
|
:kms_key_arn,
|
|
586
591
|
:last_modified,
|
|
587
|
-
:propagate_tags
|
|
592
|
+
:propagate_tags,
|
|
593
|
+
:telemetry_config)
|
|
588
594
|
SENSITIVE = []
|
|
589
595
|
include Aws::Structure
|
|
590
596
|
end
|
|
@@ -628,6 +634,33 @@ module Aws::Lambda
|
|
|
628
634
|
include Aws::Structure
|
|
629
635
|
end
|
|
630
636
|
|
|
637
|
+
# The capacity provider's Amazon CloudWatch Logs configuration
|
|
638
|
+
# settings.
|
|
639
|
+
#
|
|
640
|
+
# @!attribute [rw] system_log_level
|
|
641
|
+
# Set this property to filter the system logs for your capacity
|
|
642
|
+
# provider that Lambda sends to CloudWatch. Lambda only sends system
|
|
643
|
+
# logs at the selected level of detail and lower, where `DEBUG` is the
|
|
644
|
+
# highest level and `WARN` is the lowest.
|
|
645
|
+
# @return [String]
|
|
646
|
+
#
|
|
647
|
+
# @!attribute [rw] log_group
|
|
648
|
+
# The name of the Amazon CloudWatch log group the capacity provider
|
|
649
|
+
# sends logs to. By default, Lambda capacity providers send logs to a
|
|
650
|
+
# default log group named `/aws/lambda/capacity-provider/<capacity
|
|
651
|
+
# provider name>`. To use a different log group, enter an existing log
|
|
652
|
+
# group or enter a new log group name.
|
|
653
|
+
# @return [String]
|
|
654
|
+
#
|
|
655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CapacityProviderLoggingConfig AWS API Documentation
|
|
656
|
+
#
|
|
657
|
+
class CapacityProviderLoggingConfig < Struct.new(
|
|
658
|
+
:system_log_level,
|
|
659
|
+
:log_group)
|
|
660
|
+
SENSITIVE = []
|
|
661
|
+
include Aws::Structure
|
|
662
|
+
end
|
|
663
|
+
|
|
631
664
|
# Configuration that specifies the permissions required for the capacity
|
|
632
665
|
# provider to manage compute resources.
|
|
633
666
|
#
|
|
@@ -672,6 +705,22 @@ module Aws::Lambda
|
|
|
672
705
|
include Aws::Structure
|
|
673
706
|
end
|
|
674
707
|
|
|
708
|
+
# Configuration that specifies the telemetry collection for the capacity
|
|
709
|
+
# provider.
|
|
710
|
+
#
|
|
711
|
+
# @!attribute [rw] logging_config
|
|
712
|
+
# The capacity provider's Amazon CloudWatch Logs configuration
|
|
713
|
+
# settings.
|
|
714
|
+
# @return [Types::CapacityProviderLoggingConfig]
|
|
715
|
+
#
|
|
716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CapacityProviderTelemetryConfig AWS API Documentation
|
|
717
|
+
#
|
|
718
|
+
class CapacityProviderTelemetryConfig < Struct.new(
|
|
719
|
+
:logging_config)
|
|
720
|
+
SENSITIVE = []
|
|
721
|
+
include Aws::Structure
|
|
722
|
+
end
|
|
723
|
+
|
|
675
724
|
# VPC configuration that specifies the network settings for compute
|
|
676
725
|
# instances managed by the capacity provider.
|
|
677
726
|
#
|
|
@@ -1346,6 +1395,11 @@ module Aws::Lambda
|
|
|
1346
1395
|
# Specifies tags to apply to managed resources at launch.
|
|
1347
1396
|
# @return [Types::PropagateTags]
|
|
1348
1397
|
#
|
|
1398
|
+
# @!attribute [rw] telemetry_config
|
|
1399
|
+
# The telemetry configuration for the capacity provider. Specifies
|
|
1400
|
+
# logging settings for managed resources.
|
|
1401
|
+
# @return [Types::CapacityProviderTelemetryConfig]
|
|
1402
|
+
#
|
|
1349
1403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateCapacityProviderRequest AWS API Documentation
|
|
1350
1404
|
#
|
|
1351
1405
|
class CreateCapacityProviderRequest < Struct.new(
|
|
@@ -1356,7 +1410,8 @@ module Aws::Lambda
|
|
|
1356
1410
|
:capacity_provider_scaling_config,
|
|
1357
1411
|
:kms_key_arn,
|
|
1358
1412
|
:tags,
|
|
1359
|
-
:propagate_tags
|
|
1413
|
+
:propagate_tags,
|
|
1414
|
+
:telemetry_config)
|
|
1360
1415
|
SENSITIVE = []
|
|
1361
1416
|
include Aws::Structure
|
|
1362
1417
|
end
|
|
@@ -5851,18 +5906,6 @@ module Aws::Lambda
|
|
|
5851
5906
|
# only the function name, it is limited to 64 characters in length.
|
|
5852
5907
|
# @return [String]
|
|
5853
5908
|
#
|
|
5854
|
-
# @!attribute [rw] invocation_type
|
|
5855
|
-
# Use one of the following options:
|
|
5856
|
-
#
|
|
5857
|
-
# * `RequestResponse` (default) – Invoke the function synchronously.
|
|
5858
|
-
# Keep the connection open until the function returns a response or
|
|
5859
|
-
# times out. The API operation response includes the function
|
|
5860
|
-
# response and additional data.
|
|
5861
|
-
#
|
|
5862
|
-
# * `DryRun` – Validate parameter values and verify that the IAM user
|
|
5863
|
-
# or role has permission to invoke the function.
|
|
5864
|
-
# @return [String]
|
|
5865
|
-
#
|
|
5866
5909
|
# @!attribute [rw] log_type
|
|
5867
5910
|
# Set to `Tail` to include the execution log in the response. Applies
|
|
5868
5911
|
# to synchronously invoked functions only.
|
|
@@ -5889,16 +5932,28 @@ module Aws::Lambda
|
|
|
5889
5932
|
# The identifier of the tenant in a multi-tenant Lambda function.
|
|
5890
5933
|
# @return [String]
|
|
5891
5934
|
#
|
|
5935
|
+
# @!attribute [rw] invocation_type
|
|
5936
|
+
# Use one of the following options:
|
|
5937
|
+
#
|
|
5938
|
+
# * `RequestResponse` (default) – Invoke the function synchronously.
|
|
5939
|
+
# Keep the connection open until the function returns a response or
|
|
5940
|
+
# times out. The API operation response includes the function
|
|
5941
|
+
# response and additional data.
|
|
5942
|
+
#
|
|
5943
|
+
# * `DryRun` – Validate parameter values and verify that the IAM user
|
|
5944
|
+
# or role has permission to invoke the function.
|
|
5945
|
+
# @return [String]
|
|
5946
|
+
#
|
|
5892
5947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/InvokeWithResponseStreamRequest AWS API Documentation
|
|
5893
5948
|
#
|
|
5894
5949
|
class InvokeWithResponseStreamRequest < Struct.new(
|
|
5895
5950
|
:function_name,
|
|
5896
|
-
:invocation_type,
|
|
5897
5951
|
:log_type,
|
|
5898
5952
|
:client_context,
|
|
5899
5953
|
:qualifier,
|
|
5900
5954
|
:payload,
|
|
5901
|
-
:tenant_id
|
|
5955
|
+
:tenant_id,
|
|
5956
|
+
:invocation_type)
|
|
5902
5957
|
SENSITIVE = [:payload]
|
|
5903
5958
|
include Aws::Structure
|
|
5904
5959
|
end
|
|
@@ -9443,12 +9498,17 @@ module Aws::Lambda
|
|
|
9443
9498
|
# the capacity provider.
|
|
9444
9499
|
# @return [Types::PropagateTags]
|
|
9445
9500
|
#
|
|
9501
|
+
# @!attribute [rw] telemetry_config
|
|
9502
|
+
# The updated telemetry configuration for the capacity provider.
|
|
9503
|
+
# @return [Types::CapacityProviderTelemetryConfig]
|
|
9504
|
+
#
|
|
9446
9505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateCapacityProviderRequest AWS API Documentation
|
|
9447
9506
|
#
|
|
9448
9507
|
class UpdateCapacityProviderRequest < Struct.new(
|
|
9449
9508
|
:capacity_provider_name,
|
|
9450
9509
|
:capacity_provider_scaling_config,
|
|
9451
|
-
:propagate_tags
|
|
9510
|
+
:propagate_tags,
|
|
9511
|
+
:telemetry_config)
|
|
9452
9512
|
SENSITIVE = []
|
|
9453
9513
|
include Aws::Structure
|
|
9454
9514
|
end
|
data/lib/aws-sdk-lambda.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -212,6 +212,12 @@ module Aws
|
|
|
212
212
|
?propagate_tags: {
|
|
213
213
|
mode: ("None" | "Explicit")?,
|
|
214
214
|
explicit_tags: Hash[::String, ::String]?
|
|
215
|
+
},
|
|
216
|
+
?telemetry_config: {
|
|
217
|
+
logging_config: {
|
|
218
|
+
system_log_level: ("DEBUG" | "INFO" | "WARN")?,
|
|
219
|
+
log_group: ::String?
|
|
220
|
+
}?
|
|
215
221
|
}
|
|
216
222
|
) -> _CreateCapacityProviderResponseSuccess
|
|
217
223
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCapacityProviderResponseSuccess
|
|
@@ -333,7 +339,7 @@ module Aws
|
|
|
333
339
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
334
340
|
def function_name: () -> ::String
|
|
335
341
|
def function_arn: () -> ::String
|
|
336
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
342
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
337
343
|
def role: () -> ::String
|
|
338
344
|
def handler: () -> ::String
|
|
339
345
|
def code_size: () -> ::Integer
|
|
@@ -375,7 +381,7 @@ module Aws
|
|
|
375
381
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
|
|
376
382
|
def create_function: (
|
|
377
383
|
function_name: ::String,
|
|
378
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023"),
|
|
384
|
+
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023"),
|
|
379
385
|
role: ::String,
|
|
380
386
|
?handler: ::String,
|
|
381
387
|
code: {
|
|
@@ -770,7 +776,7 @@ module Aws
|
|
|
770
776
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
771
777
|
def function_name: () -> ::String
|
|
772
778
|
def function_arn: () -> ::String
|
|
773
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
779
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
774
780
|
def role: () -> ::String
|
|
775
781
|
def handler: () -> ::String
|
|
776
782
|
def code_size: () -> ::Integer
|
|
@@ -880,7 +886,7 @@ module Aws
|
|
|
880
886
|
def created_date: () -> ::Time
|
|
881
887
|
def version: () -> ::Integer
|
|
882
888
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
883
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
889
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
884
890
|
def license_info: () -> ::String
|
|
885
891
|
end
|
|
886
892
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version-instance_method
|
|
@@ -899,7 +905,7 @@ module Aws
|
|
|
899
905
|
def created_date: () -> ::Time
|
|
900
906
|
def version: () -> ::Integer
|
|
901
907
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
902
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
908
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
903
909
|
def license_info: () -> ::String
|
|
904
910
|
end
|
|
905
911
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version_by_arn-instance_method
|
|
@@ -1004,12 +1010,12 @@ module Aws
|
|
|
1004
1010
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#invoke_with_response_stream-instance_method
|
|
1005
1011
|
def invoke_with_response_stream: (
|
|
1006
1012
|
function_name: ::String,
|
|
1007
|
-
?invocation_type: ("RequestResponse" | "DryRun"),
|
|
1008
1013
|
?log_type: ("None" | "Tail"),
|
|
1009
1014
|
?client_context: ::String,
|
|
1010
1015
|
?qualifier: ::String,
|
|
1011
1016
|
?payload: ::String,
|
|
1012
|
-
?tenant_id: ::String
|
|
1017
|
+
?tenant_id: ::String,
|
|
1018
|
+
?invocation_type: ("RequestResponse" | "DryRun")
|
|
1013
1019
|
) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
|
|
1014
1020
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
|
|
1015
1021
|
|
|
@@ -1160,7 +1166,7 @@ module Aws
|
|
|
1160
1166
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
|
|
1161
1167
|
def list_layer_versions: (
|
|
1162
1168
|
?compatible_architecture: ("x86_64" | "arm64"),
|
|
1163
|
-
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023"),
|
|
1169
|
+
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023"),
|
|
1164
1170
|
layer_name: ::String,
|
|
1165
1171
|
?marker: ::String,
|
|
1166
1172
|
?max_items: ::Integer
|
|
@@ -1175,7 +1181,7 @@ module Aws
|
|
|
1175
1181
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
|
|
1176
1182
|
def list_layers: (
|
|
1177
1183
|
?compatible_architecture: ("x86_64" | "arm64"),
|
|
1178
|
-
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023"),
|
|
1184
|
+
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023"),
|
|
1179
1185
|
?marker: ::String,
|
|
1180
1186
|
?max_items: ::Integer
|
|
1181
1187
|
) -> _ListLayersResponseSuccess
|
|
@@ -1226,7 +1232,7 @@ module Aws
|
|
|
1226
1232
|
def created_date: () -> ::Time
|
|
1227
1233
|
def version: () -> ::Integer
|
|
1228
1234
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1229
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
1235
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
1230
1236
|
def license_info: () -> ::String
|
|
1231
1237
|
end
|
|
1232
1238
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_layer_version-instance_method
|
|
@@ -1241,7 +1247,7 @@ module Aws
|
|
|
1241
1247
|
zip_file: ::String?
|
|
1242
1248
|
},
|
|
1243
1249
|
?compatible_architectures: Array[("x86_64" | "arm64")],
|
|
1244
|
-
?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")],
|
|
1250
|
+
?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")],
|
|
1245
1251
|
?license_info: ::String
|
|
1246
1252
|
) -> _PublishLayerVersionResponseSuccess
|
|
1247
1253
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishLayerVersionResponseSuccess
|
|
@@ -1250,7 +1256,7 @@ module Aws
|
|
|
1250
1256
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1251
1257
|
def function_name: () -> ::String
|
|
1252
1258
|
def function_arn: () -> ::String
|
|
1253
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
1259
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
1254
1260
|
def role: () -> ::String
|
|
1255
1261
|
def handler: () -> ::String
|
|
1256
1262
|
def code_size: () -> ::Integer
|
|
@@ -1513,6 +1519,12 @@ module Aws
|
|
|
1513
1519
|
?propagate_tags: {
|
|
1514
1520
|
mode: ("None" | "Explicit")?,
|
|
1515
1521
|
explicit_tags: Hash[::String, ::String]?
|
|
1522
|
+
},
|
|
1523
|
+
?telemetry_config: {
|
|
1524
|
+
logging_config: {
|
|
1525
|
+
system_log_level: ("DEBUG" | "INFO" | "WARN")?,
|
|
1526
|
+
log_group: ::String?
|
|
1527
|
+
}?
|
|
1516
1528
|
}
|
|
1517
1529
|
) -> _UpdateCapacityProviderResponseSuccess
|
|
1518
1530
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCapacityProviderResponseSuccess
|
|
@@ -1626,7 +1638,7 @@ module Aws
|
|
|
1626
1638
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1627
1639
|
def function_name: () -> ::String
|
|
1628
1640
|
def function_arn: () -> ::String
|
|
1629
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
1641
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
1630
1642
|
def role: () -> ::String
|
|
1631
1643
|
def handler: () -> ::String
|
|
1632
1644
|
def code_size: () -> ::Integer
|
|
@@ -1687,7 +1699,7 @@ module Aws
|
|
|
1687
1699
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1688
1700
|
def function_name: () -> ::String
|
|
1689
1701
|
def function_arn: () -> ::String
|
|
1690
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
1702
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
1691
1703
|
def role: () -> ::String
|
|
1692
1704
|
def handler: () -> ::String
|
|
1693
1705
|
def code_size: () -> ::Integer
|
|
@@ -1742,7 +1754,7 @@ module Aws
|
|
|
1742
1754
|
?environment: {
|
|
1743
1755
|
variables: Hash[::String, ::String]?
|
|
1744
1756
|
},
|
|
1745
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023"),
|
|
1757
|
+
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023"),
|
|
1746
1758
|
?dead_letter_config: {
|
|
1747
1759
|
target_arn: ::String?
|
|
1748
1760
|
},
|
data/sig/types.rbs
CHANGED
|
@@ -144,6 +144,7 @@ module Aws::Lambda
|
|
|
144
144
|
attr_accessor kms_key_arn: ::String
|
|
145
145
|
attr_accessor last_modified: ::Time
|
|
146
146
|
attr_accessor propagate_tags: Types::PropagateTags
|
|
147
|
+
attr_accessor telemetry_config: Types::CapacityProviderTelemetryConfig
|
|
147
148
|
SENSITIVE: []
|
|
148
149
|
end
|
|
149
150
|
|
|
@@ -158,6 +159,12 @@ module Aws::Lambda
|
|
|
158
159
|
SENSITIVE: []
|
|
159
160
|
end
|
|
160
161
|
|
|
162
|
+
class CapacityProviderLoggingConfig
|
|
163
|
+
attr_accessor system_log_level: ("DEBUG" | "INFO" | "WARN")
|
|
164
|
+
attr_accessor log_group: ::String
|
|
165
|
+
SENSITIVE: []
|
|
166
|
+
end
|
|
167
|
+
|
|
161
168
|
class CapacityProviderPermissionsConfig
|
|
162
169
|
attr_accessor capacity_provider_operator_role_arn: ::String
|
|
163
170
|
SENSITIVE: []
|
|
@@ -170,6 +177,11 @@ module Aws::Lambda
|
|
|
170
177
|
SENSITIVE: []
|
|
171
178
|
end
|
|
172
179
|
|
|
180
|
+
class CapacityProviderTelemetryConfig
|
|
181
|
+
attr_accessor logging_config: Types::CapacityProviderLoggingConfig
|
|
182
|
+
SENSITIVE: []
|
|
183
|
+
end
|
|
184
|
+
|
|
173
185
|
class CapacityProviderVpcConfig
|
|
174
186
|
attr_accessor subnet_ids: ::Array[::String]
|
|
175
187
|
attr_accessor security_group_ids: ::Array[::String]
|
|
@@ -346,6 +358,7 @@ module Aws::Lambda
|
|
|
346
358
|
attr_accessor kms_key_arn: ::String
|
|
347
359
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
348
360
|
attr_accessor propagate_tags: Types::PropagateTags
|
|
361
|
+
attr_accessor telemetry_config: Types::CapacityProviderTelemetryConfig
|
|
349
362
|
SENSITIVE: []
|
|
350
363
|
end
|
|
351
364
|
|
|
@@ -401,7 +414,7 @@ module Aws::Lambda
|
|
|
401
414
|
|
|
402
415
|
class CreateFunctionRequest
|
|
403
416
|
attr_accessor function_name: ::String
|
|
404
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
417
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
405
418
|
attr_accessor role: ::String
|
|
406
419
|
attr_accessor handler: ::String
|
|
407
420
|
attr_accessor code: Types::FunctionCode
|
|
@@ -835,7 +848,7 @@ module Aws::Lambda
|
|
|
835
848
|
class FunctionConfiguration
|
|
836
849
|
attr_accessor function_name: ::String
|
|
837
850
|
attr_accessor function_arn: ::String
|
|
838
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
851
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
839
852
|
attr_accessor role: ::String
|
|
840
853
|
attr_accessor handler: ::String
|
|
841
854
|
attr_accessor code_size: ::Integer
|
|
@@ -1125,7 +1138,7 @@ module Aws::Lambda
|
|
|
1125
1138
|
attr_accessor created_date: ::Time
|
|
1126
1139
|
attr_accessor version: ::Integer
|
|
1127
1140
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1128
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
1141
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
1129
1142
|
attr_accessor license_info: ::String
|
|
1130
1143
|
SENSITIVE: []
|
|
1131
1144
|
end
|
|
@@ -1296,12 +1309,12 @@ module Aws::Lambda
|
|
|
1296
1309
|
|
|
1297
1310
|
class InvokeWithResponseStreamRequest
|
|
1298
1311
|
attr_accessor function_name: ::String
|
|
1299
|
-
attr_accessor invocation_type: ("RequestResponse" | "DryRun")
|
|
1300
1312
|
attr_accessor log_type: ("None" | "Tail")
|
|
1301
1313
|
attr_accessor client_context: ::String
|
|
1302
1314
|
attr_accessor qualifier: ::String
|
|
1303
1315
|
attr_accessor payload: ::String
|
|
1304
1316
|
attr_accessor tenant_id: ::String
|
|
1317
|
+
attr_accessor invocation_type: ("RequestResponse" | "DryRun")
|
|
1305
1318
|
SENSITIVE: [:payload]
|
|
1306
1319
|
end
|
|
1307
1320
|
|
|
@@ -1396,7 +1409,7 @@ module Aws::Lambda
|
|
|
1396
1409
|
attr_accessor description: ::String
|
|
1397
1410
|
attr_accessor created_date: ::Time
|
|
1398
1411
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1399
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
1412
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
1400
1413
|
attr_accessor license_info: ::String
|
|
1401
1414
|
SENSITIVE: []
|
|
1402
1415
|
end
|
|
@@ -1549,7 +1562,7 @@ module Aws::Lambda
|
|
|
1549
1562
|
|
|
1550
1563
|
class ListLayerVersionsRequest
|
|
1551
1564
|
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1552
|
-
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
1565
|
+
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
1553
1566
|
attr_accessor layer_name: ::String
|
|
1554
1567
|
attr_accessor marker: ::String
|
|
1555
1568
|
attr_accessor max_items: ::Integer
|
|
@@ -1564,7 +1577,7 @@ module Aws::Lambda
|
|
|
1564
1577
|
|
|
1565
1578
|
class ListLayersRequest
|
|
1566
1579
|
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1567
|
-
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
1580
|
+
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
1568
1581
|
attr_accessor marker: ::String
|
|
1569
1582
|
attr_accessor max_items: ::Integer
|
|
1570
1583
|
SENSITIVE: []
|
|
@@ -1730,7 +1743,7 @@ module Aws::Lambda
|
|
|
1730
1743
|
attr_accessor description: ::String
|
|
1731
1744
|
attr_accessor content: Types::LayerVersionContentInput
|
|
1732
1745
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1733
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
1746
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
1734
1747
|
attr_accessor license_info: ::String
|
|
1735
1748
|
SENSITIVE: []
|
|
1736
1749
|
end
|
|
@@ -1743,7 +1756,7 @@ module Aws::Lambda
|
|
|
1743
1756
|
attr_accessor created_date: ::Time
|
|
1744
1757
|
attr_accessor version: ::Integer
|
|
1745
1758
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1746
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")]
|
|
1759
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")]
|
|
1747
1760
|
attr_accessor license_info: ::String
|
|
1748
1761
|
SENSITIVE: []
|
|
1749
1762
|
end
|
|
@@ -2152,6 +2165,7 @@ module Aws::Lambda
|
|
|
2152
2165
|
attr_accessor capacity_provider_name: ::String
|
|
2153
2166
|
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
2154
2167
|
attr_accessor propagate_tags: Types::PropagateTags
|
|
2168
|
+
attr_accessor telemetry_config: Types::CapacityProviderTelemetryConfig
|
|
2155
2169
|
SENSITIVE: []
|
|
2156
2170
|
end
|
|
2157
2171
|
|
|
@@ -2225,7 +2239,7 @@ module Aws::Lambda
|
|
|
2225
2239
|
attr_accessor memory_size: ::Integer
|
|
2226
2240
|
attr_accessor vpc_config: Types::VpcConfig
|
|
2227
2241
|
attr_accessor environment: Types::Environment
|
|
2228
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023")
|
|
2242
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "nodejs24.x" | "java8" | "java8.al2" | "java11" | "java17" | "java21" | "java25" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "python3.14" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "dotnet10" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "ruby4.0" | "provided" | "provided.al2" | "provided.al2023" | "java8.al2023" | "java11.al2023" | "java17.al2023")
|
|
2229
2243
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
|
2230
2244
|
attr_accessor kms_key_arn: ::String
|
|
2231
2245
|
attr_accessor tracing_config: Types::TracingConfig
|