aws-sdk-lambda 1.165.0 → 1.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +114 -74
- data/lib/aws-sdk-lambda/client_api.rb +12 -0
- data/lib/aws-sdk-lambda/types.rb +136 -71
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +29 -17
- data/sig/types.rbs +19 -9
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -284,7 +284,8 @@ module Aws
|
|
|
284
284
|
},
|
|
285
285
|
?provisioned_poller_config: {
|
|
286
286
|
minimum_pollers: ::Integer?,
|
|
287
|
-
maximum_pollers: ::Integer
|
|
287
|
+
maximum_pollers: ::Integer?,
|
|
288
|
+
poller_group_name: ::String?
|
|
288
289
|
}
|
|
289
290
|
) -> _CreateEventSourceMappingResponseSuccess
|
|
290
291
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventSourceMappingResponseSuccess
|
|
@@ -293,7 +294,7 @@ module Aws
|
|
|
293
294
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
294
295
|
def function_name: () -> ::String
|
|
295
296
|
def function_arn: () -> ::String
|
|
296
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
297
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
297
298
|
def role: () -> ::String
|
|
298
299
|
def handler: () -> ::String
|
|
299
300
|
def code_size: () -> ::Integer
|
|
@@ -327,11 +328,12 @@ module Aws
|
|
|
327
328
|
def snap_start: () -> Types::SnapStartResponse
|
|
328
329
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
329
330
|
def logging_config: () -> Types::LoggingConfig
|
|
331
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
330
332
|
end
|
|
331
333
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
|
|
332
334
|
def create_function: (
|
|
333
335
|
function_name: ::String,
|
|
334
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
336
|
+
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
|
|
335
337
|
role: ::String,
|
|
336
338
|
?handler: ::String,
|
|
337
339
|
code: {
|
|
@@ -388,6 +390,9 @@ module Aws
|
|
|
388
390
|
application_log_level: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")?,
|
|
389
391
|
system_log_level: ("DEBUG" | "INFO" | "WARN")?,
|
|
390
392
|
log_group: ::String?
|
|
393
|
+
},
|
|
394
|
+
?tenancy_config: {
|
|
395
|
+
tenant_isolation_mode: ("PER_TENANT")
|
|
391
396
|
}
|
|
392
397
|
) -> _CreateFunctionResponseSuccess
|
|
393
398
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionResponseSuccess
|
|
@@ -639,7 +644,7 @@ module Aws
|
|
|
639
644
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
640
645
|
def function_name: () -> ::String
|
|
641
646
|
def function_arn: () -> ::String
|
|
642
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
647
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
643
648
|
def role: () -> ::String
|
|
644
649
|
def handler: () -> ::String
|
|
645
650
|
def code_size: () -> ::Integer
|
|
@@ -673,6 +678,7 @@ module Aws
|
|
|
673
678
|
def snap_start: () -> Types::SnapStartResponse
|
|
674
679
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
675
680
|
def logging_config: () -> Types::LoggingConfig
|
|
681
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
676
682
|
end
|
|
677
683
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_configuration-instance_method
|
|
678
684
|
def get_function_configuration: (
|
|
@@ -731,7 +737,7 @@ module Aws
|
|
|
731
737
|
def description: () -> ::String
|
|
732
738
|
def created_date: () -> ::Time
|
|
733
739
|
def version: () -> ::Integer
|
|
734
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
740
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
735
741
|
def license_info: () -> ::String
|
|
736
742
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
737
743
|
end
|
|
@@ -750,7 +756,7 @@ module Aws
|
|
|
750
756
|
def description: () -> ::String
|
|
751
757
|
def created_date: () -> ::Time
|
|
752
758
|
def version: () -> ::Integer
|
|
753
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
759
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
754
760
|
def license_info: () -> ::String
|
|
755
761
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
756
762
|
end
|
|
@@ -828,7 +834,8 @@ module Aws
|
|
|
828
834
|
?log_type: ("None" | "Tail"),
|
|
829
835
|
?client_context: ::String,
|
|
830
836
|
?payload: ::String,
|
|
831
|
-
?qualifier: ::String
|
|
837
|
+
?qualifier: ::String,
|
|
838
|
+
?tenant_id: ::String
|
|
832
839
|
) -> _InvokeResponseSuccess
|
|
833
840
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeResponseSuccess
|
|
834
841
|
|
|
@@ -857,7 +864,8 @@ module Aws
|
|
|
857
864
|
?log_type: ("None" | "Tail"),
|
|
858
865
|
?client_context: ::String,
|
|
859
866
|
?qualifier: ::String,
|
|
860
|
-
?payload: ::String
|
|
867
|
+
?payload: ::String,
|
|
868
|
+
?tenant_id: ::String
|
|
861
869
|
) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
|
|
862
870
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
|
|
863
871
|
|
|
@@ -961,7 +969,7 @@ module Aws
|
|
|
961
969
|
end
|
|
962
970
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
|
|
963
971
|
def list_layer_versions: (
|
|
964
|
-
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
972
|
+
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
|
|
965
973
|
layer_name: ::String,
|
|
966
974
|
?marker: ::String,
|
|
967
975
|
?max_items: ::Integer,
|
|
@@ -976,7 +984,7 @@ module Aws
|
|
|
976
984
|
end
|
|
977
985
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
|
|
978
986
|
def list_layers: (
|
|
979
|
-
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
987
|
+
?compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
|
|
980
988
|
?marker: ::String,
|
|
981
989
|
?max_items: ::Integer,
|
|
982
990
|
?compatible_architecture: ("x86_64" | "arm64")
|
|
@@ -1027,7 +1035,7 @@ module Aws
|
|
|
1027
1035
|
def description: () -> ::String
|
|
1028
1036
|
def created_date: () -> ::Time
|
|
1029
1037
|
def version: () -> ::Integer
|
|
1030
|
-
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1038
|
+
def compatible_runtimes: () -> ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
1031
1039
|
def license_info: () -> ::String
|
|
1032
1040
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1033
1041
|
end
|
|
@@ -1041,7 +1049,7 @@ module Aws
|
|
|
1041
1049
|
s3_object_version: ::String?,
|
|
1042
1050
|
zip_file: ::String?
|
|
1043
1051
|
},
|
|
1044
|
-
?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1052
|
+
?compatible_runtimes: Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")],
|
|
1045
1053
|
?license_info: ::String,
|
|
1046
1054
|
?compatible_architectures: Array[("x86_64" | "arm64")]
|
|
1047
1055
|
) -> _PublishLayerVersionResponseSuccess
|
|
@@ -1051,7 +1059,7 @@ module Aws
|
|
|
1051
1059
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1052
1060
|
def function_name: () -> ::String
|
|
1053
1061
|
def function_arn: () -> ::String
|
|
1054
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1062
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1055
1063
|
def role: () -> ::String
|
|
1056
1064
|
def handler: () -> ::String
|
|
1057
1065
|
def code_size: () -> ::Integer
|
|
@@ -1085,6 +1093,7 @@ module Aws
|
|
|
1085
1093
|
def snap_start: () -> Types::SnapStartResponse
|
|
1086
1094
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1087
1095
|
def logging_config: () -> Types::LoggingConfig
|
|
1096
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1088
1097
|
end
|
|
1089
1098
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_version-instance_method
|
|
1090
1099
|
def publish_version: (
|
|
@@ -1376,7 +1385,8 @@ module Aws
|
|
|
1376
1385
|
},
|
|
1377
1386
|
?provisioned_poller_config: {
|
|
1378
1387
|
minimum_pollers: ::Integer?,
|
|
1379
|
-
maximum_pollers: ::Integer
|
|
1388
|
+
maximum_pollers: ::Integer?,
|
|
1389
|
+
poller_group_name: ::String?
|
|
1380
1390
|
}
|
|
1381
1391
|
) -> _UpdateEventSourceMappingResponseSuccess
|
|
1382
1392
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventSourceMappingResponseSuccess
|
|
@@ -1385,7 +1395,7 @@ module Aws
|
|
|
1385
1395
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1386
1396
|
def function_name: () -> ::String
|
|
1387
1397
|
def function_arn: () -> ::String
|
|
1388
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1398
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1389
1399
|
def role: () -> ::String
|
|
1390
1400
|
def handler: () -> ::String
|
|
1391
1401
|
def code_size: () -> ::Integer
|
|
@@ -1419,6 +1429,7 @@ module Aws
|
|
|
1419
1429
|
def snap_start: () -> Types::SnapStartResponse
|
|
1420
1430
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1421
1431
|
def logging_config: () -> Types::LoggingConfig
|
|
1432
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1422
1433
|
end
|
|
1423
1434
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_code-instance_method
|
|
1424
1435
|
def update_function_code: (
|
|
@@ -1440,7 +1451,7 @@ module Aws
|
|
|
1440
1451
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1441
1452
|
def function_name: () -> ::String
|
|
1442
1453
|
def function_arn: () -> ::String
|
|
1443
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1454
|
+
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1444
1455
|
def role: () -> ::String
|
|
1445
1456
|
def handler: () -> ::String
|
|
1446
1457
|
def code_size: () -> ::Integer
|
|
@@ -1474,6 +1485,7 @@ module Aws
|
|
|
1474
1485
|
def snap_start: () -> Types::SnapStartResponse
|
|
1475
1486
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1476
1487
|
def logging_config: () -> Types::LoggingConfig
|
|
1488
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1477
1489
|
end
|
|
1478
1490
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_configuration-instance_method
|
|
1479
1491
|
def update_function_configuration: (
|
|
@@ -1491,7 +1503,7 @@ module Aws
|
|
|
1491
1503
|
?environment: {
|
|
1492
1504
|
variables: Hash[::String, ::String]?
|
|
1493
1505
|
},
|
|
1494
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1506
|
+
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25"),
|
|
1495
1507
|
?dead_letter_config: {
|
|
1496
1508
|
target_arn: ::String?
|
|
1497
1509
|
},
|
data/sig/types.rbs
CHANGED
|
@@ -190,7 +190,7 @@ module Aws::Lambda
|
|
|
190
190
|
|
|
191
191
|
class CreateFunctionRequest
|
|
192
192
|
attr_accessor function_name: ::String
|
|
193
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
193
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
194
194
|
attr_accessor role: ::String
|
|
195
195
|
attr_accessor handler: ::String
|
|
196
196
|
attr_accessor code: Types::FunctionCode
|
|
@@ -213,6 +213,7 @@ module Aws::Lambda
|
|
|
213
213
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
214
214
|
attr_accessor snap_start: Types::SnapStart
|
|
215
215
|
attr_accessor logging_config: Types::LoggingConfig
|
|
216
|
+
attr_accessor tenancy_config: Types::TenancyConfig
|
|
216
217
|
SENSITIVE: []
|
|
217
218
|
end
|
|
218
219
|
|
|
@@ -468,7 +469,7 @@ module Aws::Lambda
|
|
|
468
469
|
class FunctionConfiguration
|
|
469
470
|
attr_accessor function_name: ::String
|
|
470
471
|
attr_accessor function_arn: ::String
|
|
471
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
472
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
472
473
|
attr_accessor role: ::String
|
|
473
474
|
attr_accessor handler: ::String
|
|
474
475
|
attr_accessor code_size: ::Integer
|
|
@@ -502,6 +503,7 @@ module Aws::Lambda
|
|
|
502
503
|
attr_accessor snap_start: Types::SnapStartResponse
|
|
503
504
|
attr_accessor runtime_version_config: Types::RuntimeVersionConfig
|
|
504
505
|
attr_accessor logging_config: Types::LoggingConfig
|
|
506
|
+
attr_accessor tenancy_config: Types::TenancyConfig
|
|
505
507
|
SENSITIVE: []
|
|
506
508
|
end
|
|
507
509
|
|
|
@@ -660,7 +662,7 @@ module Aws::Lambda
|
|
|
660
662
|
attr_accessor description: ::String
|
|
661
663
|
attr_accessor created_date: ::Time
|
|
662
664
|
attr_accessor version: ::Integer
|
|
663
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
665
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
664
666
|
attr_accessor license_info: ::String
|
|
665
667
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
666
668
|
SENSITIVE: []
|
|
@@ -775,6 +777,7 @@ module Aws::Lambda
|
|
|
775
777
|
attr_accessor client_context: ::String
|
|
776
778
|
attr_accessor payload: ::String
|
|
777
779
|
attr_accessor qualifier: ::String
|
|
780
|
+
attr_accessor tenant_id: ::String
|
|
778
781
|
SENSITIVE: [:payload]
|
|
779
782
|
end
|
|
780
783
|
|
|
@@ -819,6 +822,7 @@ module Aws::Lambda
|
|
|
819
822
|
attr_accessor client_context: ::String
|
|
820
823
|
attr_accessor qualifier: ::String
|
|
821
824
|
attr_accessor payload: ::String
|
|
825
|
+
attr_accessor tenant_id: ::String
|
|
822
826
|
SENSITIVE: [:payload]
|
|
823
827
|
end
|
|
824
828
|
|
|
@@ -903,7 +907,7 @@ module Aws::Lambda
|
|
|
903
907
|
attr_accessor version: ::Integer
|
|
904
908
|
attr_accessor description: ::String
|
|
905
909
|
attr_accessor created_date: ::Time
|
|
906
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
910
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
907
911
|
attr_accessor license_info: ::String
|
|
908
912
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
909
913
|
SENSITIVE: []
|
|
@@ -1010,7 +1014,7 @@ module Aws::Lambda
|
|
|
1010
1014
|
end
|
|
1011
1015
|
|
|
1012
1016
|
class ListLayerVersionsRequest
|
|
1013
|
-
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1017
|
+
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1014
1018
|
attr_accessor layer_name: ::String
|
|
1015
1019
|
attr_accessor marker: ::String
|
|
1016
1020
|
attr_accessor max_items: ::Integer
|
|
@@ -1025,7 +1029,7 @@ module Aws::Lambda
|
|
|
1025
1029
|
end
|
|
1026
1030
|
|
|
1027
1031
|
class ListLayersRequest
|
|
1028
|
-
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1032
|
+
attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1029
1033
|
attr_accessor marker: ::String
|
|
1030
1034
|
attr_accessor max_items: ::Integer
|
|
1031
1035
|
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
@@ -1124,6 +1128,7 @@ module Aws::Lambda
|
|
|
1124
1128
|
class ProvisionedPollerConfig
|
|
1125
1129
|
attr_accessor minimum_pollers: ::Integer
|
|
1126
1130
|
attr_accessor maximum_pollers: ::Integer
|
|
1131
|
+
attr_accessor poller_group_name: ::String
|
|
1127
1132
|
SENSITIVE: []
|
|
1128
1133
|
end
|
|
1129
1134
|
|
|
@@ -1131,7 +1136,7 @@ module Aws::Lambda
|
|
|
1131
1136
|
attr_accessor layer_name: ::String
|
|
1132
1137
|
attr_accessor description: ::String
|
|
1133
1138
|
attr_accessor content: Types::LayerVersionContentInput
|
|
1134
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1139
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
1135
1140
|
attr_accessor license_info: ::String
|
|
1136
1141
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1137
1142
|
SENSITIVE: []
|
|
@@ -1144,7 +1149,7 @@ module Aws::Lambda
|
|
|
1144
1149
|
attr_accessor description: ::String
|
|
1145
1150
|
attr_accessor created_date: ::Time
|
|
1146
1151
|
attr_accessor version: ::Integer
|
|
1147
|
-
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1152
|
+
attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")]
|
|
1148
1153
|
attr_accessor license_info: ::String
|
|
1149
1154
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1150
1155
|
SENSITIVE: []
|
|
@@ -1373,6 +1378,11 @@ module Aws::Lambda
|
|
|
1373
1378
|
SENSITIVE: []
|
|
1374
1379
|
end
|
|
1375
1380
|
|
|
1381
|
+
class TenancyConfig
|
|
1382
|
+
attr_accessor tenant_isolation_mode: ("PER_TENANT")
|
|
1383
|
+
SENSITIVE: []
|
|
1384
|
+
end
|
|
1385
|
+
|
|
1376
1386
|
class TooManyRequestsException
|
|
1377
1387
|
attr_accessor retry_after_seconds: ::String
|
|
1378
1388
|
attr_accessor type: ::String
|
|
@@ -1475,7 +1485,7 @@ module Aws::Lambda
|
|
|
1475
1485
|
attr_accessor memory_size: ::Integer
|
|
1476
1486
|
attr_accessor vpc_config: Types::VpcConfig
|
|
1477
1487
|
attr_accessor environment: Types::Environment
|
|
1478
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "
|
|
1488
|
+
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "ruby3.3" | "ruby3.4" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21" | "python3.13" | "nodejs22.x" | "nodejs24.x" | "python3.14" | "java25")
|
|
1479
1489
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
|
1480
1490
|
attr_accessor kms_key_arn: ::String
|
|
1481
1491
|
attr_accessor tracing_config: Types::TracingConfig
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-lambda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.167.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|