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
|
@@ -643,6 +643,21 @@ module Aws::Lambda
|
|
|
643
643
|
# Note that Lambda configures the comparison using the `StringLike`
|
|
644
644
|
# operator.
|
|
645
645
|
#
|
|
646
|
+
# @option params [String] :function_url_auth_type
|
|
647
|
+
# The type of authentication that your function URL uses. Set to
|
|
648
|
+
# `AWS_IAM` if you want to restrict access to authenticated users only.
|
|
649
|
+
# Set to `NONE` if you want to bypass IAM authentication to create a
|
|
650
|
+
# public endpoint. For more information, see [Control access to Lambda
|
|
651
|
+
# function URLs][1].
|
|
652
|
+
#
|
|
653
|
+
#
|
|
654
|
+
#
|
|
655
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html
|
|
656
|
+
#
|
|
657
|
+
# @option params [Boolean] :invoked_via_function_url
|
|
658
|
+
# Indicates whether the permission applies when the function is invoked
|
|
659
|
+
# through a function URL.
|
|
660
|
+
#
|
|
646
661
|
# @option params [String] :source_account
|
|
647
662
|
# For Amazon Web Services service, the ID of the Amazon Web Services
|
|
648
663
|
# account that owns the resource. Use this together with `SourceArn` to
|
|
@@ -667,21 +682,6 @@ module Aws::Lambda
|
|
|
667
682
|
# grant permissions to all the Amazon Web Services accounts under this
|
|
668
683
|
# organization.
|
|
669
684
|
#
|
|
670
|
-
# @option params [String] :function_url_auth_type
|
|
671
|
-
# The type of authentication that your function URL uses. Set to
|
|
672
|
-
# `AWS_IAM` if you want to restrict access to authenticated users only.
|
|
673
|
-
# Set to `NONE` if you want to bypass IAM authentication to create a
|
|
674
|
-
# public endpoint. For more information, see [Control access to Lambda
|
|
675
|
-
# function URLs][1].
|
|
676
|
-
#
|
|
677
|
-
#
|
|
678
|
-
#
|
|
679
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html
|
|
680
|
-
#
|
|
681
|
-
# @option params [Boolean] :invoked_via_function_url
|
|
682
|
-
# Indicates whether the permission applies when the function is invoked
|
|
683
|
-
# through a function URL.
|
|
684
|
-
#
|
|
685
685
|
# @return [Types::AddPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
686
686
|
#
|
|
687
687
|
# * {Types::AddPermissionResponse#statement #statement} => String
|
|
@@ -730,13 +730,13 @@ module Aws::Lambda
|
|
|
730
730
|
# action: "Action", # required
|
|
731
731
|
# principal: "Principal", # required
|
|
732
732
|
# source_arn: "Arn",
|
|
733
|
+
# function_url_auth_type: "NONE", # accepts NONE, AWS_IAM
|
|
734
|
+
# invoked_via_function_url: false,
|
|
733
735
|
# source_account: "SourceOwner",
|
|
734
736
|
# event_source_token: "EventSourceToken",
|
|
735
737
|
# qualifier: "NumericLatestPublishedOrAliasQualifier",
|
|
736
738
|
# revision_id: "String",
|
|
737
739
|
# principal_org_id: "PrincipalOrgID",
|
|
738
|
-
# function_url_auth_type: "NONE", # accepts NONE, AWS_IAM
|
|
739
|
-
# invoked_via_function_url: false,
|
|
740
740
|
# })
|
|
741
741
|
#
|
|
742
742
|
# @example Response structure
|
|
@@ -1326,6 +1326,42 @@ module Aws::Lambda
|
|
|
1326
1326
|
#
|
|
1327
1327
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
|
|
1328
1328
|
#
|
|
1329
|
+
# @option params [String] :kms_key_arn
|
|
1330
|
+
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
1331
|
+
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
1332
|
+
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
1333
|
+
# this property to encrypt data using your own customer managed key.
|
|
1334
|
+
#
|
|
1335
|
+
#
|
|
1336
|
+
#
|
|
1337
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
1338
|
+
#
|
|
1339
|
+
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
1340
|
+
# The metrics configuration for your event source. For more information,
|
|
1341
|
+
# see [Event source mapping metrics][1].
|
|
1342
|
+
#
|
|
1343
|
+
#
|
|
1344
|
+
#
|
|
1345
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
1346
|
+
#
|
|
1347
|
+
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
1348
|
+
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
1349
|
+
# configuration for your event source. For more information, see [Event
|
|
1350
|
+
# source mapping logging][1].
|
|
1351
|
+
#
|
|
1352
|
+
#
|
|
1353
|
+
#
|
|
1354
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/esm-logging.html
|
|
1355
|
+
#
|
|
1356
|
+
# @option params [Types::ScalingConfig] :scaling_config
|
|
1357
|
+
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
1358
|
+
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
1359
|
+
# event sources][1].
|
|
1360
|
+
#
|
|
1361
|
+
#
|
|
1362
|
+
#
|
|
1363
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
1364
|
+
#
|
|
1329
1365
|
# @option params [Integer] :maximum_batching_window_in_seconds
|
|
1330
1366
|
# The maximum amount of time, in seconds, that Lambda spends gathering
|
|
1331
1367
|
# records before invoking the function. You can configure
|
|
@@ -1413,45 +1449,9 @@ module Aws::Lambda
|
|
|
1413
1449
|
# Specific configuration settings for a self-managed Apache Kafka event
|
|
1414
1450
|
# source.
|
|
1415
1451
|
#
|
|
1416
|
-
# @option params [Types::ScalingConfig] :scaling_config
|
|
1417
|
-
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
1418
|
-
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
1419
|
-
# event sources][1].
|
|
1420
|
-
#
|
|
1421
|
-
#
|
|
1422
|
-
#
|
|
1423
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
1424
|
-
#
|
|
1425
1452
|
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
|
1426
1453
|
# Specific configuration settings for a DocumentDB event source.
|
|
1427
1454
|
#
|
|
1428
|
-
# @option params [String] :kms_key_arn
|
|
1429
|
-
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
1430
|
-
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
1431
|
-
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
1432
|
-
# this property to encrypt data using your own customer managed key.
|
|
1433
|
-
#
|
|
1434
|
-
#
|
|
1435
|
-
#
|
|
1436
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
1437
|
-
#
|
|
1438
|
-
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
1439
|
-
# The metrics configuration for your event source. For more information,
|
|
1440
|
-
# see [Event source mapping metrics][1].
|
|
1441
|
-
#
|
|
1442
|
-
#
|
|
1443
|
-
#
|
|
1444
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
1445
|
-
#
|
|
1446
|
-
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
1447
|
-
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
1448
|
-
# configuration for your event source. For more information, see [Event
|
|
1449
|
-
# source mapping logging][1].
|
|
1450
|
-
#
|
|
1451
|
-
#
|
|
1452
|
-
#
|
|
1453
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/esm-logging.html
|
|
1454
|
-
#
|
|
1455
1455
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
1456
1456
|
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
1457
1457
|
# provisioned mode configuration for the event source. For more
|
|
@@ -1471,6 +1471,11 @@ module Aws::Lambda
|
|
|
1471
1471
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
1472
1472
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
1473
1473
|
# * {Types::EventSourceMappingConfiguration#filter_criteria #filter_criteria} => Types::FilterCriteria
|
|
1474
|
+
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
1475
|
+
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
1476
|
+
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
1477
|
+
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
1478
|
+
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
1474
1479
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
1475
1480
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
1476
1481
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -1488,13 +1493,8 @@ module Aws::Lambda
|
|
|
1488
1493
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
1489
1494
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
1490
1495
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
1491
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
1492
1496
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
1493
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
1494
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
1495
1497
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
1496
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
1497
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
1498
1498
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
1499
1499
|
#
|
|
1500
1500
|
#
|
|
@@ -1533,6 +1533,16 @@ module Aws::Lambda
|
|
|
1533
1533
|
# },
|
|
1534
1534
|
# ],
|
|
1535
1535
|
# },
|
|
1536
|
+
# kms_key_arn: "KMSKeyArn",
|
|
1537
|
+
# metrics_config: {
|
|
1538
|
+
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
1539
|
+
# },
|
|
1540
|
+
# logging_config: {
|
|
1541
|
+
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
1542
|
+
# },
|
|
1543
|
+
# scaling_config: {
|
|
1544
|
+
# maximum_concurrency: 1,
|
|
1545
|
+
# },
|
|
1536
1546
|
# maximum_batching_window_in_seconds: 1,
|
|
1537
1547
|
# parallelization_factor: 1,
|
|
1538
1548
|
# starting_position: "TRIM_HORIZON", # accepts TRIM_HORIZON, LATEST, AT_TIMESTAMP
|
|
@@ -1602,21 +1612,11 @@ module Aws::Lambda
|
|
|
1602
1612
|
# ],
|
|
1603
1613
|
# },
|
|
1604
1614
|
# },
|
|
1605
|
-
# scaling_config: {
|
|
1606
|
-
# maximum_concurrency: 1,
|
|
1607
|
-
# },
|
|
1608
1615
|
# document_db_event_source_config: {
|
|
1609
1616
|
# database_name: "DatabaseName",
|
|
1610
1617
|
# collection_name: "CollectionName",
|
|
1611
1618
|
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
|
1612
1619
|
# },
|
|
1613
|
-
# kms_key_arn: "KMSKeyArn",
|
|
1614
|
-
# metrics_config: {
|
|
1615
|
-
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
1616
|
-
# },
|
|
1617
|
-
# logging_config: {
|
|
1618
|
-
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
1619
|
-
# },
|
|
1620
1620
|
# provisioned_poller_config: {
|
|
1621
1621
|
# minimum_pollers: 1,
|
|
1622
1622
|
# maximum_pollers: 1,
|
|
@@ -1635,6 +1635,13 @@ module Aws::Lambda
|
|
|
1635
1635
|
# resp.event_source_arn #=> String
|
|
1636
1636
|
# resp.filter_criteria.filters #=> Array
|
|
1637
1637
|
# resp.filter_criteria.filters[0].pattern #=> String
|
|
1638
|
+
# resp.filter_criteria_error.error_code #=> String
|
|
1639
|
+
# resp.filter_criteria_error.message #=> String
|
|
1640
|
+
# resp.kms_key_arn #=> String
|
|
1641
|
+
# resp.metrics_config.metrics #=> Array
|
|
1642
|
+
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
1643
|
+
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
1644
|
+
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
1638
1645
|
# resp.function_arn #=> String
|
|
1639
1646
|
# resp.last_modified #=> Time
|
|
1640
1647
|
# resp.last_processing_result #=> String
|
|
@@ -1674,17 +1681,10 @@ module Aws::Lambda
|
|
|
1674
1681
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
1675
1682
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
1676
1683
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
1677
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
1678
1684
|
# resp.document_db_event_source_config.database_name #=> String
|
|
1679
1685
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
1680
1686
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
1681
|
-
# resp.kms_key_arn #=> String
|
|
1682
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
1683
|
-
# resp.filter_criteria_error.message #=> String
|
|
1684
1687
|
# resp.event_source_mapping_arn #=> String
|
|
1685
|
-
# resp.metrics_config.metrics #=> Array
|
|
1686
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
1687
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
1688
1688
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
1689
1689
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
1690
1690
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -1848,6 +1848,9 @@ module Aws::Lambda
|
|
|
1848
1848
|
# Set to true to publish the first version of the function during
|
|
1849
1849
|
# creation.
|
|
1850
1850
|
#
|
|
1851
|
+
# @option params [String] :publish_to
|
|
1852
|
+
# Specifies where to publish the function version or configuration.
|
|
1853
|
+
#
|
|
1851
1854
|
# @option params [Types::VpcConfig] :vpc_config
|
|
1852
1855
|
# For network connectivity to Amazon Web Services resources in a VPC,
|
|
1853
1856
|
# specify a list of security groups and subnets in the VPC. When you
|
|
@@ -1933,6 +1936,12 @@ module Aws::Lambda
|
|
|
1933
1936
|
# Connection settings for an Amazon EFS file system or an Amazon S3
|
|
1934
1937
|
# Files file system.
|
|
1935
1938
|
#
|
|
1939
|
+
# @option params [String] :code_signing_config_arn
|
|
1940
|
+
# To enable code signing for this function, specify the ARN of a
|
|
1941
|
+
# code-signing configuration. A code-signing configuration includes a
|
|
1942
|
+
# set of signing profiles, which define the trusted publishers for this
|
|
1943
|
+
# function.
|
|
1944
|
+
#
|
|
1936
1945
|
# @option params [Types::ImageConfig] :image_config
|
|
1937
1946
|
# Container image [configuration values][1] that override the values in
|
|
1938
1947
|
# the container image Dockerfile.
|
|
@@ -1941,12 +1950,6 @@ module Aws::Lambda
|
|
|
1941
1950
|
#
|
|
1942
1951
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
|
|
1943
1952
|
#
|
|
1944
|
-
# @option params [String] :code_signing_config_arn
|
|
1945
|
-
# To enable code signing for this function, specify the ARN of a
|
|
1946
|
-
# code-signing configuration. A code-signing configuration includes a
|
|
1947
|
-
# set of signing profiles, which define the trusted publishers for this
|
|
1948
|
-
# function.
|
|
1949
|
-
#
|
|
1950
1953
|
# @option params [Array<String>] :architectures
|
|
1951
1954
|
# The instruction set architecture that the function supports. Enter a
|
|
1952
1955
|
# string array with one of the valid values (arm64 or x86\_64). The
|
|
@@ -1971,23 +1974,20 @@ module Aws::Lambda
|
|
|
1971
1974
|
# @option params [Types::LoggingConfig] :logging_config
|
|
1972
1975
|
# The function's Amazon CloudWatch Logs configuration settings.
|
|
1973
1976
|
#
|
|
1977
|
+
# @option params [Types::TenancyConfig] :tenancy_config
|
|
1978
|
+
# Configuration for multi-tenant applications that use Lambda functions.
|
|
1979
|
+
# Defines tenant isolation settings and resource allocations. Required
|
|
1980
|
+
# for functions supporting multiple tenants.
|
|
1981
|
+
#
|
|
1974
1982
|
# @option params [Types::CapacityProviderConfig] :capacity_provider_config
|
|
1975
1983
|
# Configuration for the capacity provider that manages compute resources
|
|
1976
1984
|
# for Lambda functions.
|
|
1977
1985
|
#
|
|
1978
|
-
# @option params [String] :publish_to
|
|
1979
|
-
# Specifies where to publish the function version or configuration.
|
|
1980
|
-
#
|
|
1981
1986
|
# @option params [Types::DurableConfig] :durable_config
|
|
1982
1987
|
# Configuration settings for durable functions. Enables creating
|
|
1983
1988
|
# functions with durability that can remember their state and continue
|
|
1984
1989
|
# execution even after interruptions.
|
|
1985
1990
|
#
|
|
1986
|
-
# @option params [Types::TenancyConfig] :tenancy_config
|
|
1987
|
-
# Configuration for multi-tenant applications that use Lambda functions.
|
|
1988
|
-
# Defines tenant isolation settings and resource allocations. Required
|
|
1989
|
-
# for functions supporting multiple tenants.
|
|
1990
|
-
#
|
|
1991
1991
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1992
1992
|
#
|
|
1993
1993
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
|
@@ -2017,19 +2017,19 @@ module Aws::Lambda
|
|
|
2017
2017
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
2018
2018
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
2019
2019
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
2020
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
2021
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
2022
2020
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
2023
2021
|
# * {Types::FunctionConfiguration#signing_job_arn #signing_job_arn} => String
|
|
2022
|
+
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
2023
|
+
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
2024
2024
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
2025
2025
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
2026
2026
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
2027
2027
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
2028
2028
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
2029
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
2029
2030
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
2030
2031
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
2031
2032
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
2032
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
2033
2033
|
#
|
|
2034
2034
|
#
|
|
2035
2035
|
# @example Example: To create a function
|
|
@@ -2106,7 +2106,7 @@ module Aws::Lambda
|
|
|
2106
2106
|
#
|
|
2107
2107
|
# resp = client.create_function({
|
|
2108
2108
|
# function_name: "FunctionName", # required
|
|
2109
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7,
|
|
2109
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
2110
2110
|
# role: "RoleArn", # required
|
|
2111
2111
|
# handler: "Handler",
|
|
2112
2112
|
# code: { # required
|
|
@@ -2121,6 +2121,7 @@ module Aws::Lambda
|
|
|
2121
2121
|
# timeout: 1,
|
|
2122
2122
|
# memory_size: 1,
|
|
2123
2123
|
# publish: false,
|
|
2124
|
+
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
2124
2125
|
# vpc_config: {
|
|
2125
2126
|
# subnet_ids: ["SubnetId"],
|
|
2126
2127
|
# security_group_ids: ["SecurityGroupId"],
|
|
@@ -2149,12 +2150,12 @@ module Aws::Lambda
|
|
|
2149
2150
|
# local_mount_path: "LocalMountPath", # required
|
|
2150
2151
|
# },
|
|
2151
2152
|
# ],
|
|
2153
|
+
# code_signing_config_arn: "CodeSigningConfigArn",
|
|
2152
2154
|
# image_config: {
|
|
2153
2155
|
# entry_point: ["String"],
|
|
2154
2156
|
# command: ["String"],
|
|
2155
2157
|
# working_directory: "WorkingDirectory",
|
|
2156
2158
|
# },
|
|
2157
|
-
# code_signing_config_arn: "CodeSigningConfigArn",
|
|
2158
2159
|
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
2159
2160
|
# ephemeral_storage: {
|
|
2160
2161
|
# size: 1, # required
|
|
@@ -2168,6 +2169,9 @@ module Aws::Lambda
|
|
|
2168
2169
|
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
2169
2170
|
# log_group: "LogGroup",
|
|
2170
2171
|
# },
|
|
2172
|
+
# tenancy_config: {
|
|
2173
|
+
# tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
|
|
2174
|
+
# },
|
|
2171
2175
|
# capacity_provider_config: {
|
|
2172
2176
|
# lambda_managed_instances_capacity_provider_config: { # required
|
|
2173
2177
|
# capacity_provider_arn: "CapacityProviderArn", # required
|
|
@@ -2175,21 +2179,17 @@ module Aws::Lambda
|
|
|
2175
2179
|
# execution_environment_memory_gi_b_per_v_cpu: 1.0,
|
|
2176
2180
|
# },
|
|
2177
2181
|
# },
|
|
2178
|
-
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
2179
2182
|
# durable_config: {
|
|
2180
2183
|
# retention_period_in_days: 1,
|
|
2181
2184
|
# execution_timeout: 1,
|
|
2182
2185
|
# },
|
|
2183
|
-
# tenancy_config: {
|
|
2184
|
-
# tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
|
|
2185
|
-
# },
|
|
2186
2186
|
# })
|
|
2187
2187
|
#
|
|
2188
2188
|
# @example Response structure
|
|
2189
2189
|
#
|
|
2190
2190
|
# resp.function_name #=> String
|
|
2191
2191
|
# resp.function_arn #=> String
|
|
2192
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
2192
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
2193
2193
|
# resp.role #=> String
|
|
2194
2194
|
# resp.handler #=> String
|
|
2195
2195
|
# resp.code_size #=> Integer
|
|
@@ -2221,13 +2221,15 @@ module Aws::Lambda
|
|
|
2221
2221
|
# resp.layers[0].signing_job_arn #=> String
|
|
2222
2222
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
2223
2223
|
# resp.state_reason #=> String
|
|
2224
|
-
# resp.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
2224
|
+
# resp.state_reason_code #=> String, one of "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"
|
|
2225
2225
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
2226
2226
|
# resp.last_update_status_reason #=> String
|
|
2227
|
-
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
2227
|
+
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
2228
2228
|
# resp.file_system_configs #=> Array
|
|
2229
2229
|
# resp.file_system_configs[0].arn #=> String
|
|
2230
2230
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
2231
|
+
# resp.signing_profile_version_arn #=> String
|
|
2232
|
+
# resp.signing_job_arn #=> String
|
|
2231
2233
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
2232
2234
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
2233
2235
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -2236,8 +2238,6 @@ module Aws::Lambda
|
|
|
2236
2238
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
2237
2239
|
# resp.image_config_response.error.error_code #=> String
|
|
2238
2240
|
# resp.image_config_response.error.message #=> String
|
|
2239
|
-
# resp.signing_profile_version_arn #=> String
|
|
2240
|
-
# resp.signing_job_arn #=> String
|
|
2241
2241
|
# resp.architectures #=> Array
|
|
2242
2242
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
2243
2243
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -2250,13 +2250,13 @@ module Aws::Lambda
|
|
|
2250
2250
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
2251
2251
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2252
2252
|
# resp.logging_config.log_group #=> String
|
|
2253
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
2253
2254
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
2254
2255
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
2255
2256
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
2256
2257
|
# resp.config_sha_256 #=> String
|
|
2257
2258
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
2258
2259
|
# resp.durable_config.execution_timeout #=> Integer
|
|
2259
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
2260
2260
|
#
|
|
2261
2261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunction AWS API Documentation
|
|
2262
2262
|
#
|
|
@@ -2333,7 +2333,7 @@ module Aws::Lambda
|
|
|
2333
2333
|
# @example Request syntax with placeholder values
|
|
2334
2334
|
#
|
|
2335
2335
|
# resp = client.create_function_url_config({
|
|
2336
|
-
# function_name: "
|
|
2336
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
2337
2337
|
# qualifier: "FunctionUrlQualifier",
|
|
2338
2338
|
# auth_type: "NONE", # required, accepts NONE, AWS_IAM
|
|
2339
2339
|
# cors: {
|
|
@@ -2523,6 +2523,11 @@ module Aws::Lambda
|
|
|
2523
2523
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
2524
2524
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
2525
2525
|
# * {Types::EventSourceMappingConfiguration#filter_criteria #filter_criteria} => Types::FilterCriteria
|
|
2526
|
+
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
2527
|
+
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
2528
|
+
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
2529
|
+
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
2530
|
+
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
2526
2531
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
2527
2532
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
2528
2533
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -2540,13 +2545,8 @@ module Aws::Lambda
|
|
|
2540
2545
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
2541
2546
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
2542
2547
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
2543
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
2544
2548
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
2545
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
2546
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
2547
2549
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
2548
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
2549
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
2550
2550
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
2551
2551
|
#
|
|
2552
2552
|
#
|
|
@@ -2572,7 +2572,7 @@ module Aws::Lambda
|
|
|
2572
2572
|
# @example Request syntax with placeholder values
|
|
2573
2573
|
#
|
|
2574
2574
|
# resp = client.delete_event_source_mapping({
|
|
2575
|
-
# uuid: "
|
|
2575
|
+
# uuid: "UUIDString", # required
|
|
2576
2576
|
# })
|
|
2577
2577
|
#
|
|
2578
2578
|
# @example Response structure
|
|
@@ -2586,6 +2586,13 @@ module Aws::Lambda
|
|
|
2586
2586
|
# resp.event_source_arn #=> String
|
|
2587
2587
|
# resp.filter_criteria.filters #=> Array
|
|
2588
2588
|
# resp.filter_criteria.filters[0].pattern #=> String
|
|
2589
|
+
# resp.filter_criteria_error.error_code #=> String
|
|
2590
|
+
# resp.filter_criteria_error.message #=> String
|
|
2591
|
+
# resp.kms_key_arn #=> String
|
|
2592
|
+
# resp.metrics_config.metrics #=> Array
|
|
2593
|
+
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
2594
|
+
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2595
|
+
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
2589
2596
|
# resp.function_arn #=> String
|
|
2590
2597
|
# resp.last_modified #=> Time
|
|
2591
2598
|
# resp.last_processing_result #=> String
|
|
@@ -2625,17 +2632,10 @@ module Aws::Lambda
|
|
|
2625
2632
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
2626
2633
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
2627
2634
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
2628
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
2629
2635
|
# resp.document_db_event_source_config.database_name #=> String
|
|
2630
2636
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
2631
2637
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
2632
|
-
# resp.kms_key_arn #=> String
|
|
2633
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
2634
|
-
# resp.filter_criteria_error.message #=> String
|
|
2635
2638
|
# resp.event_source_mapping_arn #=> String
|
|
2636
|
-
# resp.metrics_config.metrics #=> Array
|
|
2637
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
2638
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2639
2639
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
2640
2640
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
2641
2641
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -2878,7 +2878,7 @@ module Aws::Lambda
|
|
|
2878
2878
|
# @example Request syntax with placeholder values
|
|
2879
2879
|
#
|
|
2880
2880
|
# resp = client.delete_function_url_config({
|
|
2881
|
-
# function_name: "
|
|
2881
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
2882
2882
|
# qualifier: "FunctionUrlQualifier",
|
|
2883
2883
|
# })
|
|
2884
2884
|
#
|
|
@@ -3554,6 +3554,11 @@ module Aws::Lambda
|
|
|
3554
3554
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
3555
3555
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
3556
3556
|
# * {Types::EventSourceMappingConfiguration#filter_criteria #filter_criteria} => Types::FilterCriteria
|
|
3557
|
+
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
3558
|
+
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
3559
|
+
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
3560
|
+
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
3561
|
+
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
3557
3562
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
3558
3563
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
3559
3564
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -3571,13 +3576,8 @@ module Aws::Lambda
|
|
|
3571
3576
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
3572
3577
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
3573
3578
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
3574
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
3575
3579
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
3576
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
3577
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
3578
3580
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
3579
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
3580
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
3581
3581
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
3582
3582
|
#
|
|
3583
3583
|
#
|
|
@@ -3610,7 +3610,7 @@ module Aws::Lambda
|
|
|
3610
3610
|
# @example Request syntax with placeholder values
|
|
3611
3611
|
#
|
|
3612
3612
|
# resp = client.get_event_source_mapping({
|
|
3613
|
-
# uuid: "
|
|
3613
|
+
# uuid: "UUIDString", # required
|
|
3614
3614
|
# })
|
|
3615
3615
|
#
|
|
3616
3616
|
# @example Response structure
|
|
@@ -3624,6 +3624,13 @@ module Aws::Lambda
|
|
|
3624
3624
|
# resp.event_source_arn #=> String
|
|
3625
3625
|
# resp.filter_criteria.filters #=> Array
|
|
3626
3626
|
# resp.filter_criteria.filters[0].pattern #=> String
|
|
3627
|
+
# resp.filter_criteria_error.error_code #=> String
|
|
3628
|
+
# resp.filter_criteria_error.message #=> String
|
|
3629
|
+
# resp.kms_key_arn #=> String
|
|
3630
|
+
# resp.metrics_config.metrics #=> Array
|
|
3631
|
+
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
3632
|
+
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3633
|
+
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
3627
3634
|
# resp.function_arn #=> String
|
|
3628
3635
|
# resp.last_modified #=> Time
|
|
3629
3636
|
# resp.last_processing_result #=> String
|
|
@@ -3663,17 +3670,10 @@ module Aws::Lambda
|
|
|
3663
3670
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
3664
3671
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
3665
3672
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
3666
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
3667
3673
|
# resp.document_db_event_source_config.database_name #=> String
|
|
3668
3674
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
3669
3675
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
3670
|
-
# resp.kms_key_arn #=> String
|
|
3671
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
3672
|
-
# resp.filter_criteria_error.message #=> String
|
|
3673
3676
|
# resp.event_source_mapping_arn #=> String
|
|
3674
|
-
# resp.metrics_config.metrics #=> Array
|
|
3675
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
3676
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3677
3677
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
3678
3678
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
3679
3679
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -3784,7 +3784,7 @@ module Aws::Lambda
|
|
|
3784
3784
|
#
|
|
3785
3785
|
# resp.configuration.function_name #=> String
|
|
3786
3786
|
# resp.configuration.function_arn #=> String
|
|
3787
|
-
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
3787
|
+
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
3788
3788
|
# resp.configuration.role #=> String
|
|
3789
3789
|
# resp.configuration.handler #=> String
|
|
3790
3790
|
# resp.configuration.code_size #=> Integer
|
|
@@ -3816,13 +3816,15 @@ module Aws::Lambda
|
|
|
3816
3816
|
# resp.configuration.layers[0].signing_job_arn #=> String
|
|
3817
3817
|
# resp.configuration.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
3818
3818
|
# resp.configuration.state_reason #=> String
|
|
3819
|
-
# resp.configuration.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
3819
|
+
# resp.configuration.state_reason_code #=> String, one of "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"
|
|
3820
3820
|
# resp.configuration.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
3821
3821
|
# resp.configuration.last_update_status_reason #=> String
|
|
3822
|
-
# resp.configuration.last_update_status_reason_code #=> String, one of "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"
|
|
3822
|
+
# resp.configuration.last_update_status_reason_code #=> String, one of "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"
|
|
3823
3823
|
# resp.configuration.file_system_configs #=> Array
|
|
3824
3824
|
# resp.configuration.file_system_configs[0].arn #=> String
|
|
3825
3825
|
# resp.configuration.file_system_configs[0].local_mount_path #=> String
|
|
3826
|
+
# resp.configuration.signing_profile_version_arn #=> String
|
|
3827
|
+
# resp.configuration.signing_job_arn #=> String
|
|
3826
3828
|
# resp.configuration.package_type #=> String, one of "Zip", "Image"
|
|
3827
3829
|
# resp.configuration.image_config_response.image_config.entry_point #=> Array
|
|
3828
3830
|
# resp.configuration.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -3831,8 +3833,6 @@ module Aws::Lambda
|
|
|
3831
3833
|
# resp.configuration.image_config_response.image_config.working_directory #=> String
|
|
3832
3834
|
# resp.configuration.image_config_response.error.error_code #=> String
|
|
3833
3835
|
# resp.configuration.image_config_response.error.message #=> String
|
|
3834
|
-
# resp.configuration.signing_profile_version_arn #=> String
|
|
3835
|
-
# resp.configuration.signing_job_arn #=> String
|
|
3836
3836
|
# resp.configuration.architectures #=> Array
|
|
3837
3837
|
# resp.configuration.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
3838
3838
|
# resp.configuration.ephemeral_storage.size #=> Integer
|
|
@@ -3845,13 +3845,13 @@ module Aws::Lambda
|
|
|
3845
3845
|
# resp.configuration.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
3846
3846
|
# resp.configuration.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3847
3847
|
# resp.configuration.logging_config.log_group #=> String
|
|
3848
|
+
# resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3848
3849
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
3849
3850
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
3850
3851
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
3851
3852
|
# resp.configuration.config_sha_256 #=> String
|
|
3852
3853
|
# resp.configuration.durable_config.retention_period_in_days #=> Integer
|
|
3853
3854
|
# resp.configuration.durable_config.execution_timeout #=> Integer
|
|
3854
|
-
# resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3855
3855
|
# resp.code.repository_type #=> String
|
|
3856
3856
|
# resp.code.location #=> String
|
|
3857
3857
|
# resp.code.image_uri #=> String
|
|
@@ -4034,19 +4034,19 @@ module Aws::Lambda
|
|
|
4034
4034
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
4035
4035
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
4036
4036
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
4037
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
4038
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
4039
4037
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
4040
4038
|
# * {Types::FunctionConfiguration#signing_job_arn #signing_job_arn} => String
|
|
4039
|
+
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
4040
|
+
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
4041
4041
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
4042
4042
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
4043
4043
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
4044
4044
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
4045
4045
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
4046
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
4046
4047
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
4047
4048
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
4048
4049
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
4049
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
4050
4050
|
#
|
|
4051
4051
|
#
|
|
4052
4052
|
# @example Example: To get a Lambda function's event source mapping
|
|
@@ -4102,7 +4102,7 @@ module Aws::Lambda
|
|
|
4102
4102
|
#
|
|
4103
4103
|
# resp.function_name #=> String
|
|
4104
4104
|
# resp.function_arn #=> String
|
|
4105
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
4105
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4106
4106
|
# resp.role #=> String
|
|
4107
4107
|
# resp.handler #=> String
|
|
4108
4108
|
# resp.code_size #=> Integer
|
|
@@ -4134,13 +4134,15 @@ module Aws::Lambda
|
|
|
4134
4134
|
# resp.layers[0].signing_job_arn #=> String
|
|
4135
4135
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
4136
4136
|
# resp.state_reason #=> String
|
|
4137
|
-
# resp.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
4137
|
+
# resp.state_reason_code #=> String, one of "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"
|
|
4138
4138
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
4139
4139
|
# resp.last_update_status_reason #=> String
|
|
4140
|
-
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
4140
|
+
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
4141
4141
|
# resp.file_system_configs #=> Array
|
|
4142
4142
|
# resp.file_system_configs[0].arn #=> String
|
|
4143
4143
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
4144
|
+
# resp.signing_profile_version_arn #=> String
|
|
4145
|
+
# resp.signing_job_arn #=> String
|
|
4144
4146
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
4145
4147
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
4146
4148
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -4149,8 +4151,6 @@ module Aws::Lambda
|
|
|
4149
4151
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
4150
4152
|
# resp.image_config_response.error.error_code #=> String
|
|
4151
4153
|
# resp.image_config_response.error.message #=> String
|
|
4152
|
-
# resp.signing_profile_version_arn #=> String
|
|
4153
|
-
# resp.signing_job_arn #=> String
|
|
4154
4154
|
# resp.architectures #=> Array
|
|
4155
4155
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4156
4156
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -4163,13 +4163,13 @@ module Aws::Lambda
|
|
|
4163
4163
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
4164
4164
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
4165
4165
|
# resp.logging_config.log_group #=> String
|
|
4166
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
4166
4167
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
4167
4168
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
4168
4169
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
4169
4170
|
# resp.config_sha_256 #=> String
|
|
4170
4171
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
4171
4172
|
# resp.durable_config.execution_timeout #=> Integer
|
|
4172
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
4173
4173
|
#
|
|
4174
4174
|
#
|
|
4175
4175
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4377,7 +4377,7 @@ module Aws::Lambda
|
|
|
4377
4377
|
# @example Request syntax with placeholder values
|
|
4378
4378
|
#
|
|
4379
4379
|
# resp = client.get_function_url_config({
|
|
4380
|
-
# function_name: "
|
|
4380
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
4381
4381
|
# qualifier: "FunctionUrlQualifier",
|
|
4382
4382
|
# })
|
|
4383
4383
|
#
|
|
@@ -4430,9 +4430,9 @@ module Aws::Lambda
|
|
|
4430
4430
|
# * {Types::GetLayerVersionResponse#description #description} => String
|
|
4431
4431
|
# * {Types::GetLayerVersionResponse#created_date #created_date} => Time
|
|
4432
4432
|
# * {Types::GetLayerVersionResponse#version #version} => Integer
|
|
4433
|
+
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4433
4434
|
# * {Types::GetLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
4434
4435
|
# * {Types::GetLayerVersionResponse#license_info #license_info} => String
|
|
4435
|
-
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4436
4436
|
#
|
|
4437
4437
|
#
|
|
4438
4438
|
# @example Example: To get information about a Lambda layer version
|
|
@@ -4482,11 +4482,11 @@ module Aws::Lambda
|
|
|
4482
4482
|
# resp.description #=> String
|
|
4483
4483
|
# resp.created_date #=> Time
|
|
4484
4484
|
# resp.version #=> Integer
|
|
4485
|
-
# resp.compatible_runtimes #=> Array
|
|
4486
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25", "dotnet10", "ruby4.0"
|
|
4487
|
-
# resp.license_info #=> String
|
|
4488
4485
|
# resp.compatible_architectures #=> Array
|
|
4489
4486
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4487
|
+
# resp.compatible_runtimes #=> Array
|
|
4488
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4489
|
+
# resp.license_info #=> String
|
|
4490
4490
|
#
|
|
4491
4491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersion AWS API Documentation
|
|
4492
4492
|
#
|
|
@@ -4515,9 +4515,9 @@ module Aws::Lambda
|
|
|
4515
4515
|
# * {Types::GetLayerVersionResponse#description #description} => String
|
|
4516
4516
|
# * {Types::GetLayerVersionResponse#created_date #created_date} => Time
|
|
4517
4517
|
# * {Types::GetLayerVersionResponse#version #version} => Integer
|
|
4518
|
+
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4518
4519
|
# * {Types::GetLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
4519
4520
|
# * {Types::GetLayerVersionResponse#license_info #license_info} => String
|
|
4520
|
-
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4521
4521
|
#
|
|
4522
4522
|
#
|
|
4523
4523
|
# @example Example: To get information about a Lambda layer version
|
|
@@ -4563,11 +4563,11 @@ module Aws::Lambda
|
|
|
4563
4563
|
# resp.description #=> String
|
|
4564
4564
|
# resp.created_date #=> Time
|
|
4565
4565
|
# resp.version #=> Integer
|
|
4566
|
-
# resp.compatible_runtimes #=> Array
|
|
4567
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25", "dotnet10", "ruby4.0"
|
|
4568
|
-
# resp.license_info #=> String
|
|
4569
4566
|
# resp.compatible_architectures #=> Array
|
|
4570
4567
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4568
|
+
# resp.compatible_runtimes #=> Array
|
|
4569
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
4570
|
+
# resp.license_info #=> String
|
|
4571
4571
|
#
|
|
4572
4572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersionByArn AWS API Documentation
|
|
4573
4573
|
#
|
|
@@ -4814,8 +4814,8 @@ module Aws::Lambda
|
|
|
4814
4814
|
# @return [Types::GetRuntimeManagementConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4815
4815
|
#
|
|
4816
4816
|
# * {Types::GetRuntimeManagementConfigResponse#update_runtime_on #update_runtime_on} => String
|
|
4817
|
-
# * {Types::GetRuntimeManagementConfigResponse#runtime_version_arn #runtime_version_arn} => String
|
|
4818
4817
|
# * {Types::GetRuntimeManagementConfigResponse#function_arn #function_arn} => String
|
|
4818
|
+
# * {Types::GetRuntimeManagementConfigResponse#runtime_version_arn #runtime_version_arn} => String
|
|
4819
4819
|
#
|
|
4820
4820
|
# @example Request syntax with placeholder values
|
|
4821
4821
|
#
|
|
@@ -4827,8 +4827,8 @@ module Aws::Lambda
|
|
|
4827
4827
|
# @example Response structure
|
|
4828
4828
|
#
|
|
4829
4829
|
# resp.update_runtime_on #=> String, one of "Auto", "Manual", "FunctionUpdate"
|
|
4830
|
-
# resp.runtime_version_arn #=> String
|
|
4831
4830
|
# resp.function_arn #=> String
|
|
4831
|
+
# resp.runtime_version_arn #=> String
|
|
4832
4832
|
#
|
|
4833
4833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetRuntimeManagementConfig AWS API Documentation
|
|
4834
4834
|
#
|
|
@@ -5585,8 +5585,8 @@ module Aws::Lambda
|
|
|
5585
5585
|
# format).
|
|
5586
5586
|
#
|
|
5587
5587
|
# @option params [Boolean] :reverse_order
|
|
5588
|
-
# Set to true to return results in
|
|
5589
|
-
#
|
|
5588
|
+
# Set to true to return results in chronological order (oldest first).
|
|
5589
|
+
# Default is false.
|
|
5590
5590
|
#
|
|
5591
5591
|
# @option params [String] :marker
|
|
5592
5592
|
# Pagination token from a previous request to continue retrieving
|
|
@@ -5740,6 +5740,13 @@ module Aws::Lambda
|
|
|
5740
5740
|
# resp.event_source_mappings[0].event_source_arn #=> String
|
|
5741
5741
|
# resp.event_source_mappings[0].filter_criteria.filters #=> Array
|
|
5742
5742
|
# resp.event_source_mappings[0].filter_criteria.filters[0].pattern #=> String
|
|
5743
|
+
# resp.event_source_mappings[0].filter_criteria_error.error_code #=> String
|
|
5744
|
+
# resp.event_source_mappings[0].filter_criteria_error.message #=> String
|
|
5745
|
+
# resp.event_source_mappings[0].kms_key_arn #=> String
|
|
5746
|
+
# resp.event_source_mappings[0].metrics_config.metrics #=> Array
|
|
5747
|
+
# resp.event_source_mappings[0].metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
5748
|
+
# resp.event_source_mappings[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5749
|
+
# resp.event_source_mappings[0].scaling_config.maximum_concurrency #=> Integer
|
|
5743
5750
|
# resp.event_source_mappings[0].function_arn #=> String
|
|
5744
5751
|
# resp.event_source_mappings[0].last_modified #=> Time
|
|
5745
5752
|
# resp.event_source_mappings[0].last_processing_result #=> String
|
|
@@ -5779,17 +5786,10 @@ module Aws::Lambda
|
|
|
5779
5786
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
5780
5787
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
5781
5788
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
5782
|
-
# resp.event_source_mappings[0].scaling_config.maximum_concurrency #=> Integer
|
|
5783
5789
|
# resp.event_source_mappings[0].document_db_event_source_config.database_name #=> String
|
|
5784
5790
|
# resp.event_source_mappings[0].document_db_event_source_config.collection_name #=> String
|
|
5785
5791
|
# resp.event_source_mappings[0].document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
5786
|
-
# resp.event_source_mappings[0].kms_key_arn #=> String
|
|
5787
|
-
# resp.event_source_mappings[0].filter_criteria_error.error_code #=> String
|
|
5788
|
-
# resp.event_source_mappings[0].filter_criteria_error.message #=> String
|
|
5789
5792
|
# resp.event_source_mappings[0].event_source_mapping_arn #=> String
|
|
5790
|
-
# resp.event_source_mappings[0].metrics_config.metrics #=> Array
|
|
5791
|
-
# resp.event_source_mappings[0].metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
5792
|
-
# resp.event_source_mappings[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5793
5793
|
# resp.event_source_mappings[0].provisioned_poller_config.minimum_pollers #=> Integer
|
|
5794
5794
|
# resp.event_source_mappings[0].provisioned_poller_config.maximum_pollers #=> Integer
|
|
5795
5795
|
# resp.event_source_mappings[0].provisioned_poller_config.poller_group_name #=> String
|
|
@@ -5929,7 +5929,7 @@ module Aws::Lambda
|
|
|
5929
5929
|
# @example Request syntax with placeholder values
|
|
5930
5930
|
#
|
|
5931
5931
|
# resp = client.list_function_url_configs({
|
|
5932
|
-
# function_name: "
|
|
5932
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
5933
5933
|
# marker: "String",
|
|
5934
5934
|
# max_items: 1,
|
|
5935
5935
|
# })
|
|
@@ -6128,7 +6128,7 @@ module Aws::Lambda
|
|
|
6128
6128
|
# resp.functions #=> Array
|
|
6129
6129
|
# resp.functions[0].function_name #=> String
|
|
6130
6130
|
# resp.functions[0].function_arn #=> String
|
|
6131
|
-
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
6131
|
+
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6132
6132
|
# resp.functions[0].role #=> String
|
|
6133
6133
|
# resp.functions[0].handler #=> String
|
|
6134
6134
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -6160,13 +6160,15 @@ module Aws::Lambda
|
|
|
6160
6160
|
# resp.functions[0].layers[0].signing_job_arn #=> String
|
|
6161
6161
|
# resp.functions[0].state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
6162
6162
|
# resp.functions[0].state_reason #=> String
|
|
6163
|
-
# resp.functions[0].state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
6163
|
+
# resp.functions[0].state_reason_code #=> String, one of "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"
|
|
6164
6164
|
# resp.functions[0].last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
6165
6165
|
# resp.functions[0].last_update_status_reason #=> String
|
|
6166
|
-
# resp.functions[0].last_update_status_reason_code #=> String, one of "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"
|
|
6166
|
+
# resp.functions[0].last_update_status_reason_code #=> String, one of "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"
|
|
6167
6167
|
# resp.functions[0].file_system_configs #=> Array
|
|
6168
6168
|
# resp.functions[0].file_system_configs[0].arn #=> String
|
|
6169
6169
|
# resp.functions[0].file_system_configs[0].local_mount_path #=> String
|
|
6170
|
+
# resp.functions[0].signing_profile_version_arn #=> String
|
|
6171
|
+
# resp.functions[0].signing_job_arn #=> String
|
|
6170
6172
|
# resp.functions[0].package_type #=> String, one of "Zip", "Image"
|
|
6171
6173
|
# resp.functions[0].image_config_response.image_config.entry_point #=> Array
|
|
6172
6174
|
# resp.functions[0].image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -6175,8 +6177,6 @@ module Aws::Lambda
|
|
|
6175
6177
|
# resp.functions[0].image_config_response.image_config.working_directory #=> String
|
|
6176
6178
|
# resp.functions[0].image_config_response.error.error_code #=> String
|
|
6177
6179
|
# resp.functions[0].image_config_response.error.message #=> String
|
|
6178
|
-
# resp.functions[0].signing_profile_version_arn #=> String
|
|
6179
|
-
# resp.functions[0].signing_job_arn #=> String
|
|
6180
6180
|
# resp.functions[0].architectures #=> Array
|
|
6181
6181
|
# resp.functions[0].architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6182
6182
|
# resp.functions[0].ephemeral_storage.size #=> Integer
|
|
@@ -6189,13 +6189,13 @@ module Aws::Lambda
|
|
|
6189
6189
|
# resp.functions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
6190
6190
|
# resp.functions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
6191
6191
|
# resp.functions[0].logging_config.log_group #=> String
|
|
6192
|
+
# resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6192
6193
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
6193
6194
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
6194
6195
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
6195
6196
|
# resp.functions[0].config_sha_256 #=> String
|
|
6196
6197
|
# resp.functions[0].durable_config.retention_period_in_days #=> Integer
|
|
6197
6198
|
# resp.functions[0].durable_config.execution_timeout #=> Integer
|
|
6198
|
-
# resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6199
6199
|
#
|
|
6200
6200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctions AWS API Documentation
|
|
6201
6201
|
#
|
|
@@ -6258,8 +6258,15 @@ module Aws::Lambda
|
|
|
6258
6258
|
#
|
|
6259
6259
|
#
|
|
6260
6260
|
#
|
|
6261
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
|
|
6262
|
-
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
6261
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
|
|
6262
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
6263
|
+
#
|
|
6264
|
+
# @option params [String] :compatible_architecture
|
|
6265
|
+
# The compatible [instruction set architecture][1].
|
|
6266
|
+
#
|
|
6267
|
+
#
|
|
6268
|
+
#
|
|
6269
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6263
6270
|
#
|
|
6264
6271
|
# @option params [String] :compatible_runtime
|
|
6265
6272
|
# A runtime identifier.
|
|
@@ -6284,13 +6291,6 @@ module Aws::Lambda
|
|
|
6284
6291
|
# @option params [Integer] :max_items
|
|
6285
6292
|
# The maximum number of versions to return.
|
|
6286
6293
|
#
|
|
6287
|
-
# @option params [String] :compatible_architecture
|
|
6288
|
-
# The compatible [instruction set architecture][1].
|
|
6289
|
-
#
|
|
6290
|
-
#
|
|
6291
|
-
#
|
|
6292
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6293
|
-
#
|
|
6294
6294
|
# @return [Types::ListLayerVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6295
6295
|
#
|
|
6296
6296
|
# * {Types::ListLayerVersionsResponse#next_marker #next_marker} => String
|
|
@@ -6334,11 +6334,11 @@ module Aws::Lambda
|
|
|
6334
6334
|
# @example Request syntax with placeholder values
|
|
6335
6335
|
#
|
|
6336
6336
|
# resp = client.list_layer_versions({
|
|
6337
|
-
#
|
|
6337
|
+
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6338
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
6338
6339
|
# layer_name: "LayerName", # required
|
|
6339
6340
|
# marker: "String",
|
|
6340
6341
|
# max_items: 1,
|
|
6341
|
-
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6342
6342
|
# })
|
|
6343
6343
|
#
|
|
6344
6344
|
# @example Response structure
|
|
@@ -6349,11 +6349,11 @@ module Aws::Lambda
|
|
|
6349
6349
|
# resp.layer_versions[0].version #=> Integer
|
|
6350
6350
|
# resp.layer_versions[0].description #=> String
|
|
6351
6351
|
# resp.layer_versions[0].created_date #=> Time
|
|
6352
|
-
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
6353
|
-
# resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25", "dotnet10", "ruby4.0"
|
|
6354
|
-
# resp.layer_versions[0].license_info #=> String
|
|
6355
6352
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
6356
6353
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6354
|
+
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
6355
|
+
# resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6356
|
+
# resp.layer_versions[0].license_info #=> String
|
|
6357
6357
|
#
|
|
6358
6358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayerVersions AWS API Documentation
|
|
6359
6359
|
#
|
|
@@ -6376,6 +6376,13 @@ module Aws::Lambda
|
|
|
6376
6376
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
6377
6377
|
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6378
6378
|
#
|
|
6379
|
+
# @option params [String] :compatible_architecture
|
|
6380
|
+
# The compatible [instruction set architecture][1].
|
|
6381
|
+
#
|
|
6382
|
+
#
|
|
6383
|
+
#
|
|
6384
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6385
|
+
#
|
|
6379
6386
|
# @option params [String] :compatible_runtime
|
|
6380
6387
|
# A runtime identifier.
|
|
6381
6388
|
#
|
|
@@ -6396,13 +6403,6 @@ module Aws::Lambda
|
|
|
6396
6403
|
# @option params [Integer] :max_items
|
|
6397
6404
|
# The maximum number of layers to return.
|
|
6398
6405
|
#
|
|
6399
|
-
# @option params [String] :compatible_architecture
|
|
6400
|
-
# The compatible [instruction set architecture][1].
|
|
6401
|
-
#
|
|
6402
|
-
#
|
|
6403
|
-
#
|
|
6404
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6405
|
-
#
|
|
6406
6406
|
# @return [Types::ListLayersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6407
6407
|
#
|
|
6408
6408
|
# * {Types::ListLayersResponse#next_marker #next_marker} => String
|
|
@@ -6442,10 +6442,10 @@ module Aws::Lambda
|
|
|
6442
6442
|
# @example Request syntax with placeholder values
|
|
6443
6443
|
#
|
|
6444
6444
|
# resp = client.list_layers({
|
|
6445
|
-
#
|
|
6445
|
+
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6446
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
6446
6447
|
# marker: "String",
|
|
6447
6448
|
# max_items: 1,
|
|
6448
|
-
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6449
6449
|
# })
|
|
6450
6450
|
#
|
|
6451
6451
|
# @example Response structure
|
|
@@ -6458,11 +6458,11 @@ module Aws::Lambda
|
|
|
6458
6458
|
# resp.layers[0].latest_matching_version.version #=> Integer
|
|
6459
6459
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
6460
6460
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
6461
|
-
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
6462
|
-
# resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25", "dotnet10", "ruby4.0"
|
|
6463
|
-
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
6464
6461
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
6465
6462
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6463
|
+
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
6464
|
+
# resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6465
|
+
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
6466
6466
|
#
|
|
6467
6467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayers AWS API Documentation
|
|
6468
6468
|
#
|
|
@@ -6743,7 +6743,7 @@ module Aws::Lambda
|
|
|
6743
6743
|
# resp.versions #=> Array
|
|
6744
6744
|
# resp.versions[0].function_name #=> String
|
|
6745
6745
|
# resp.versions[0].function_arn #=> String
|
|
6746
|
-
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
6746
|
+
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6747
6747
|
# resp.versions[0].role #=> String
|
|
6748
6748
|
# resp.versions[0].handler #=> String
|
|
6749
6749
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -6775,13 +6775,15 @@ module Aws::Lambda
|
|
|
6775
6775
|
# resp.versions[0].layers[0].signing_job_arn #=> String
|
|
6776
6776
|
# resp.versions[0].state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
6777
6777
|
# resp.versions[0].state_reason #=> String
|
|
6778
|
-
# resp.versions[0].state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
6778
|
+
# resp.versions[0].state_reason_code #=> String, one of "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"
|
|
6779
6779
|
# resp.versions[0].last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
6780
6780
|
# resp.versions[0].last_update_status_reason #=> String
|
|
6781
|
-
# resp.versions[0].last_update_status_reason_code #=> String, one of "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"
|
|
6781
|
+
# resp.versions[0].last_update_status_reason_code #=> String, one of "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"
|
|
6782
6782
|
# resp.versions[0].file_system_configs #=> Array
|
|
6783
6783
|
# resp.versions[0].file_system_configs[0].arn #=> String
|
|
6784
6784
|
# resp.versions[0].file_system_configs[0].local_mount_path #=> String
|
|
6785
|
+
# resp.versions[0].signing_profile_version_arn #=> String
|
|
6786
|
+
# resp.versions[0].signing_job_arn #=> String
|
|
6785
6787
|
# resp.versions[0].package_type #=> String, one of "Zip", "Image"
|
|
6786
6788
|
# resp.versions[0].image_config_response.image_config.entry_point #=> Array
|
|
6787
6789
|
# resp.versions[0].image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -6790,8 +6792,6 @@ module Aws::Lambda
|
|
|
6790
6792
|
# resp.versions[0].image_config_response.image_config.working_directory #=> String
|
|
6791
6793
|
# resp.versions[0].image_config_response.error.error_code #=> String
|
|
6792
6794
|
# resp.versions[0].image_config_response.error.message #=> String
|
|
6793
|
-
# resp.versions[0].signing_profile_version_arn #=> String
|
|
6794
|
-
# resp.versions[0].signing_job_arn #=> String
|
|
6795
6795
|
# resp.versions[0].architectures #=> Array
|
|
6796
6796
|
# resp.versions[0].architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6797
6797
|
# resp.versions[0].ephemeral_storage.size #=> Integer
|
|
@@ -6804,13 +6804,13 @@ module Aws::Lambda
|
|
|
6804
6804
|
# resp.versions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
6805
6805
|
# resp.versions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
6806
6806
|
# resp.versions[0].logging_config.log_group #=> String
|
|
6807
|
+
# resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6807
6808
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
6808
6809
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
6809
6810
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
6810
6811
|
# resp.versions[0].config_sha_256 #=> String
|
|
6811
6812
|
# resp.versions[0].durable_config.retention_period_in_days #=> Integer
|
|
6812
6813
|
# resp.versions[0].durable_config.execution_timeout #=> Integer
|
|
6813
|
-
# resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6814
6814
|
#
|
|
6815
6815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListVersionsByFunction AWS API Documentation
|
|
6816
6816
|
#
|
|
@@ -6841,6 +6841,13 @@ module Aws::Lambda
|
|
|
6841
6841
|
# @option params [required, Types::LayerVersionContentInput] :content
|
|
6842
6842
|
# The function layer archive.
|
|
6843
6843
|
#
|
|
6844
|
+
# @option params [Array<String>] :compatible_architectures
|
|
6845
|
+
# A list of compatible [instruction set architectures][1].
|
|
6846
|
+
#
|
|
6847
|
+
#
|
|
6848
|
+
#
|
|
6849
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6850
|
+
#
|
|
6844
6851
|
# @option params [Array<String>] :compatible_runtimes
|
|
6845
6852
|
# A list of compatible [function runtimes][1]. Used for filtering with
|
|
6846
6853
|
# ListLayers and ListLayerVersions.
|
|
@@ -6867,13 +6874,6 @@ module Aws::Lambda
|
|
|
6867
6874
|
#
|
|
6868
6875
|
# [1]: https://spdx.org/licenses/
|
|
6869
6876
|
#
|
|
6870
|
-
# @option params [Array<String>] :compatible_architectures
|
|
6871
|
-
# A list of compatible [instruction set architectures][1].
|
|
6872
|
-
#
|
|
6873
|
-
#
|
|
6874
|
-
#
|
|
6875
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6876
|
-
#
|
|
6877
6877
|
# @return [Types::PublishLayerVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6878
6878
|
#
|
|
6879
6879
|
# * {Types::PublishLayerVersionResponse#content #content} => Types::LayerVersionContentOutput
|
|
@@ -6882,9 +6882,9 @@ module Aws::Lambda
|
|
|
6882
6882
|
# * {Types::PublishLayerVersionResponse#description #description} => String
|
|
6883
6883
|
# * {Types::PublishLayerVersionResponse#created_date #created_date} => Time
|
|
6884
6884
|
# * {Types::PublishLayerVersionResponse#version #version} => Integer
|
|
6885
|
+
# * {Types::PublishLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
6885
6886
|
# * {Types::PublishLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
6886
6887
|
# * {Types::PublishLayerVersionResponse#license_info #license_info} => String
|
|
6887
|
-
# * {Types::PublishLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
6888
6888
|
#
|
|
6889
6889
|
#
|
|
6890
6890
|
# @example Example: To create a Lambda layer version
|
|
@@ -6936,9 +6936,9 @@ module Aws::Lambda
|
|
|
6936
6936
|
# s3_object_version: "S3ObjectVersion",
|
|
6937
6937
|
# zip_file: "data",
|
|
6938
6938
|
# },
|
|
6939
|
-
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2, ruby3.3, ruby3.4, python3.11, nodejs20.x, provided.al2023, python3.12, java21, python3.13, nodejs22.x, nodejs24.x, python3.14, java25, dotnet10, ruby4.0
|
|
6940
|
-
# license_info: "LicenseInfo",
|
|
6941
6939
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
6940
|
+
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
6941
|
+
# license_info: "LicenseInfo",
|
|
6942
6942
|
# })
|
|
6943
6943
|
#
|
|
6944
6944
|
# @example Response structure
|
|
@@ -6953,11 +6953,11 @@ module Aws::Lambda
|
|
|
6953
6953
|
# resp.description #=> String
|
|
6954
6954
|
# resp.created_date #=> Time
|
|
6955
6955
|
# resp.version #=> Integer
|
|
6956
|
-
# resp.compatible_runtimes #=> Array
|
|
6957
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2", "ruby3.3", "ruby3.4", "python3.11", "nodejs20.x", "provided.al2023", "python3.12", "java21", "python3.13", "nodejs22.x", "nodejs24.x", "python3.14", "java25", "dotnet10", "ruby4.0"
|
|
6958
|
-
# resp.license_info #=> String
|
|
6959
6956
|
# resp.compatible_architectures #=> Array
|
|
6960
6957
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6958
|
+
# resp.compatible_runtimes #=> Array
|
|
6959
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
6960
|
+
# resp.license_info #=> String
|
|
6961
6961
|
#
|
|
6962
6962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishLayerVersion AWS API Documentation
|
|
6963
6963
|
#
|
|
@@ -7047,19 +7047,19 @@ module Aws::Lambda
|
|
|
7047
7047
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
7048
7048
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
7049
7049
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
7050
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
7051
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
7052
7050
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
7053
7051
|
# * {Types::FunctionConfiguration#signing_job_arn #signing_job_arn} => String
|
|
7052
|
+
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
7053
|
+
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
7054
7054
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
7055
7055
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
7056
7056
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
7057
7057
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
7058
7058
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
7059
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7059
7060
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
7060
7061
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
7061
7062
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
7062
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7063
7063
|
#
|
|
7064
7064
|
#
|
|
7065
7065
|
# @example Example: To publish a version of a Lambda function
|
|
@@ -7115,7 +7115,7 @@ module Aws::Lambda
|
|
|
7115
7115
|
#
|
|
7116
7116
|
# resp.function_name #=> String
|
|
7117
7117
|
# resp.function_arn #=> String
|
|
7118
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
7118
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
7119
7119
|
# resp.role #=> String
|
|
7120
7120
|
# resp.handler #=> String
|
|
7121
7121
|
# resp.code_size #=> Integer
|
|
@@ -7147,13 +7147,15 @@ module Aws::Lambda
|
|
|
7147
7147
|
# resp.layers[0].signing_job_arn #=> String
|
|
7148
7148
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
7149
7149
|
# resp.state_reason #=> String
|
|
7150
|
-
# resp.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
7150
|
+
# resp.state_reason_code #=> String, one of "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"
|
|
7151
7151
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
7152
7152
|
# resp.last_update_status_reason #=> String
|
|
7153
|
-
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
7153
|
+
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
7154
7154
|
# resp.file_system_configs #=> Array
|
|
7155
7155
|
# resp.file_system_configs[0].arn #=> String
|
|
7156
7156
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
7157
|
+
# resp.signing_profile_version_arn #=> String
|
|
7158
|
+
# resp.signing_job_arn #=> String
|
|
7157
7159
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
7158
7160
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
7159
7161
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -7162,8 +7164,6 @@ module Aws::Lambda
|
|
|
7162
7164
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
7163
7165
|
# resp.image_config_response.error.error_code #=> String
|
|
7164
7166
|
# resp.image_config_response.error.message #=> String
|
|
7165
|
-
# resp.signing_profile_version_arn #=> String
|
|
7166
|
-
# resp.signing_job_arn #=> String
|
|
7167
7167
|
# resp.architectures #=> Array
|
|
7168
7168
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
7169
7169
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -7176,13 +7176,13 @@ module Aws::Lambda
|
|
|
7176
7176
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
7177
7177
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
7178
7178
|
# resp.logging_config.log_group #=> String
|
|
7179
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
7179
7180
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
7180
7181
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
7181
7182
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
7182
7183
|
# resp.config_sha_256 #=> String
|
|
7183
7184
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
7184
7185
|
# resp.durable_config.execution_timeout #=> Integer
|
|
7185
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
7186
7186
|
#
|
|
7187
7187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishVersion AWS API Documentation
|
|
7188
7188
|
#
|
|
@@ -7622,8 +7622,8 @@ module Aws::Lambda
|
|
|
7622
7622
|
# @return [Types::PutProvisionedConcurrencyConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7623
7623
|
#
|
|
7624
7624
|
# * {Types::PutProvisionedConcurrencyConfigResponse#requested_provisioned_concurrent_executions #requested_provisioned_concurrent_executions} => Integer
|
|
7625
|
-
# * {Types::PutProvisionedConcurrencyConfigResponse#available_provisioned_concurrent_executions #available_provisioned_concurrent_executions} => Integer
|
|
7626
7625
|
# * {Types::PutProvisionedConcurrencyConfigResponse#allocated_provisioned_concurrent_executions #allocated_provisioned_concurrent_executions} => Integer
|
|
7626
|
+
# * {Types::PutProvisionedConcurrencyConfigResponse#available_provisioned_concurrent_executions #available_provisioned_concurrent_executions} => Integer
|
|
7627
7627
|
# * {Types::PutProvisionedConcurrencyConfigResponse#status #status} => String
|
|
7628
7628
|
# * {Types::PutProvisionedConcurrencyConfigResponse#status_reason #status_reason} => String
|
|
7629
7629
|
# * {Types::PutProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
|
|
@@ -7658,8 +7658,8 @@ module Aws::Lambda
|
|
|
7658
7658
|
# @example Response structure
|
|
7659
7659
|
#
|
|
7660
7660
|
# resp.requested_provisioned_concurrent_executions #=> Integer
|
|
7661
|
-
# resp.available_provisioned_concurrent_executions #=> Integer
|
|
7662
7661
|
# resp.allocated_provisioned_concurrent_executions #=> Integer
|
|
7662
|
+
# resp.available_provisioned_concurrent_executions #=> Integer
|
|
7663
7663
|
# resp.status #=> String, one of "IN_PROGRESS", "READY", "FAILED"
|
|
7664
7664
|
# resp.status_reason #=> String
|
|
7665
7665
|
# resp.last_modified #=> Time
|
|
@@ -8482,6 +8482,38 @@ module Aws::Lambda
|
|
|
8482
8482
|
#
|
|
8483
8483
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
|
|
8484
8484
|
#
|
|
8485
|
+
# @option params [String] :kms_key_arn
|
|
8486
|
+
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
8487
|
+
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
8488
|
+
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
8489
|
+
# this property to encrypt data using your own customer managed key.
|
|
8490
|
+
#
|
|
8491
|
+
#
|
|
8492
|
+
#
|
|
8493
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
8494
|
+
#
|
|
8495
|
+
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
8496
|
+
# The metrics configuration for your event source. For more information,
|
|
8497
|
+
# see [Event source mapping metrics][1].
|
|
8498
|
+
#
|
|
8499
|
+
#
|
|
8500
|
+
#
|
|
8501
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
8502
|
+
#
|
|
8503
|
+
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
8504
|
+
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
8505
|
+
# configuration for your event source. Use this configuration object to
|
|
8506
|
+
# define the level of logs for your event source mapping.
|
|
8507
|
+
#
|
|
8508
|
+
# @option params [Types::ScalingConfig] :scaling_config
|
|
8509
|
+
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
8510
|
+
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
8511
|
+
# event sources][1].
|
|
8512
|
+
#
|
|
8513
|
+
#
|
|
8514
|
+
#
|
|
8515
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
8516
|
+
#
|
|
8485
8517
|
# @option params [Integer] :maximum_batching_window_in_seconds
|
|
8486
8518
|
# The maximum amount of time, in seconds, that Lambda spends gathering
|
|
8487
8519
|
# records before invoking the function. You can configure
|
|
@@ -8501,6 +8533,10 @@ module Aws::Lambda
|
|
|
8501
8533
|
# when you set `BatchSize` to a value greater than 10, you must set
|
|
8502
8534
|
# `MaximumBatchingWindowInSeconds` to at least 1.
|
|
8503
8535
|
#
|
|
8536
|
+
# @option params [Integer] :parallelization_factor
|
|
8537
|
+
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
|
8538
|
+
# from each shard concurrently.
|
|
8539
|
+
#
|
|
8504
8540
|
# @option params [Types::DestinationConfig] :destination_config
|
|
8505
8541
|
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
8506
8542
|
# A configuration object that specifies the destination of an event
|
|
@@ -8521,33 +8557,20 @@ module Aws::Lambda
|
|
|
8521
8557
|
# value is infinite (-1). When set to infinite (-1), failed records are
|
|
8522
8558
|
# retried until the record expires.
|
|
8523
8559
|
#
|
|
8524
|
-
# @option params [Integer] :parallelization_factor
|
|
8525
|
-
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
|
8526
|
-
# from each shard concurrently.
|
|
8527
|
-
#
|
|
8528
|
-
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
|
8529
|
-
# An array of authentication protocols or VPC components required to
|
|
8530
|
-
# secure your event source.
|
|
8531
|
-
#
|
|
8532
8560
|
# @option params [Integer] :tumbling_window_in_seconds
|
|
8533
8561
|
# (Kinesis and DynamoDB Streams only) The duration in seconds of a
|
|
8534
8562
|
# processing window for DynamoDB and Kinesis Streams event sources. A
|
|
8535
8563
|
# value of 0 seconds indicates no tumbling window.
|
|
8536
8564
|
#
|
|
8565
|
+
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
|
8566
|
+
# An array of authentication protocols or VPC components required to
|
|
8567
|
+
# secure your event source.
|
|
8568
|
+
#
|
|
8537
8569
|
# @option params [Array<String>] :function_response_types
|
|
8538
8570
|
# (Kinesis, DynamoDB Streams, Amazon MSK, self-managed Apache Kafka, and
|
|
8539
8571
|
# Amazon SQS) A list of current response type enums applied to the event
|
|
8540
8572
|
# source mapping.
|
|
8541
8573
|
#
|
|
8542
|
-
# @option params [Types::ScalingConfig] :scaling_config
|
|
8543
|
-
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
8544
|
-
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
8545
|
-
# event sources][1].
|
|
8546
|
-
#
|
|
8547
|
-
#
|
|
8548
|
-
#
|
|
8549
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
8550
|
-
#
|
|
8551
8574
|
# @option params [Types::AmazonManagedKafkaEventSourceConfig] :amazon_managed_kafka_event_source_config
|
|
8552
8575
|
# Specific configuration settings for an Amazon Managed Streaming for
|
|
8553
8576
|
# Apache Kafka (Amazon MSK) event source.
|
|
@@ -8559,29 +8582,6 @@ module Aws::Lambda
|
|
|
8559
8582
|
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
|
8560
8583
|
# Specific configuration settings for a DocumentDB event source.
|
|
8561
8584
|
#
|
|
8562
|
-
# @option params [String] :kms_key_arn
|
|
8563
|
-
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
8564
|
-
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
8565
|
-
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
8566
|
-
# this property to encrypt data using your own customer managed key.
|
|
8567
|
-
#
|
|
8568
|
-
#
|
|
8569
|
-
#
|
|
8570
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
8571
|
-
#
|
|
8572
|
-
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
8573
|
-
# The metrics configuration for your event source. For more information,
|
|
8574
|
-
# see [Event source mapping metrics][1].
|
|
8575
|
-
#
|
|
8576
|
-
#
|
|
8577
|
-
#
|
|
8578
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
8579
|
-
#
|
|
8580
|
-
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
8581
|
-
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
8582
|
-
# configuration for your event source. Use this configuration object to
|
|
8583
|
-
# define the level of logs for your event source mapping.
|
|
8584
|
-
#
|
|
8585
8585
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
8586
8586
|
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
8587
8587
|
# provisioned mode configuration for the event source. For more
|
|
@@ -8601,6 +8601,11 @@ module Aws::Lambda
|
|
|
8601
8601
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
8602
8602
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
8603
8603
|
# * {Types::EventSourceMappingConfiguration#filter_criteria #filter_criteria} => Types::FilterCriteria
|
|
8604
|
+
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
8605
|
+
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
8606
|
+
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
8607
|
+
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
8608
|
+
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
8604
8609
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
8605
8610
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
8606
8611
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -8618,13 +8623,8 @@ module Aws::Lambda
|
|
|
8618
8623
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
8619
8624
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
8620
8625
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
8621
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
8622
8626
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
8623
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
8624
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
8625
8627
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
8626
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
8627
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
8628
8628
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
8629
8629
|
#
|
|
8630
8630
|
#
|
|
@@ -8636,7 +8636,7 @@ module Aws::Lambda
|
|
|
8636
8636
|
# batch_size: 123,
|
|
8637
8637
|
# enabled: true,
|
|
8638
8638
|
# function_name: "myFunction",
|
|
8639
|
-
# uuid: "
|
|
8639
|
+
# uuid: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
|
|
8640
8640
|
# })
|
|
8641
8641
|
#
|
|
8642
8642
|
# resp.to_h outputs the following:
|
|
@@ -8648,13 +8648,13 @@ module Aws::Lambda
|
|
|
8648
8648
|
# last_processing_result: "",
|
|
8649
8649
|
# state: "",
|
|
8650
8650
|
# state_transition_reason: "",
|
|
8651
|
-
# uuid: "
|
|
8651
|
+
# uuid: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
|
|
8652
8652
|
# }
|
|
8653
8653
|
#
|
|
8654
8654
|
# @example Request syntax with placeholder values
|
|
8655
8655
|
#
|
|
8656
8656
|
# resp = client.update_event_source_mapping({
|
|
8657
|
-
# uuid: "
|
|
8657
|
+
# uuid: "UUIDString", # required
|
|
8658
8658
|
# function_name: "NamespacedFunctionName",
|
|
8659
8659
|
# enabled: false,
|
|
8660
8660
|
# batch_size: 1,
|
|
@@ -8665,7 +8665,18 @@ module Aws::Lambda
|
|
|
8665
8665
|
# },
|
|
8666
8666
|
# ],
|
|
8667
8667
|
# },
|
|
8668
|
+
# kms_key_arn: "KMSKeyArn",
|
|
8669
|
+
# metrics_config: {
|
|
8670
|
+
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
8671
|
+
# },
|
|
8672
|
+
# logging_config: {
|
|
8673
|
+
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
8674
|
+
# },
|
|
8675
|
+
# scaling_config: {
|
|
8676
|
+
# maximum_concurrency: 1,
|
|
8677
|
+
# },
|
|
8668
8678
|
# maximum_batching_window_in_seconds: 1,
|
|
8679
|
+
# parallelization_factor: 1,
|
|
8669
8680
|
# destination_config: {
|
|
8670
8681
|
# on_success: {
|
|
8671
8682
|
# destination: "DestinationArn",
|
|
@@ -8677,18 +8688,14 @@ module Aws::Lambda
|
|
|
8677
8688
|
# maximum_record_age_in_seconds: 1,
|
|
8678
8689
|
# bisect_batch_on_function_error: false,
|
|
8679
8690
|
# maximum_retry_attempts: 1,
|
|
8680
|
-
#
|
|
8691
|
+
# tumbling_window_in_seconds: 1,
|
|
8681
8692
|
# source_access_configurations: [
|
|
8682
8693
|
# {
|
|
8683
8694
|
# type: "BASIC_AUTH", # accepts 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
|
|
8684
8695
|
# uri: "URI",
|
|
8685
8696
|
# },
|
|
8686
8697
|
# ],
|
|
8687
|
-
# tumbling_window_in_seconds: 1,
|
|
8688
8698
|
# function_response_types: ["ReportBatchItemFailures"], # accepts ReportBatchItemFailures
|
|
8689
|
-
# scaling_config: {
|
|
8690
|
-
# maximum_concurrency: 1,
|
|
8691
|
-
# },
|
|
8692
8699
|
# amazon_managed_kafka_event_source_config: {
|
|
8693
8700
|
# consumer_group_id: "URI",
|
|
8694
8701
|
# schema_registry_config: {
|
|
@@ -8730,13 +8737,6 @@ module Aws::Lambda
|
|
|
8730
8737
|
# collection_name: "CollectionName",
|
|
8731
8738
|
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
|
8732
8739
|
# },
|
|
8733
|
-
# kms_key_arn: "KMSKeyArn",
|
|
8734
|
-
# metrics_config: {
|
|
8735
|
-
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
8736
|
-
# },
|
|
8737
|
-
# logging_config: {
|
|
8738
|
-
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
8739
|
-
# },
|
|
8740
8740
|
# provisioned_poller_config: {
|
|
8741
8741
|
# minimum_pollers: 1,
|
|
8742
8742
|
# maximum_pollers: 1,
|
|
@@ -8755,6 +8755,13 @@ module Aws::Lambda
|
|
|
8755
8755
|
# resp.event_source_arn #=> String
|
|
8756
8756
|
# resp.filter_criteria.filters #=> Array
|
|
8757
8757
|
# resp.filter_criteria.filters[0].pattern #=> String
|
|
8758
|
+
# resp.filter_criteria_error.error_code #=> String
|
|
8759
|
+
# resp.filter_criteria_error.message #=> String
|
|
8760
|
+
# resp.kms_key_arn #=> String
|
|
8761
|
+
# resp.metrics_config.metrics #=> Array
|
|
8762
|
+
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
8763
|
+
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
8764
|
+
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
8758
8765
|
# resp.function_arn #=> String
|
|
8759
8766
|
# resp.last_modified #=> Time
|
|
8760
8767
|
# resp.last_processing_result #=> String
|
|
@@ -8794,17 +8801,10 @@ module Aws::Lambda
|
|
|
8794
8801
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
8795
8802
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
8796
8803
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
8797
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
8798
8804
|
# resp.document_db_event_source_config.database_name #=> String
|
|
8799
8805
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
8800
8806
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
8801
|
-
# resp.kms_key_arn #=> String
|
|
8802
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
8803
|
-
# resp.filter_criteria_error.message #=> String
|
|
8804
8807
|
# resp.event_source_mapping_arn #=> String
|
|
8805
|
-
# resp.metrics_config.metrics #=> Array
|
|
8806
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
8807
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
8808
8808
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
8809
8809
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
8810
8810
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -8887,11 +8887,19 @@ module Aws::Lambda
|
|
|
8887
8887
|
# URI of a container image in the Amazon ECR registry. Do not use for a
|
|
8888
8888
|
# function defined with a .zip file archive.
|
|
8889
8889
|
#
|
|
8890
|
+
# @option params [Array<String>] :architectures
|
|
8891
|
+
# The instruction set architecture that the function supports. Enter a
|
|
8892
|
+
# string array with one of the valid values (arm64 or x86\_64). The
|
|
8893
|
+
# default value is `x86_64`.
|
|
8894
|
+
#
|
|
8890
8895
|
# @option params [Boolean] :publish
|
|
8891
8896
|
# Set to true to publish a new version of the function after updating
|
|
8892
8897
|
# the code. This has the same effect as calling PublishVersion
|
|
8893
8898
|
# separately.
|
|
8894
8899
|
#
|
|
8900
|
+
# @option params [String] :publish_to
|
|
8901
|
+
# Specifies where to publish the function version or configuration.
|
|
8902
|
+
#
|
|
8895
8903
|
# @option params [Boolean] :dry_run
|
|
8896
8904
|
# Set to true to validate the request parameters and access permissions
|
|
8897
8905
|
# without modifying the function code.
|
|
@@ -8901,20 +8909,12 @@ module Aws::Lambda
|
|
|
8901
8909
|
# specified. Use this option to avoid modifying a function that has
|
|
8902
8910
|
# changed since you last read it.
|
|
8903
8911
|
#
|
|
8904
|
-
# @option params [Array<String>] :architectures
|
|
8905
|
-
# The instruction set architecture that the function supports. Enter a
|
|
8906
|
-
# string array with one of the valid values (arm64 or x86\_64). The
|
|
8907
|
-
# default value is `x86_64`.
|
|
8908
|
-
#
|
|
8909
8912
|
# @option params [String] :source_kms_key_arn
|
|
8910
8913
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
8911
8914
|
# that's used to encrypt your function's .zip deployment package. If
|
|
8912
8915
|
# you don't provide a customer managed key, Lambda uses an Amazon Web
|
|
8913
8916
|
# Services managed key.
|
|
8914
8917
|
#
|
|
8915
|
-
# @option params [String] :publish_to
|
|
8916
|
-
# Specifies where to publish the function version or configuration.
|
|
8917
|
-
#
|
|
8918
8918
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8919
8919
|
#
|
|
8920
8920
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
|
@@ -8944,19 +8944,19 @@ module Aws::Lambda
|
|
|
8944
8944
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
8945
8945
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
8946
8946
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
8947
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
8948
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
8949
8947
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
8950
8948
|
# * {Types::FunctionConfiguration#signing_job_arn #signing_job_arn} => String
|
|
8949
|
+
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
8950
|
+
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
8951
8951
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
8952
8952
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
8953
8953
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
8954
8954
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
8955
8955
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
8956
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
8956
8957
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
8957
8958
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
8958
8959
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
8959
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
8960
8960
|
#
|
|
8961
8961
|
#
|
|
8962
8962
|
# @example Example: To update a Lambda function's code
|
|
@@ -8999,19 +8999,19 @@ module Aws::Lambda
|
|
|
8999
8999
|
# s3_key: "S3Key",
|
|
9000
9000
|
# s3_object_version: "S3ObjectVersion",
|
|
9001
9001
|
# image_uri: "String",
|
|
9002
|
+
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
9002
9003
|
# publish: false,
|
|
9004
|
+
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
9003
9005
|
# dry_run: false,
|
|
9004
9006
|
# revision_id: "String",
|
|
9005
|
-
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
9006
9007
|
# source_kms_key_arn: "KMSKeyArn",
|
|
9007
|
-
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
9008
9008
|
# })
|
|
9009
9009
|
#
|
|
9010
9010
|
# @example Response structure
|
|
9011
9011
|
#
|
|
9012
9012
|
# resp.function_name #=> String
|
|
9013
9013
|
# resp.function_arn #=> String
|
|
9014
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
9014
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
9015
9015
|
# resp.role #=> String
|
|
9016
9016
|
# resp.handler #=> String
|
|
9017
9017
|
# resp.code_size #=> Integer
|
|
@@ -9043,13 +9043,15 @@ module Aws::Lambda
|
|
|
9043
9043
|
# resp.layers[0].signing_job_arn #=> String
|
|
9044
9044
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
9045
9045
|
# resp.state_reason #=> String
|
|
9046
|
-
# resp.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
9046
|
+
# resp.state_reason_code #=> String, one of "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"
|
|
9047
9047
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
9048
9048
|
# resp.last_update_status_reason #=> String
|
|
9049
|
-
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
9049
|
+
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
9050
9050
|
# resp.file_system_configs #=> Array
|
|
9051
9051
|
# resp.file_system_configs[0].arn #=> String
|
|
9052
9052
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
9053
|
+
# resp.signing_profile_version_arn #=> String
|
|
9054
|
+
# resp.signing_job_arn #=> String
|
|
9053
9055
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
9054
9056
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
9055
9057
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -9058,8 +9060,6 @@ module Aws::Lambda
|
|
|
9058
9060
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
9059
9061
|
# resp.image_config_response.error.error_code #=> String
|
|
9060
9062
|
# resp.image_config_response.error.message #=> String
|
|
9061
|
-
# resp.signing_profile_version_arn #=> String
|
|
9062
|
-
# resp.signing_job_arn #=> String
|
|
9063
9063
|
# resp.architectures #=> Array
|
|
9064
9064
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
9065
9065
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -9072,13 +9072,13 @@ module Aws::Lambda
|
|
|
9072
9072
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
9073
9073
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
9074
9074
|
# resp.logging_config.log_group #=> String
|
|
9075
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9075
9076
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
9076
9077
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
9077
9078
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
9078
9079
|
# resp.config_sha_256 #=> String
|
|
9079
9080
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
9080
9081
|
# resp.durable_config.execution_timeout #=> Integer
|
|
9081
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9082
9082
|
#
|
|
9083
9083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionCode AWS API Documentation
|
|
9084
9084
|
#
|
|
@@ -9328,19 +9328,19 @@ module Aws::Lambda
|
|
|
9328
9328
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
9329
9329
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
9330
9330
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
9331
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
9332
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
9333
9331
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
9334
9332
|
# * {Types::FunctionConfiguration#signing_job_arn #signing_job_arn} => String
|
|
9333
|
+
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
9334
|
+
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
9335
9335
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
9336
9336
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
9337
9337
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
9338
9338
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
9339
9339
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
9340
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
9340
9341
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
9341
9342
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
9342
9343
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
9343
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
9344
9344
|
#
|
|
9345
9345
|
#
|
|
9346
9346
|
# @example Example: To update a Lambda function's configuration
|
|
@@ -9400,7 +9400,7 @@ module Aws::Lambda
|
|
|
9400
9400
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
9401
9401
|
# },
|
|
9402
9402
|
# },
|
|
9403
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7,
|
|
9403
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, nodejs18.x, nodejs20.x, nodejs22.x, nodejs24.x, java8, java8.al2, java11, java17, java21, java25, python2.7, python3.6, python3.7, python3.8, python3.9, python3.10, python3.11, python3.12, python3.13, python3.14, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, dotnet8, dotnet10, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, ruby3.2, ruby3.3, ruby3.4, ruby4.0, provided, provided.al2, provided.al2023
|
|
9404
9404
|
# dead_letter_config: {
|
|
9405
9405
|
# target_arn: "ResourceArn",
|
|
9406
9406
|
# },
|
|
@@ -9450,7 +9450,7 @@ module Aws::Lambda
|
|
|
9450
9450
|
#
|
|
9451
9451
|
# resp.function_name #=> String
|
|
9452
9452
|
# resp.function_arn #=> String
|
|
9453
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "
|
|
9453
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "nodejs18.x", "nodejs20.x", "nodejs22.x", "nodejs24.x", "java8", "java8.al2", "java11", "java17", "java21", "java25", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "python3.14", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "dotnet8", "dotnet10", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "ruby3.2", "ruby3.3", "ruby3.4", "ruby4.0", "provided", "provided.al2", "provided.al2023"
|
|
9454
9454
|
# resp.role #=> String
|
|
9455
9455
|
# resp.handler #=> String
|
|
9456
9456
|
# resp.code_size #=> Integer
|
|
@@ -9482,13 +9482,15 @@ module Aws::Lambda
|
|
|
9482
9482
|
# resp.layers[0].signing_job_arn #=> String
|
|
9483
9483
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
9484
9484
|
# resp.state_reason #=> String
|
|
9485
|
-
# resp.state_reason_code #=> String, one of "Idle", "Creating", "Restoring", "EniLimitExceeded", "InsufficientRolePermissions", "InvalidConfiguration", "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", "InvalidSecurityGroup", "ImageDeleted", "ImageAccessDenied", "InvalidImage", "KMSKeyAccessDenied", "KMSKeyNotFound", "InvalidStateKMSKey", "DisabledKMSKey", "EFSIOError", "EFSMountConnectivityError", "EFSMountFailure", "EFSMountTimeout", "InvalidRuntime", "InvalidZipFileException", "FunctionError", "
|
|
9485
|
+
# resp.state_reason_code #=> String, one of "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"
|
|
9486
9486
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
9487
9487
|
# resp.last_update_status_reason #=> String
|
|
9488
|
-
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
9488
|
+
# resp.last_update_status_reason_code #=> String, one of "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"
|
|
9489
9489
|
# resp.file_system_configs #=> Array
|
|
9490
9490
|
# resp.file_system_configs[0].arn #=> String
|
|
9491
9491
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
9492
|
+
# resp.signing_profile_version_arn #=> String
|
|
9493
|
+
# resp.signing_job_arn #=> String
|
|
9492
9494
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
9493
9495
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
9494
9496
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -9497,8 +9499,6 @@ module Aws::Lambda
|
|
|
9497
9499
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
9498
9500
|
# resp.image_config_response.error.error_code #=> String
|
|
9499
9501
|
# resp.image_config_response.error.message #=> String
|
|
9500
|
-
# resp.signing_profile_version_arn #=> String
|
|
9501
|
-
# resp.signing_job_arn #=> String
|
|
9502
9502
|
# resp.architectures #=> Array
|
|
9503
9503
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
9504
9504
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -9511,13 +9511,13 @@ module Aws::Lambda
|
|
|
9511
9511
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
9512
9512
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
9513
9513
|
# resp.logging_config.log_group #=> String
|
|
9514
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9514
9515
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
9515
9516
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
9516
9517
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
9517
9518
|
# resp.config_sha_256 #=> String
|
|
9518
9519
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
9519
9520
|
# resp.durable_config.execution_timeout #=> Integer
|
|
9520
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9521
9521
|
#
|
|
9522
9522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionConfiguration AWS API Documentation
|
|
9523
9523
|
#
|
|
@@ -9721,7 +9721,7 @@ module Aws::Lambda
|
|
|
9721
9721
|
# @example Request syntax with placeholder values
|
|
9722
9722
|
#
|
|
9723
9723
|
# resp = client.update_function_url_config({
|
|
9724
|
-
# function_name: "
|
|
9724
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
9725
9725
|
# qualifier: "FunctionUrlQualifier",
|
|
9726
9726
|
# auth_type: "NONE", # accepts NONE, AWS_IAM
|
|
9727
9727
|
# cors: {
|
|
@@ -9781,7 +9781,7 @@ module Aws::Lambda
|
|
|
9781
9781
|
tracer: tracer
|
|
9782
9782
|
)
|
|
9783
9783
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
9784
|
-
context[:gem_version] = '1.
|
|
9784
|
+
context[:gem_version] = '1.184.0'
|
|
9785
9785
|
Seahorse::Client::Request.new(handlers, context)
|
|
9786
9786
|
end
|
|
9787
9787
|
|