aws-sdk-lambda 1.183.0 → 1.184.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +328 -328
- data/lib/aws-sdk-lambda/client_api.rb +153 -59
- data/lib/aws-sdk-lambda/errors.rb +189 -0
- data/lib/aws-sdk-lambda/types.rb +523 -294
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +102 -102
- data/sig/errors.rbs +36 -0
- data/sig/types.rbs +98 -44
- metadata +1 -1
data/sig/errors.rbs
CHANGED
|
@@ -11,6 +11,10 @@ module Aws
|
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
class AliasLimitExceededException < ::Aws::Errors::ServiceError
|
|
15
|
+
def type: () -> ::String
|
|
16
|
+
def message: () -> ::String
|
|
17
|
+
end
|
|
14
18
|
class CallbackTimeoutException < ::Aws::Errors::ServiceError
|
|
15
19
|
def type: () -> ::String
|
|
16
20
|
def message: () -> ::String
|
|
@@ -19,6 +23,18 @@ module Aws
|
|
|
19
23
|
def type: () -> ::String
|
|
20
24
|
def message: () -> ::String
|
|
21
25
|
end
|
|
26
|
+
class CodeArtifactUserDeletedException < ::Aws::Errors::ServiceError
|
|
27
|
+
def type: () -> ::String
|
|
28
|
+
def message: () -> ::String
|
|
29
|
+
end
|
|
30
|
+
class CodeArtifactUserFailedException < ::Aws::Errors::ServiceError
|
|
31
|
+
def type: () -> ::String
|
|
32
|
+
def message: () -> ::String
|
|
33
|
+
end
|
|
34
|
+
class CodeArtifactUserPendingException < ::Aws::Errors::ServiceError
|
|
35
|
+
def type: () -> ::String
|
|
36
|
+
def message: () -> ::String
|
|
37
|
+
end
|
|
22
38
|
class CodeSigningConfigNotFoundException < ::Aws::Errors::ServiceError
|
|
23
39
|
def type: () -> ::String
|
|
24
40
|
def message: () -> ::String
|
|
@@ -68,6 +84,10 @@ module Aws
|
|
|
68
84
|
def type: () -> ::String
|
|
69
85
|
def message: () -> ::String
|
|
70
86
|
end
|
|
87
|
+
class ENINotReadyException < ::Aws::Errors::ServiceError
|
|
88
|
+
def type: () -> ::String
|
|
89
|
+
def message: () -> ::String
|
|
90
|
+
end
|
|
71
91
|
class FunctionVersionsPerCapacityProviderLimitExceededException < ::Aws::Errors::ServiceError
|
|
72
92
|
def type: () -> ::String
|
|
73
93
|
def message: () -> ::String
|
|
@@ -116,6 +136,10 @@ module Aws
|
|
|
116
136
|
def type: () -> ::String
|
|
117
137
|
def message: () -> ::String
|
|
118
138
|
end
|
|
139
|
+
class ModeNotSupportedException < ::Aws::Errors::ServiceError
|
|
140
|
+
def type: () -> ::String
|
|
141
|
+
def message: () -> ::String
|
|
142
|
+
end
|
|
119
143
|
class NoPublishedVersionException < ::Aws::Errors::ServiceError
|
|
120
144
|
def type: () -> ::String
|
|
121
145
|
def message: () -> ::String
|
|
@@ -132,6 +156,10 @@ module Aws
|
|
|
132
156
|
def type: () -> ::String
|
|
133
157
|
def message: () -> ::String
|
|
134
158
|
end
|
|
159
|
+
class PublicPolicyException < ::Aws::Errors::ServiceError
|
|
160
|
+
def type: () -> ::String
|
|
161
|
+
def message: () -> ::String
|
|
162
|
+
end
|
|
135
163
|
class RecursiveInvocationException < ::Aws::Errors::ServiceError
|
|
136
164
|
def type: () -> ::String
|
|
137
165
|
def message: () -> ::String
|
|
@@ -176,6 +204,10 @@ module Aws
|
|
|
176
204
|
def type: () -> ::String
|
|
177
205
|
def message: () -> ::String
|
|
178
206
|
end
|
|
207
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
|
208
|
+
def type: () -> ::String
|
|
209
|
+
def message: () -> ::String
|
|
210
|
+
end
|
|
179
211
|
class SnapStartException < ::Aws::Errors::ServiceError
|
|
180
212
|
def type: () -> ::String
|
|
181
213
|
def message: () -> ::String
|
|
@@ -184,6 +216,10 @@ module Aws
|
|
|
184
216
|
def type: () -> ::String
|
|
185
217
|
def message: () -> ::String
|
|
186
218
|
end
|
|
219
|
+
class SnapStartRegenerationFailureException < ::Aws::Errors::ServiceError
|
|
220
|
+
def type: () -> ::String
|
|
221
|
+
def message: () -> ::String
|
|
222
|
+
end
|
|
187
223
|
class SnapStartTimeoutException < ::Aws::Errors::ServiceError
|
|
188
224
|
def type: () -> ::String
|
|
189
225
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -46,13 +46,13 @@ module Aws::Lambda
|
|
|
46
46
|
attr_accessor action: ::String
|
|
47
47
|
attr_accessor principal: ::String
|
|
48
48
|
attr_accessor source_arn: ::String
|
|
49
|
+
attr_accessor function_url_auth_type: ("NONE" | "AWS_IAM")
|
|
50
|
+
attr_accessor invoked_via_function_url: bool
|
|
49
51
|
attr_accessor source_account: ::String
|
|
50
52
|
attr_accessor event_source_token: ::String
|
|
51
53
|
attr_accessor qualifier: ::String
|
|
52
54
|
attr_accessor revision_id: ::String
|
|
53
55
|
attr_accessor principal_org_id: ::String
|
|
54
|
-
attr_accessor function_url_auth_type: ("NONE" | "AWS_IAM")
|
|
55
|
-
attr_accessor invoked_via_function_url: bool
|
|
56
56
|
SENSITIVE: []
|
|
57
57
|
end
|
|
58
58
|
|
|
@@ -71,6 +71,12 @@ module Aws::Lambda
|
|
|
71
71
|
SENSITIVE: []
|
|
72
72
|
end
|
|
73
73
|
|
|
74
|
+
class AliasLimitExceededException
|
|
75
|
+
attr_accessor type: ::String
|
|
76
|
+
attr_accessor message: ::String
|
|
77
|
+
SENSITIVE: []
|
|
78
|
+
end
|
|
79
|
+
|
|
74
80
|
class AliasRoutingConfiguration
|
|
75
81
|
attr_accessor additional_version_weights: ::Hash[::String, ::Float]
|
|
76
82
|
SENSITIVE: []
|
|
@@ -231,6 +237,24 @@ module Aws::Lambda
|
|
|
231
237
|
SENSITIVE: []
|
|
232
238
|
end
|
|
233
239
|
|
|
240
|
+
class CodeArtifactUserDeletedException
|
|
241
|
+
attr_accessor type: ::String
|
|
242
|
+
attr_accessor message: ::String
|
|
243
|
+
SENSITIVE: []
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
class CodeArtifactUserFailedException
|
|
247
|
+
attr_accessor type: ::String
|
|
248
|
+
attr_accessor message: ::String
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
class CodeArtifactUserPendingException
|
|
253
|
+
attr_accessor type: ::String
|
|
254
|
+
attr_accessor message: ::String
|
|
255
|
+
SENSITIVE: []
|
|
256
|
+
end
|
|
257
|
+
|
|
234
258
|
class CodeSigningConfig
|
|
235
259
|
attr_accessor code_signing_config_id: ::String
|
|
236
260
|
attr_accessor code_signing_config_arn: ::String
|
|
@@ -349,6 +373,10 @@ module Aws::Lambda
|
|
|
349
373
|
attr_accessor enabled: bool
|
|
350
374
|
attr_accessor batch_size: ::Integer
|
|
351
375
|
attr_accessor filter_criteria: Types::FilterCriteria
|
|
376
|
+
attr_accessor kms_key_arn: ::String
|
|
377
|
+
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
378
|
+
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
379
|
+
attr_accessor scaling_config: Types::ScalingConfig
|
|
352
380
|
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
|
353
381
|
attr_accessor parallelization_factor: ::Integer
|
|
354
382
|
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
|
|
@@ -366,18 +394,14 @@ module Aws::Lambda
|
|
|
366
394
|
attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
|
|
367
395
|
attr_accessor amazon_managed_kafka_event_source_config: Types::AmazonManagedKafkaEventSourceConfig
|
|
368
396
|
attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
|
|
369
|
-
attr_accessor scaling_config: Types::ScalingConfig
|
|
370
397
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
|
371
|
-
attr_accessor kms_key_arn: ::String
|
|
372
|
-
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
373
|
-
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
374
398
|
attr_accessor provisioned_poller_config: Types::ProvisionedPollerConfig
|
|
375
399
|
SENSITIVE: []
|
|
376
400
|
end
|
|
377
401
|
|
|
378
402
|
class CreateFunctionRequest
|
|
379
403
|
attr_accessor function_name: ::String
|
|
380
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
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")
|
|
381
405
|
attr_accessor role: ::String
|
|
382
406
|
attr_accessor handler: ::String
|
|
383
407
|
attr_accessor code: Types::FunctionCode
|
|
@@ -385,6 +409,7 @@ module Aws::Lambda
|
|
|
385
409
|
attr_accessor timeout: ::Integer
|
|
386
410
|
attr_accessor memory_size: ::Integer
|
|
387
411
|
attr_accessor publish: bool
|
|
412
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
388
413
|
attr_accessor vpc_config: Types::VpcConfig
|
|
389
414
|
attr_accessor package_type: ("Zip" | "Image")
|
|
390
415
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
|
@@ -394,16 +419,15 @@ module Aws::Lambda
|
|
|
394
419
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
395
420
|
attr_accessor layers: ::Array[::String]
|
|
396
421
|
attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
|
|
397
|
-
attr_accessor image_config: Types::ImageConfig
|
|
398
422
|
attr_accessor code_signing_config_arn: ::String
|
|
423
|
+
attr_accessor image_config: Types::ImageConfig
|
|
399
424
|
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
400
425
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
401
426
|
attr_accessor snap_start: Types::SnapStart
|
|
402
427
|
attr_accessor logging_config: Types::LoggingConfig
|
|
428
|
+
attr_accessor tenancy_config: Types::TenancyConfig
|
|
403
429
|
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
404
|
-
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
405
430
|
attr_accessor durable_config: Types::DurableConfig
|
|
406
|
-
attr_accessor tenancy_config: Types::TenancyConfig
|
|
407
431
|
SENSITIVE: []
|
|
408
432
|
end
|
|
409
433
|
|
|
@@ -579,6 +603,12 @@ module Aws::Lambda
|
|
|
579
603
|
SENSITIVE: []
|
|
580
604
|
end
|
|
581
605
|
|
|
606
|
+
class ENINotReadyException
|
|
607
|
+
attr_accessor type: ::String
|
|
608
|
+
attr_accessor message: ::String
|
|
609
|
+
SENSITIVE: []
|
|
610
|
+
end
|
|
611
|
+
|
|
582
612
|
class Environment
|
|
583
613
|
attr_accessor variables: ::Hash[::String, ::String]
|
|
584
614
|
SENSITIVE: [:variables]
|
|
@@ -671,6 +701,11 @@ module Aws::Lambda
|
|
|
671
701
|
attr_accessor parallelization_factor: ::Integer
|
|
672
702
|
attr_accessor event_source_arn: ::String
|
|
673
703
|
attr_accessor filter_criteria: Types::FilterCriteria
|
|
704
|
+
attr_accessor filter_criteria_error: Types::FilterCriteriaError
|
|
705
|
+
attr_accessor kms_key_arn: ::String
|
|
706
|
+
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
707
|
+
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
708
|
+
attr_accessor scaling_config: Types::ScalingConfig
|
|
674
709
|
attr_accessor function_arn: ::String
|
|
675
710
|
attr_accessor last_modified: ::Time
|
|
676
711
|
attr_accessor last_processing_result: ::String
|
|
@@ -688,13 +723,8 @@ module Aws::Lambda
|
|
|
688
723
|
attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
|
|
689
724
|
attr_accessor amazon_managed_kafka_event_source_config: Types::AmazonManagedKafkaEventSourceConfig
|
|
690
725
|
attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
|
|
691
|
-
attr_accessor scaling_config: Types::ScalingConfig
|
|
692
726
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
|
693
|
-
attr_accessor kms_key_arn: ::String
|
|
694
|
-
attr_accessor filter_criteria_error: Types::FilterCriteriaError
|
|
695
727
|
attr_accessor event_source_mapping_arn: ::String
|
|
696
|
-
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
697
|
-
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
698
728
|
attr_accessor provisioned_poller_config: Types::ProvisionedPollerConfig
|
|
699
729
|
SENSITIVE: []
|
|
700
730
|
end
|
|
@@ -794,7 +824,7 @@ module Aws::Lambda
|
|
|
794
824
|
class FunctionConfiguration
|
|
795
825
|
attr_accessor function_name: ::String
|
|
796
826
|
attr_accessor function_arn: ::String
|
|
797
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
827
|
+
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")
|
|
798
828
|
attr_accessor role: ::String
|
|
799
829
|
attr_accessor handler: ::String
|
|
800
830
|
attr_accessor code_size: ::Integer
|
|
@@ -814,24 +844,24 @@ module Aws::Lambda
|
|
|
814
844
|
attr_accessor layers: ::Array[Types::Layer]
|
|
815
845
|
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
816
846
|
attr_accessor state_reason: ::String
|
|
817
|
-
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "
|
|
847
|
+
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "ServiceQuotaExceededException" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted" | "DisallowedByVpcEncryptionControl" | "DrainingDurableExecutions")
|
|
818
848
|
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
819
849
|
attr_accessor last_update_status_reason: ::String
|
|
820
|
-
attr_accessor last_update_status_reason_code: ("EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted" | "DisallowedByVpcEncryptionControl")
|
|
850
|
+
attr_accessor last_update_status_reason_code: ("EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "ServiceQuotaExceededException" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted" | "DisallowedByVpcEncryptionControl")
|
|
821
851
|
attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
|
|
822
|
-
attr_accessor package_type: ("Zip" | "Image")
|
|
823
|
-
attr_accessor image_config_response: Types::ImageConfigResponse
|
|
824
852
|
attr_accessor signing_profile_version_arn: ::String
|
|
825
853
|
attr_accessor signing_job_arn: ::String
|
|
854
|
+
attr_accessor package_type: ("Zip" | "Image")
|
|
855
|
+
attr_accessor image_config_response: Types::ImageConfigResponse
|
|
826
856
|
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
827
857
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
828
858
|
attr_accessor snap_start: Types::SnapStartResponse
|
|
829
859
|
attr_accessor runtime_version_config: Types::RuntimeVersionConfig
|
|
830
860
|
attr_accessor logging_config: Types::LoggingConfig
|
|
861
|
+
attr_accessor tenancy_config: Types::TenancyConfig
|
|
831
862
|
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
832
863
|
attr_accessor config_sha_256: ::String
|
|
833
864
|
attr_accessor durable_config: Types::DurableConfig
|
|
834
|
-
attr_accessor tenancy_config: Types::TenancyConfig
|
|
835
865
|
SENSITIVE: []
|
|
836
866
|
end
|
|
837
867
|
|
|
@@ -1080,9 +1110,9 @@ module Aws::Lambda
|
|
|
1080
1110
|
attr_accessor description: ::String
|
|
1081
1111
|
attr_accessor created_date: ::Time
|
|
1082
1112
|
attr_accessor version: ::Integer
|
|
1083
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
1084
|
-
attr_accessor license_info: ::String
|
|
1085
1113
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1114
|
+
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")]
|
|
1115
|
+
attr_accessor license_info: ::String
|
|
1086
1116
|
SENSITIVE: []
|
|
1087
1117
|
end
|
|
1088
1118
|
|
|
@@ -1122,8 +1152,8 @@ module Aws::Lambda
|
|
|
1122
1152
|
|
|
1123
1153
|
class GetRuntimeManagementConfigResponse
|
|
1124
1154
|
attr_accessor update_runtime_on: ("Auto" | "Manual" | "FunctionUpdate")
|
|
1125
|
-
attr_accessor runtime_version_arn: ::String
|
|
1126
1155
|
attr_accessor function_arn: ::String
|
|
1156
|
+
attr_accessor runtime_version_arn: ::String
|
|
1127
1157
|
SENSITIVE: []
|
|
1128
1158
|
end
|
|
1129
1159
|
|
|
@@ -1349,9 +1379,9 @@ module Aws::Lambda
|
|
|
1349
1379
|
attr_accessor version: ::Integer
|
|
1350
1380
|
attr_accessor description: ::String
|
|
1351
1381
|
attr_accessor created_date: ::Time
|
|
1352
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
1353
|
-
attr_accessor license_info: ::String
|
|
1354
1382
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1383
|
+
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")]
|
|
1384
|
+
attr_accessor license_info: ::String
|
|
1355
1385
|
SENSITIVE: []
|
|
1356
1386
|
end
|
|
1357
1387
|
|
|
@@ -1502,11 +1532,11 @@ module Aws::Lambda
|
|
|
1502
1532
|
end
|
|
1503
1533
|
|
|
1504
1534
|
class ListLayerVersionsRequest
|
|
1505
|
-
attr_accessor
|
|
1535
|
+
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1536
|
+
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")
|
|
1506
1537
|
attr_accessor layer_name: ::String
|
|
1507
1538
|
attr_accessor marker: ::String
|
|
1508
1539
|
attr_accessor max_items: ::Integer
|
|
1509
|
-
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1510
1540
|
SENSITIVE: []
|
|
1511
1541
|
end
|
|
1512
1542
|
|
|
@@ -1517,10 +1547,10 @@ module Aws::Lambda
|
|
|
1517
1547
|
end
|
|
1518
1548
|
|
|
1519
1549
|
class ListLayersRequest
|
|
1520
|
-
attr_accessor
|
|
1550
|
+
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1551
|
+
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")
|
|
1521
1552
|
attr_accessor marker: ::String
|
|
1522
1553
|
attr_accessor max_items: ::Integer
|
|
1523
|
-
attr_accessor compatible_architecture: ("x86_64" | "arm64")
|
|
1524
1554
|
SENSITIVE: []
|
|
1525
1555
|
end
|
|
1526
1556
|
|
|
@@ -1574,6 +1604,12 @@ module Aws::Lambda
|
|
|
1574
1604
|
SENSITIVE: []
|
|
1575
1605
|
end
|
|
1576
1606
|
|
|
1607
|
+
class ModeNotSupportedException
|
|
1608
|
+
attr_accessor type: ::String
|
|
1609
|
+
attr_accessor message: ::String
|
|
1610
|
+
SENSITIVE: []
|
|
1611
|
+
end
|
|
1612
|
+
|
|
1577
1613
|
class NoPublishedVersionException
|
|
1578
1614
|
attr_accessor type: ::String
|
|
1579
1615
|
attr_accessor message: ::String
|
|
@@ -1667,13 +1703,19 @@ module Aws::Lambda
|
|
|
1667
1703
|
SENSITIVE: []
|
|
1668
1704
|
end
|
|
1669
1705
|
|
|
1706
|
+
class PublicPolicyException
|
|
1707
|
+
attr_accessor type: ::String
|
|
1708
|
+
attr_accessor message: ::String
|
|
1709
|
+
SENSITIVE: []
|
|
1710
|
+
end
|
|
1711
|
+
|
|
1670
1712
|
class PublishLayerVersionRequest
|
|
1671
1713
|
attr_accessor layer_name: ::String
|
|
1672
1714
|
attr_accessor description: ::String
|
|
1673
1715
|
attr_accessor content: Types::LayerVersionContentInput
|
|
1674
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
1675
|
-
attr_accessor license_info: ::String
|
|
1676
1716
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1717
|
+
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")]
|
|
1718
|
+
attr_accessor license_info: ::String
|
|
1677
1719
|
SENSITIVE: []
|
|
1678
1720
|
end
|
|
1679
1721
|
|
|
@@ -1684,9 +1726,9 @@ module Aws::Lambda
|
|
|
1684
1726
|
attr_accessor description: ::String
|
|
1685
1727
|
attr_accessor created_date: ::Time
|
|
1686
1728
|
attr_accessor version: ::Integer
|
|
1687
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
1688
|
-
attr_accessor license_info: ::String
|
|
1689
1729
|
attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
|
|
1730
|
+
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")]
|
|
1731
|
+
attr_accessor license_info: ::String
|
|
1690
1732
|
SENSITIVE: []
|
|
1691
1733
|
end
|
|
1692
1734
|
|
|
@@ -1758,8 +1800,8 @@ module Aws::Lambda
|
|
|
1758
1800
|
|
|
1759
1801
|
class PutProvisionedConcurrencyConfigResponse
|
|
1760
1802
|
attr_accessor requested_provisioned_concurrent_executions: ::Integer
|
|
1761
|
-
attr_accessor available_provisioned_concurrent_executions: ::Integer
|
|
1762
1803
|
attr_accessor allocated_provisioned_concurrent_executions: ::Integer
|
|
1804
|
+
attr_accessor available_provisioned_concurrent_executions: ::Integer
|
|
1763
1805
|
attr_accessor status: ("IN_PROGRESS" | "READY" | "FAILED")
|
|
1764
1806
|
attr_accessor status_reason: ::String
|
|
1765
1807
|
attr_accessor last_modified: ::Time
|
|
@@ -1923,6 +1965,12 @@ module Aws::Lambda
|
|
|
1923
1965
|
SENSITIVE: []
|
|
1924
1966
|
end
|
|
1925
1967
|
|
|
1968
|
+
class ServiceQuotaExceededException
|
|
1969
|
+
attr_accessor type: ::String
|
|
1970
|
+
attr_accessor message: ::String
|
|
1971
|
+
SENSITIVE: []
|
|
1972
|
+
end
|
|
1973
|
+
|
|
1926
1974
|
class SnapStart
|
|
1927
1975
|
attr_accessor apply_on: ("PublishedVersions" | "None")
|
|
1928
1976
|
SENSITIVE: []
|
|
@@ -1940,6 +1988,12 @@ module Aws::Lambda
|
|
|
1940
1988
|
SENSITIVE: []
|
|
1941
1989
|
end
|
|
1942
1990
|
|
|
1991
|
+
class SnapStartRegenerationFailureException
|
|
1992
|
+
attr_accessor type: ::String
|
|
1993
|
+
attr_accessor message: ::String
|
|
1994
|
+
SENSITIVE: []
|
|
1995
|
+
end
|
|
1996
|
+
|
|
1943
1997
|
class SnapStartResponse
|
|
1944
1998
|
attr_accessor apply_on: ("PublishedVersions" | "None")
|
|
1945
1999
|
attr_accessor optimization_status: ("On" | "Off")
|
|
@@ -2102,22 +2156,22 @@ module Aws::Lambda
|
|
|
2102
2156
|
attr_accessor enabled: bool
|
|
2103
2157
|
attr_accessor batch_size: ::Integer
|
|
2104
2158
|
attr_accessor filter_criteria: Types::FilterCriteria
|
|
2159
|
+
attr_accessor kms_key_arn: ::String
|
|
2160
|
+
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
2161
|
+
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
2162
|
+
attr_accessor scaling_config: Types::ScalingConfig
|
|
2105
2163
|
attr_accessor maximum_batching_window_in_seconds: ::Integer
|
|
2164
|
+
attr_accessor parallelization_factor: ::Integer
|
|
2106
2165
|
attr_accessor destination_config: Types::DestinationConfig
|
|
2107
2166
|
attr_accessor maximum_record_age_in_seconds: ::Integer
|
|
2108
2167
|
attr_accessor bisect_batch_on_function_error: bool
|
|
2109
2168
|
attr_accessor maximum_retry_attempts: ::Integer
|
|
2110
|
-
attr_accessor parallelization_factor: ::Integer
|
|
2111
|
-
attr_accessor source_access_configurations: ::Array[Types::SourceAccessConfiguration]
|
|
2112
2169
|
attr_accessor tumbling_window_in_seconds: ::Integer
|
|
2170
|
+
attr_accessor source_access_configurations: ::Array[Types::SourceAccessConfiguration]
|
|
2113
2171
|
attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
|
|
2114
|
-
attr_accessor scaling_config: Types::ScalingConfig
|
|
2115
2172
|
attr_accessor amazon_managed_kafka_event_source_config: Types::AmazonManagedKafkaEventSourceConfig
|
|
2116
2173
|
attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
|
|
2117
2174
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
|
2118
|
-
attr_accessor kms_key_arn: ::String
|
|
2119
|
-
attr_accessor metrics_config: Types::EventSourceMappingMetricsConfig
|
|
2120
|
-
attr_accessor logging_config: Types::EventSourceMappingLoggingConfig
|
|
2121
2175
|
attr_accessor provisioned_poller_config: Types::ProvisionedPollerConfig
|
|
2122
2176
|
SENSITIVE: []
|
|
2123
2177
|
end
|
|
@@ -2129,12 +2183,12 @@ module Aws::Lambda
|
|
|
2129
2183
|
attr_accessor s3_key: ::String
|
|
2130
2184
|
attr_accessor s3_object_version: ::String
|
|
2131
2185
|
attr_accessor image_uri: ::String
|
|
2186
|
+
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
2132
2187
|
attr_accessor publish: bool
|
|
2188
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
2133
2189
|
attr_accessor dry_run: bool
|
|
2134
2190
|
attr_accessor revision_id: ::String
|
|
2135
|
-
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
2136
2191
|
attr_accessor source_kms_key_arn: ::String
|
|
2137
|
-
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
2138
2192
|
SENSITIVE: [:zip_file]
|
|
2139
2193
|
end
|
|
2140
2194
|
|
|
@@ -2147,7 +2201,7 @@ module Aws::Lambda
|
|
|
2147
2201
|
attr_accessor memory_size: ::Integer
|
|
2148
2202
|
attr_accessor vpc_config: Types::VpcConfig
|
|
2149
2203
|
attr_accessor environment: Types::Environment
|
|
2150
|
-
attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
2204
|
+
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")
|
|
2151
2205
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
|
2152
2206
|
attr_accessor kms_key_arn: ::String
|
|
2153
2207
|
attr_accessor tracing_config: Types::TracingConfig
|