aws-sdk-lambda 1.182.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +365 -330
- data/lib/aws-sdk-lambda/client_api.rb +166 -59
- data/lib/aws-sdk-lambda/errors.rb +189 -0
- data/lib/aws-sdk-lambda/types.rb +570 -300
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +112 -104
- data/sig/errors.rbs +36 -0
- data/sig/types.rbs +107 -44
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -109,13 +109,13 @@ module Aws
|
|
|
109
109
|
action: ::String,
|
|
110
110
|
principal: ::String,
|
|
111
111
|
?source_arn: ::String,
|
|
112
|
+
?function_url_auth_type: ("NONE" | "AWS_IAM"),
|
|
113
|
+
?invoked_via_function_url: bool,
|
|
112
114
|
?source_account: ::String,
|
|
113
115
|
?event_source_token: ::String,
|
|
114
116
|
?qualifier: ::String,
|
|
115
117
|
?revision_id: ::String,
|
|
116
|
-
?principal_org_id: ::String
|
|
117
|
-
?function_url_auth_type: ("NONE" | "AWS_IAM"),
|
|
118
|
-
?invoked_via_function_url: bool
|
|
118
|
+
?principal_org_id: ::String
|
|
119
119
|
) -> _AddPermissionResponseSuccess
|
|
120
120
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddPermissionResponseSuccess
|
|
121
121
|
|
|
@@ -208,7 +208,11 @@ module Aws
|
|
|
208
208
|
},
|
|
209
209
|
?capacity_provider_scaling_config: Params::capacity_provider_scaling_config,
|
|
210
210
|
?kms_key_arn: ::String,
|
|
211
|
-
?tags: Hash[::String, ::String]
|
|
211
|
+
?tags: Hash[::String, ::String],
|
|
212
|
+
?propagate_tags: {
|
|
213
|
+
mode: ("None" | "Explicit")?,
|
|
214
|
+
explicit_tags: Hash[::String, ::String]?
|
|
215
|
+
}
|
|
212
216
|
) -> _CreateCapacityProviderResponseSuccess
|
|
213
217
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCapacityProviderResponseSuccess
|
|
214
218
|
|
|
@@ -239,6 +243,11 @@ module Aws
|
|
|
239
243
|
def parallelization_factor: () -> ::Integer
|
|
240
244
|
def event_source_arn: () -> ::String
|
|
241
245
|
def filter_criteria: () -> Types::FilterCriteria
|
|
246
|
+
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
247
|
+
def kms_key_arn: () -> ::String
|
|
248
|
+
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
249
|
+
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
250
|
+
def scaling_config: () -> Types::ScalingConfig
|
|
242
251
|
def function_arn: () -> ::String
|
|
243
252
|
def last_modified: () -> ::Time
|
|
244
253
|
def last_processing_result: () -> ::String
|
|
@@ -256,13 +265,8 @@ module Aws
|
|
|
256
265
|
def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
|
|
257
266
|
def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
|
|
258
267
|
def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
|
|
259
|
-
def scaling_config: () -> Types::ScalingConfig
|
|
260
268
|
def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
|
|
261
|
-
def kms_key_arn: () -> ::String
|
|
262
|
-
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
263
269
|
def event_source_mapping_arn: () -> ::String
|
|
264
|
-
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
265
|
-
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
266
270
|
def provisioned_poller_config: () -> Types::ProvisionedPollerConfig
|
|
267
271
|
end
|
|
268
272
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_event_source_mapping-instance_method
|
|
@@ -278,6 +282,16 @@ module Aws
|
|
|
278
282
|
}
|
|
279
283
|
]?
|
|
280
284
|
},
|
|
285
|
+
?kms_key_arn: ::String,
|
|
286
|
+
?metrics_config: {
|
|
287
|
+
metrics: Array[("EventCount" | "ErrorCount" | "KafkaMetrics")]?
|
|
288
|
+
},
|
|
289
|
+
?logging_config: {
|
|
290
|
+
system_log_level: ("DEBUG" | "INFO" | "WARN")?
|
|
291
|
+
},
|
|
292
|
+
?scaling_config: {
|
|
293
|
+
maximum_concurrency: ::Integer?
|
|
294
|
+
},
|
|
281
295
|
?maximum_batching_window_in_seconds: ::Integer,
|
|
282
296
|
?parallelization_factor: ::Integer,
|
|
283
297
|
?starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP"),
|
|
@@ -302,21 +316,11 @@ module Aws
|
|
|
302
316
|
?function_response_types: Array[("ReportBatchItemFailures")],
|
|
303
317
|
?amazon_managed_kafka_event_source_config: Params::amazon_managed_kafka_event_source_config,
|
|
304
318
|
?self_managed_kafka_event_source_config: Params::self_managed_kafka_event_source_config,
|
|
305
|
-
?scaling_config: {
|
|
306
|
-
maximum_concurrency: ::Integer?
|
|
307
|
-
},
|
|
308
319
|
?document_db_event_source_config: {
|
|
309
320
|
database_name: ::String?,
|
|
310
321
|
collection_name: ::String?,
|
|
311
322
|
full_document: ("UpdateLookup" | "Default")?
|
|
312
323
|
},
|
|
313
|
-
?kms_key_arn: ::String,
|
|
314
|
-
?metrics_config: {
|
|
315
|
-
metrics: Array[("EventCount" | "ErrorCount" | "KafkaMetrics")]?
|
|
316
|
-
},
|
|
317
|
-
?logging_config: {
|
|
318
|
-
system_log_level: ("DEBUG" | "INFO" | "WARN")?
|
|
319
|
-
},
|
|
320
324
|
?provisioned_poller_config: {
|
|
321
325
|
minimum_pollers: ::Integer?,
|
|
322
326
|
maximum_pollers: ::Integer?,
|
|
@@ -329,7 +333,7 @@ module Aws
|
|
|
329
333
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
330
334
|
def function_name: () -> ::String
|
|
331
335
|
def function_arn: () -> ::String
|
|
332
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
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")
|
|
333
337
|
def role: () -> ::String
|
|
334
338
|
def handler: () -> ::String
|
|
335
339
|
def code_size: () -> ::Integer
|
|
@@ -349,29 +353,29 @@ module Aws
|
|
|
349
353
|
def layers: () -> ::Array[Types::Layer]
|
|
350
354
|
def state: () -> ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
351
355
|
def state_reason: () -> ::String
|
|
352
|
-
def 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" | "
|
|
356
|
+
def 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")
|
|
353
357
|
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
354
358
|
def last_update_status_reason: () -> ::String
|
|
355
|
-
def 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")
|
|
359
|
+
def 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")
|
|
356
360
|
def file_system_configs: () -> ::Array[Types::FileSystemConfig]
|
|
357
|
-
def package_type: () -> ("Zip" | "Image")
|
|
358
|
-
def image_config_response: () -> Types::ImageConfigResponse
|
|
359
361
|
def signing_profile_version_arn: () -> ::String
|
|
360
362
|
def signing_job_arn: () -> ::String
|
|
363
|
+
def package_type: () -> ("Zip" | "Image")
|
|
364
|
+
def image_config_response: () -> Types::ImageConfigResponse
|
|
361
365
|
def architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
362
366
|
def ephemeral_storage: () -> Types::EphemeralStorage
|
|
363
367
|
def snap_start: () -> Types::SnapStartResponse
|
|
364
368
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
365
369
|
def logging_config: () -> Types::LoggingConfig
|
|
370
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
366
371
|
def capacity_provider_config: () -> Types::CapacityProviderConfig
|
|
367
372
|
def config_sha_256: () -> ::String
|
|
368
373
|
def durable_config: () -> Types::DurableConfig
|
|
369
|
-
def tenancy_config: () -> Types::TenancyConfig
|
|
370
374
|
end
|
|
371
375
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
|
|
372
376
|
def create_function: (
|
|
373
377
|
function_name: ::String,
|
|
374
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
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"),
|
|
375
379
|
role: ::String,
|
|
376
380
|
?handler: ::String,
|
|
377
381
|
code: {
|
|
@@ -386,6 +390,7 @@ module Aws
|
|
|
386
390
|
?timeout: ::Integer,
|
|
387
391
|
?memory_size: ::Integer,
|
|
388
392
|
?publish: bool,
|
|
393
|
+
?publish_to: ("LATEST_PUBLISHED"),
|
|
389
394
|
?vpc_config: {
|
|
390
395
|
subnet_ids: Array[::String]?,
|
|
391
396
|
security_group_ids: Array[::String]?,
|
|
@@ -410,12 +415,12 @@ module Aws
|
|
|
410
415
|
local_mount_path: ::String
|
|
411
416
|
}
|
|
412
417
|
],
|
|
418
|
+
?code_signing_config_arn: ::String,
|
|
413
419
|
?image_config: {
|
|
414
420
|
entry_point: Array[::String]?,
|
|
415
421
|
command: Array[::String]?,
|
|
416
422
|
working_directory: ::String?
|
|
417
423
|
},
|
|
418
|
-
?code_signing_config_arn: ::String,
|
|
419
424
|
?architectures: Array[("x86_64" | "arm64")],
|
|
420
425
|
?ephemeral_storage: {
|
|
421
426
|
size: ::Integer
|
|
@@ -429,6 +434,9 @@ module Aws
|
|
|
429
434
|
system_log_level: ("DEBUG" | "INFO" | "WARN")?,
|
|
430
435
|
log_group: ::String?
|
|
431
436
|
},
|
|
437
|
+
?tenancy_config: {
|
|
438
|
+
tenant_isolation_mode: ("PER_TENANT")
|
|
439
|
+
},
|
|
432
440
|
?capacity_provider_config: {
|
|
433
441
|
lambda_managed_instances_capacity_provider_config: {
|
|
434
442
|
capacity_provider_arn: ::String,
|
|
@@ -436,13 +444,9 @@ module Aws
|
|
|
436
444
|
execution_environment_memory_gi_b_per_v_cpu: ::Float?
|
|
437
445
|
}
|
|
438
446
|
},
|
|
439
|
-
?publish_to: ("LATEST_PUBLISHED"),
|
|
440
447
|
?durable_config: {
|
|
441
448
|
retention_period_in_days: ::Integer?,
|
|
442
449
|
execution_timeout: ::Integer?
|
|
443
|
-
},
|
|
444
|
-
?tenancy_config: {
|
|
445
|
-
tenant_isolation_mode: ("PER_TENANT")
|
|
446
450
|
}
|
|
447
451
|
) -> _CreateFunctionResponseSuccess
|
|
448
452
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionResponseSuccess
|
|
@@ -502,6 +506,11 @@ module Aws
|
|
|
502
506
|
def parallelization_factor: () -> ::Integer
|
|
503
507
|
def event_source_arn: () -> ::String
|
|
504
508
|
def filter_criteria: () -> Types::FilterCriteria
|
|
509
|
+
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
510
|
+
def kms_key_arn: () -> ::String
|
|
511
|
+
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
512
|
+
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
513
|
+
def scaling_config: () -> Types::ScalingConfig
|
|
505
514
|
def function_arn: () -> ::String
|
|
506
515
|
def last_modified: () -> ::Time
|
|
507
516
|
def last_processing_result: () -> ::String
|
|
@@ -519,13 +528,8 @@ module Aws
|
|
|
519
528
|
def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
|
|
520
529
|
def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
|
|
521
530
|
def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
|
|
522
|
-
def scaling_config: () -> Types::ScalingConfig
|
|
523
531
|
def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
|
|
524
|
-
def kms_key_arn: () -> ::String
|
|
525
|
-
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
526
532
|
def event_source_mapping_arn: () -> ::String
|
|
527
|
-
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
528
|
-
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
529
533
|
def provisioned_poller_config: () -> Types::ProvisionedPollerConfig
|
|
530
534
|
end
|
|
531
535
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_event_source_mapping-instance_method
|
|
@@ -689,6 +693,11 @@ module Aws
|
|
|
689
693
|
def parallelization_factor: () -> ::Integer
|
|
690
694
|
def event_source_arn: () -> ::String
|
|
691
695
|
def filter_criteria: () -> Types::FilterCriteria
|
|
696
|
+
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
697
|
+
def kms_key_arn: () -> ::String
|
|
698
|
+
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
699
|
+
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
700
|
+
def scaling_config: () -> Types::ScalingConfig
|
|
692
701
|
def function_arn: () -> ::String
|
|
693
702
|
def last_modified: () -> ::Time
|
|
694
703
|
def last_processing_result: () -> ::String
|
|
@@ -706,13 +715,8 @@ module Aws
|
|
|
706
715
|
def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
|
|
707
716
|
def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
|
|
708
717
|
def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
|
|
709
|
-
def scaling_config: () -> Types::ScalingConfig
|
|
710
718
|
def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
|
|
711
|
-
def kms_key_arn: () -> ::String
|
|
712
|
-
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
713
719
|
def event_source_mapping_arn: () -> ::String
|
|
714
|
-
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
715
|
-
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
716
720
|
def provisioned_poller_config: () -> Types::ProvisionedPollerConfig
|
|
717
721
|
end
|
|
718
722
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_event_source_mapping-instance_method
|
|
@@ -761,7 +765,7 @@ module Aws
|
|
|
761
765
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
762
766
|
def function_name: () -> ::String
|
|
763
767
|
def function_arn: () -> ::String
|
|
764
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
768
|
+
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")
|
|
765
769
|
def role: () -> ::String
|
|
766
770
|
def handler: () -> ::String
|
|
767
771
|
def code_size: () -> ::Integer
|
|
@@ -781,24 +785,24 @@ module Aws
|
|
|
781
785
|
def layers: () -> ::Array[Types::Layer]
|
|
782
786
|
def state: () -> ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
783
787
|
def state_reason: () -> ::String
|
|
784
|
-
def 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" | "
|
|
788
|
+
def 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")
|
|
785
789
|
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
786
790
|
def last_update_status_reason: () -> ::String
|
|
787
|
-
def 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")
|
|
791
|
+
def 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")
|
|
788
792
|
def file_system_configs: () -> ::Array[Types::FileSystemConfig]
|
|
789
|
-
def package_type: () -> ("Zip" | "Image")
|
|
790
|
-
def image_config_response: () -> Types::ImageConfigResponse
|
|
791
793
|
def signing_profile_version_arn: () -> ::String
|
|
792
794
|
def signing_job_arn: () -> ::String
|
|
795
|
+
def package_type: () -> ("Zip" | "Image")
|
|
796
|
+
def image_config_response: () -> Types::ImageConfigResponse
|
|
793
797
|
def architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
794
798
|
def ephemeral_storage: () -> Types::EphemeralStorage
|
|
795
799
|
def snap_start: () -> Types::SnapStartResponse
|
|
796
800
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
797
801
|
def logging_config: () -> Types::LoggingConfig
|
|
802
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
798
803
|
def capacity_provider_config: () -> Types::CapacityProviderConfig
|
|
799
804
|
def config_sha_256: () -> ::String
|
|
800
805
|
def durable_config: () -> Types::DurableConfig
|
|
801
|
-
def tenancy_config: () -> Types::TenancyConfig
|
|
802
806
|
end
|
|
803
807
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_configuration-instance_method
|
|
804
808
|
def get_function_configuration: (
|
|
@@ -870,9 +874,9 @@ module Aws
|
|
|
870
874
|
def description: () -> ::String
|
|
871
875
|
def created_date: () -> ::Time
|
|
872
876
|
def version: () -> ::Integer
|
|
873
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
874
|
-
def license_info: () -> ::String
|
|
875
877
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
878
|
+
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")]
|
|
879
|
+
def license_info: () -> ::String
|
|
876
880
|
end
|
|
877
881
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version-instance_method
|
|
878
882
|
def get_layer_version: (
|
|
@@ -889,9 +893,9 @@ module Aws
|
|
|
889
893
|
def description: () -> ::String
|
|
890
894
|
def created_date: () -> ::Time
|
|
891
895
|
def version: () -> ::Integer
|
|
892
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
893
|
-
def license_info: () -> ::String
|
|
894
896
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
897
|
+
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")]
|
|
898
|
+
def license_info: () -> ::String
|
|
895
899
|
end
|
|
896
900
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version_by_arn-instance_method
|
|
897
901
|
def get_layer_version_by_arn: (
|
|
@@ -942,8 +946,8 @@ module Aws
|
|
|
942
946
|
interface _GetRuntimeManagementConfigResponseSuccess
|
|
943
947
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRuntimeManagementConfigResponse]
|
|
944
948
|
def update_runtime_on: () -> ("Auto" | "Manual" | "FunctionUpdate")
|
|
945
|
-
def runtime_version_arn: () -> ::String
|
|
946
949
|
def function_arn: () -> ::String
|
|
950
|
+
def runtime_version_arn: () -> ::String
|
|
947
951
|
end
|
|
948
952
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_runtime_management_config-instance_method
|
|
949
953
|
def get_runtime_management_config: (
|
|
@@ -1150,11 +1154,11 @@ module Aws
|
|
|
1150
1154
|
end
|
|
1151
1155
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
|
|
1152
1156
|
def list_layer_versions: (
|
|
1153
|
-
?
|
|
1157
|
+
?compatible_architecture: ("x86_64" | "arm64"),
|
|
1158
|
+
?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"),
|
|
1154
1159
|
layer_name: ::String,
|
|
1155
1160
|
?marker: ::String,
|
|
1156
|
-
?max_items: ::Integer
|
|
1157
|
-
?compatible_architecture: ("x86_64" | "arm64")
|
|
1161
|
+
?max_items: ::Integer
|
|
1158
1162
|
) -> _ListLayerVersionsResponseSuccess
|
|
1159
1163
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLayerVersionsResponseSuccess
|
|
1160
1164
|
|
|
@@ -1165,10 +1169,10 @@ module Aws
|
|
|
1165
1169
|
end
|
|
1166
1170
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
|
|
1167
1171
|
def list_layers: (
|
|
1168
|
-
?
|
|
1172
|
+
?compatible_architecture: ("x86_64" | "arm64"),
|
|
1173
|
+
?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
1174
|
?marker: ::String,
|
|
1170
|
-
?max_items: ::Integer
|
|
1171
|
-
?compatible_architecture: ("x86_64" | "arm64")
|
|
1175
|
+
?max_items: ::Integer
|
|
1172
1176
|
) -> _ListLayersResponseSuccess
|
|
1173
1177
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLayersResponseSuccess
|
|
1174
1178
|
|
|
@@ -1216,9 +1220,9 @@ module Aws
|
|
|
1216
1220
|
def description: () -> ::String
|
|
1217
1221
|
def created_date: () -> ::Time
|
|
1218
1222
|
def version: () -> ::Integer
|
|
1219
|
-
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" | "dotnet10" | "ruby4.0")]
|
|
1220
|
-
def license_info: () -> ::String
|
|
1221
1223
|
def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1224
|
+
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")]
|
|
1225
|
+
def license_info: () -> ::String
|
|
1222
1226
|
end
|
|
1223
1227
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_layer_version-instance_method
|
|
1224
1228
|
def publish_layer_version: (
|
|
@@ -1230,9 +1234,9 @@ module Aws
|
|
|
1230
1234
|
s3_object_version: ::String?,
|
|
1231
1235
|
zip_file: ::String?
|
|
1232
1236
|
},
|
|
1233
|
-
?
|
|
1234
|
-
?
|
|
1235
|
-
?
|
|
1237
|
+
?compatible_architectures: Array[("x86_64" | "arm64")],
|
|
1238
|
+
?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")],
|
|
1239
|
+
?license_info: ::String
|
|
1236
1240
|
) -> _PublishLayerVersionResponseSuccess
|
|
1237
1241
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishLayerVersionResponseSuccess
|
|
1238
1242
|
|
|
@@ -1240,7 +1244,7 @@ module Aws
|
|
|
1240
1244
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1241
1245
|
def function_name: () -> ::String
|
|
1242
1246
|
def function_arn: () -> ::String
|
|
1243
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
1247
|
+
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")
|
|
1244
1248
|
def role: () -> ::String
|
|
1245
1249
|
def handler: () -> ::String
|
|
1246
1250
|
def code_size: () -> ::Integer
|
|
@@ -1260,24 +1264,24 @@ module Aws
|
|
|
1260
1264
|
def layers: () -> ::Array[Types::Layer]
|
|
1261
1265
|
def state: () -> ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
1262
1266
|
def state_reason: () -> ::String
|
|
1263
|
-
def 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" | "
|
|
1267
|
+
def 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")
|
|
1264
1268
|
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
1265
1269
|
def last_update_status_reason: () -> ::String
|
|
1266
|
-
def 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")
|
|
1270
|
+
def 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")
|
|
1267
1271
|
def file_system_configs: () -> ::Array[Types::FileSystemConfig]
|
|
1268
|
-
def package_type: () -> ("Zip" | "Image")
|
|
1269
|
-
def image_config_response: () -> Types::ImageConfigResponse
|
|
1270
1272
|
def signing_profile_version_arn: () -> ::String
|
|
1271
1273
|
def signing_job_arn: () -> ::String
|
|
1274
|
+
def package_type: () -> ("Zip" | "Image")
|
|
1275
|
+
def image_config_response: () -> Types::ImageConfigResponse
|
|
1272
1276
|
def architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1273
1277
|
def ephemeral_storage: () -> Types::EphemeralStorage
|
|
1274
1278
|
def snap_start: () -> Types::SnapStartResponse
|
|
1275
1279
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1276
1280
|
def logging_config: () -> Types::LoggingConfig
|
|
1281
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1277
1282
|
def capacity_provider_config: () -> Types::CapacityProviderConfig
|
|
1278
1283
|
def config_sha_256: () -> ::String
|
|
1279
1284
|
def durable_config: () -> Types::DurableConfig
|
|
1280
|
-
def tenancy_config: () -> Types::TenancyConfig
|
|
1281
1285
|
end
|
|
1282
1286
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_version-instance_method
|
|
1283
1287
|
def publish_version: (
|
|
@@ -1359,8 +1363,8 @@ module Aws
|
|
|
1359
1363
|
interface _PutProvisionedConcurrencyConfigResponseSuccess
|
|
1360
1364
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutProvisionedConcurrencyConfigResponse]
|
|
1361
1365
|
def requested_provisioned_concurrent_executions: () -> ::Integer
|
|
1362
|
-
def available_provisioned_concurrent_executions: () -> ::Integer
|
|
1363
1366
|
def allocated_provisioned_concurrent_executions: () -> ::Integer
|
|
1367
|
+
def available_provisioned_concurrent_executions: () -> ::Integer
|
|
1364
1368
|
def status: () -> ("IN_PROGRESS" | "READY" | "FAILED")
|
|
1365
1369
|
def status_reason: () -> ::String
|
|
1366
1370
|
def last_modified: () -> ::Time
|
|
@@ -1499,7 +1503,11 @@ module Aws
|
|
|
1499
1503
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_capacity_provider-instance_method
|
|
1500
1504
|
def update_capacity_provider: (
|
|
1501
1505
|
capacity_provider_name: ::String,
|
|
1502
|
-
?capacity_provider_scaling_config: Params::capacity_provider_scaling_config
|
|
1506
|
+
?capacity_provider_scaling_config: Params::capacity_provider_scaling_config,
|
|
1507
|
+
?propagate_tags: {
|
|
1508
|
+
mode: ("None" | "Explicit")?,
|
|
1509
|
+
explicit_tags: Hash[::String, ::String]?
|
|
1510
|
+
}
|
|
1503
1511
|
) -> _UpdateCapacityProviderResponseSuccess
|
|
1504
1512
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCapacityProviderResponseSuccess
|
|
1505
1513
|
|
|
@@ -1530,6 +1538,11 @@ module Aws
|
|
|
1530
1538
|
def parallelization_factor: () -> ::Integer
|
|
1531
1539
|
def event_source_arn: () -> ::String
|
|
1532
1540
|
def filter_criteria: () -> Types::FilterCriteria
|
|
1541
|
+
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
1542
|
+
def kms_key_arn: () -> ::String
|
|
1543
|
+
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
1544
|
+
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
1545
|
+
def scaling_config: () -> Types::ScalingConfig
|
|
1533
1546
|
def function_arn: () -> ::String
|
|
1534
1547
|
def last_modified: () -> ::Time
|
|
1535
1548
|
def last_processing_result: () -> ::String
|
|
@@ -1547,13 +1560,8 @@ module Aws
|
|
|
1547
1560
|
def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
|
|
1548
1561
|
def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
|
|
1549
1562
|
def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
|
|
1550
|
-
def scaling_config: () -> Types::ScalingConfig
|
|
1551
1563
|
def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
|
|
1552
|
-
def kms_key_arn: () -> ::String
|
|
1553
|
-
def filter_criteria_error: () -> Types::FilterCriteriaError
|
|
1554
1564
|
def event_source_mapping_arn: () -> ::String
|
|
1555
|
-
def metrics_config: () -> Types::EventSourceMappingMetricsConfig
|
|
1556
|
-
def logging_config: () -> Types::EventSourceMappingLoggingConfig
|
|
1557
1565
|
def provisioned_poller_config: () -> Types::ProvisionedPollerConfig
|
|
1558
1566
|
end
|
|
1559
1567
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_event_source_mapping-instance_method
|
|
@@ -1569,23 +1577,30 @@ module Aws
|
|
|
1569
1577
|
}
|
|
1570
1578
|
]?
|
|
1571
1579
|
},
|
|
1580
|
+
?kms_key_arn: ::String,
|
|
1581
|
+
?metrics_config: {
|
|
1582
|
+
metrics: Array[("EventCount" | "ErrorCount" | "KafkaMetrics")]?
|
|
1583
|
+
},
|
|
1584
|
+
?logging_config: {
|
|
1585
|
+
system_log_level: ("DEBUG" | "INFO" | "WARN")?
|
|
1586
|
+
},
|
|
1587
|
+
?scaling_config: {
|
|
1588
|
+
maximum_concurrency: ::Integer?
|
|
1589
|
+
},
|
|
1572
1590
|
?maximum_batching_window_in_seconds: ::Integer,
|
|
1591
|
+
?parallelization_factor: ::Integer,
|
|
1573
1592
|
?destination_config: Params::destination_config,
|
|
1574
1593
|
?maximum_record_age_in_seconds: ::Integer,
|
|
1575
1594
|
?bisect_batch_on_function_error: bool,
|
|
1576
1595
|
?maximum_retry_attempts: ::Integer,
|
|
1577
|
-
?
|
|
1596
|
+
?tumbling_window_in_seconds: ::Integer,
|
|
1578
1597
|
?source_access_configurations: Array[
|
|
1579
1598
|
{
|
|
1580
1599
|
type: ("BASIC_AUTH" | "VPC_SUBNET" | "VPC_SECURITY_GROUP" | "SASL_SCRAM_512_AUTH" | "SASL_SCRAM_256_AUTH" | "VIRTUAL_HOST" | "CLIENT_CERTIFICATE_TLS_AUTH" | "SERVER_ROOT_CA_CERTIFICATE")?,
|
|
1581
1600
|
uri: ::String?
|
|
1582
1601
|
}
|
|
1583
1602
|
],
|
|
1584
|
-
?tumbling_window_in_seconds: ::Integer,
|
|
1585
1603
|
?function_response_types: Array[("ReportBatchItemFailures")],
|
|
1586
|
-
?scaling_config: {
|
|
1587
|
-
maximum_concurrency: ::Integer?
|
|
1588
|
-
},
|
|
1589
1604
|
?amazon_managed_kafka_event_source_config: Params::amazon_managed_kafka_event_source_config,
|
|
1590
1605
|
?self_managed_kafka_event_source_config: Params::self_managed_kafka_event_source_config,
|
|
1591
1606
|
?document_db_event_source_config: {
|
|
@@ -1593,13 +1608,6 @@ module Aws
|
|
|
1593
1608
|
collection_name: ::String?,
|
|
1594
1609
|
full_document: ("UpdateLookup" | "Default")?
|
|
1595
1610
|
},
|
|
1596
|
-
?kms_key_arn: ::String,
|
|
1597
|
-
?metrics_config: {
|
|
1598
|
-
metrics: Array[("EventCount" | "ErrorCount" | "KafkaMetrics")]?
|
|
1599
|
-
},
|
|
1600
|
-
?logging_config: {
|
|
1601
|
-
system_log_level: ("DEBUG" | "INFO" | "WARN")?
|
|
1602
|
-
},
|
|
1603
1611
|
?provisioned_poller_config: {
|
|
1604
1612
|
minimum_pollers: ::Integer?,
|
|
1605
1613
|
maximum_pollers: ::Integer?,
|
|
@@ -1612,7 +1620,7 @@ module Aws
|
|
|
1612
1620
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1613
1621
|
def function_name: () -> ::String
|
|
1614
1622
|
def function_arn: () -> ::String
|
|
1615
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
1623
|
+
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")
|
|
1616
1624
|
def role: () -> ::String
|
|
1617
1625
|
def handler: () -> ::String
|
|
1618
1626
|
def code_size: () -> ::Integer
|
|
@@ -1632,24 +1640,24 @@ module Aws
|
|
|
1632
1640
|
def layers: () -> ::Array[Types::Layer]
|
|
1633
1641
|
def state: () -> ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
1634
1642
|
def state_reason: () -> ::String
|
|
1635
|
-
def 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" | "
|
|
1643
|
+
def 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")
|
|
1636
1644
|
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
1637
1645
|
def last_update_status_reason: () -> ::String
|
|
1638
|
-
def 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")
|
|
1646
|
+
def 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")
|
|
1639
1647
|
def file_system_configs: () -> ::Array[Types::FileSystemConfig]
|
|
1640
|
-
def package_type: () -> ("Zip" | "Image")
|
|
1641
|
-
def image_config_response: () -> Types::ImageConfigResponse
|
|
1642
1648
|
def signing_profile_version_arn: () -> ::String
|
|
1643
1649
|
def signing_job_arn: () -> ::String
|
|
1650
|
+
def package_type: () -> ("Zip" | "Image")
|
|
1651
|
+
def image_config_response: () -> Types::ImageConfigResponse
|
|
1644
1652
|
def architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1645
1653
|
def ephemeral_storage: () -> Types::EphemeralStorage
|
|
1646
1654
|
def snap_start: () -> Types::SnapStartResponse
|
|
1647
1655
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1648
1656
|
def logging_config: () -> Types::LoggingConfig
|
|
1657
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1649
1658
|
def capacity_provider_config: () -> Types::CapacityProviderConfig
|
|
1650
1659
|
def config_sha_256: () -> ::String
|
|
1651
1660
|
def durable_config: () -> Types::DurableConfig
|
|
1652
|
-
def tenancy_config: () -> Types::TenancyConfig
|
|
1653
1661
|
end
|
|
1654
1662
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_code-instance_method
|
|
1655
1663
|
def update_function_code: (
|
|
@@ -1659,12 +1667,12 @@ module Aws
|
|
|
1659
1667
|
?s3_key: ::String,
|
|
1660
1668
|
?s3_object_version: ::String,
|
|
1661
1669
|
?image_uri: ::String,
|
|
1670
|
+
?architectures: Array[("x86_64" | "arm64")],
|
|
1662
1671
|
?publish: bool,
|
|
1672
|
+
?publish_to: ("LATEST_PUBLISHED"),
|
|
1663
1673
|
?dry_run: bool,
|
|
1664
1674
|
?revision_id: ::String,
|
|
1665
|
-
?
|
|
1666
|
-
?source_kms_key_arn: ::String,
|
|
1667
|
-
?publish_to: ("LATEST_PUBLISHED")
|
|
1675
|
+
?source_kms_key_arn: ::String
|
|
1668
1676
|
) -> _UpdateFunctionCodeResponseSuccess
|
|
1669
1677
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionCodeResponseSuccess
|
|
1670
1678
|
|
|
@@ -1672,7 +1680,7 @@ module Aws
|
|
|
1672
1680
|
include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
|
|
1673
1681
|
def function_name: () -> ::String
|
|
1674
1682
|
def function_arn: () -> ::String
|
|
1675
|
-
def runtime: () -> ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
1683
|
+
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")
|
|
1676
1684
|
def role: () -> ::String
|
|
1677
1685
|
def handler: () -> ::String
|
|
1678
1686
|
def code_size: () -> ::Integer
|
|
@@ -1692,24 +1700,24 @@ module Aws
|
|
|
1692
1700
|
def layers: () -> ::Array[Types::Layer]
|
|
1693
1701
|
def state: () -> ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
1694
1702
|
def state_reason: () -> ::String
|
|
1695
|
-
def 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" | "
|
|
1703
|
+
def 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")
|
|
1696
1704
|
def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
|
|
1697
1705
|
def last_update_status_reason: () -> ::String
|
|
1698
|
-
def 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")
|
|
1706
|
+
def 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")
|
|
1699
1707
|
def file_system_configs: () -> ::Array[Types::FileSystemConfig]
|
|
1700
|
-
def package_type: () -> ("Zip" | "Image")
|
|
1701
|
-
def image_config_response: () -> Types::ImageConfigResponse
|
|
1702
1708
|
def signing_profile_version_arn: () -> ::String
|
|
1703
1709
|
def signing_job_arn: () -> ::String
|
|
1710
|
+
def package_type: () -> ("Zip" | "Image")
|
|
1711
|
+
def image_config_response: () -> Types::ImageConfigResponse
|
|
1704
1712
|
def architectures: () -> ::Array[("x86_64" | "arm64")]
|
|
1705
1713
|
def ephemeral_storage: () -> Types::EphemeralStorage
|
|
1706
1714
|
def snap_start: () -> Types::SnapStartResponse
|
|
1707
1715
|
def runtime_version_config: () -> Types::RuntimeVersionConfig
|
|
1708
1716
|
def logging_config: () -> Types::LoggingConfig
|
|
1717
|
+
def tenancy_config: () -> Types::TenancyConfig
|
|
1709
1718
|
def capacity_provider_config: () -> Types::CapacityProviderConfig
|
|
1710
1719
|
def config_sha_256: () -> ::String
|
|
1711
1720
|
def durable_config: () -> Types::DurableConfig
|
|
1712
|
-
def tenancy_config: () -> Types::TenancyConfig
|
|
1713
1721
|
end
|
|
1714
1722
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_configuration-instance_method
|
|
1715
1723
|
def update_function_configuration: (
|
|
@@ -1727,7 +1735,7 @@ module Aws
|
|
|
1727
1735
|
?environment: {
|
|
1728
1736
|
variables: Hash[::String, ::String]?
|
|
1729
1737
|
},
|
|
1730
|
-
?runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "
|
|
1738
|
+
?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"),
|
|
1731
1739
|
?dead_letter_config: {
|
|
1732
1740
|
target_arn: ::String?
|
|
1733
1741
|
},
|