aws-sdk-lambda 1.182.0 → 1.184.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +365 -330
- data/lib/aws-sdk-lambda/client_api.rb +166 -59
- data/lib/aws-sdk-lambda/errors.rb +189 -0
- data/lib/aws-sdk-lambda/types.rb +570 -300
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +112 -104
- data/sig/errors.rbs +36 -0
- data/sig/types.rbs +107 -44
- metadata +1 -1
|
@@ -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
|
|
@@ -1027,6 +1027,10 @@ module Aws::Lambda
|
|
|
1027
1027
|
# @option params [Hash<String,String>] :tags
|
|
1028
1028
|
# A list of tags to associate with the capacity provider.
|
|
1029
1029
|
#
|
|
1030
|
+
# @option params [Types::PropagateTags] :propagate_tags
|
|
1031
|
+
# The tag propagation configuration for the capacity provider. Specifies
|
|
1032
|
+
# tags to apply to managed resources at launch.
|
|
1033
|
+
#
|
|
1030
1034
|
# @return [Types::CreateCapacityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1031
1035
|
#
|
|
1032
1036
|
# * {Types::CreateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
|
|
@@ -1061,6 +1065,12 @@ module Aws::Lambda
|
|
|
1061
1065
|
# tags: {
|
|
1062
1066
|
# "TagKey" => "TagValue",
|
|
1063
1067
|
# },
|
|
1068
|
+
# propagate_tags: {
|
|
1069
|
+
# mode: "None", # accepts None, Explicit
|
|
1070
|
+
# explicit_tags: {
|
|
1071
|
+
# "TagKey" => "TagValue",
|
|
1072
|
+
# },
|
|
1073
|
+
# },
|
|
1064
1074
|
# })
|
|
1065
1075
|
#
|
|
1066
1076
|
# @example Response structure
|
|
@@ -1085,6 +1095,9 @@ module Aws::Lambda
|
|
|
1085
1095
|
# resp.capacity_provider.capacity_provider_scaling_config.scaling_policies[0].target_value #=> Float
|
|
1086
1096
|
# resp.capacity_provider.kms_key_arn #=> String
|
|
1087
1097
|
# resp.capacity_provider.last_modified #=> Time
|
|
1098
|
+
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
1099
|
+
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
1100
|
+
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
1088
1101
|
#
|
|
1089
1102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateCapacityProvider AWS API Documentation
|
|
1090
1103
|
#
|
|
@@ -1313,6 +1326,42 @@ module Aws::Lambda
|
|
|
1313
1326
|
#
|
|
1314
1327
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
|
|
1315
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
|
+
#
|
|
1316
1365
|
# @option params [Integer] :maximum_batching_window_in_seconds
|
|
1317
1366
|
# The maximum amount of time, in seconds, that Lambda spends gathering
|
|
1318
1367
|
# records before invoking the function. You can configure
|
|
@@ -1400,45 +1449,9 @@ module Aws::Lambda
|
|
|
1400
1449
|
# Specific configuration settings for a self-managed Apache Kafka event
|
|
1401
1450
|
# source.
|
|
1402
1451
|
#
|
|
1403
|
-
# @option params [Types::ScalingConfig] :scaling_config
|
|
1404
|
-
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
1405
|
-
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
1406
|
-
# event sources][1].
|
|
1407
|
-
#
|
|
1408
|
-
#
|
|
1409
|
-
#
|
|
1410
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
1411
|
-
#
|
|
1412
1452
|
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
|
1413
1453
|
# Specific configuration settings for a DocumentDB event source.
|
|
1414
1454
|
#
|
|
1415
|
-
# @option params [String] :kms_key_arn
|
|
1416
|
-
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
1417
|
-
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
1418
|
-
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
1419
|
-
# this property to encrypt data using your own customer managed key.
|
|
1420
|
-
#
|
|
1421
|
-
#
|
|
1422
|
-
#
|
|
1423
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
1424
|
-
#
|
|
1425
|
-
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
1426
|
-
# The metrics configuration for your event source. For more information,
|
|
1427
|
-
# see [Event source mapping metrics][1].
|
|
1428
|
-
#
|
|
1429
|
-
#
|
|
1430
|
-
#
|
|
1431
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
1432
|
-
#
|
|
1433
|
-
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
1434
|
-
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
1435
|
-
# configuration for your event source. For more information, see [Event
|
|
1436
|
-
# source mapping logging][1].
|
|
1437
|
-
#
|
|
1438
|
-
#
|
|
1439
|
-
#
|
|
1440
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/esm-logging.html
|
|
1441
|
-
#
|
|
1442
1455
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
1443
1456
|
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
1444
1457
|
# provisioned mode configuration for the event source. For more
|
|
@@ -1458,6 +1471,11 @@ module Aws::Lambda
|
|
|
1458
1471
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
1459
1472
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
1460
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
|
|
1461
1479
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
1462
1480
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
1463
1481
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -1475,13 +1493,8 @@ module Aws::Lambda
|
|
|
1475
1493
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
1476
1494
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
1477
1495
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
1478
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
1479
1496
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
1480
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
1481
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
1482
1497
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
1483
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
1484
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
1485
1498
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
1486
1499
|
#
|
|
1487
1500
|
#
|
|
@@ -1520,6 +1533,16 @@ module Aws::Lambda
|
|
|
1520
1533
|
# },
|
|
1521
1534
|
# ],
|
|
1522
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
|
+
# },
|
|
1523
1546
|
# maximum_batching_window_in_seconds: 1,
|
|
1524
1547
|
# parallelization_factor: 1,
|
|
1525
1548
|
# starting_position: "TRIM_HORIZON", # accepts TRIM_HORIZON, LATEST, AT_TIMESTAMP
|
|
@@ -1589,21 +1612,11 @@ module Aws::Lambda
|
|
|
1589
1612
|
# ],
|
|
1590
1613
|
# },
|
|
1591
1614
|
# },
|
|
1592
|
-
# scaling_config: {
|
|
1593
|
-
# maximum_concurrency: 1,
|
|
1594
|
-
# },
|
|
1595
1615
|
# document_db_event_source_config: {
|
|
1596
1616
|
# database_name: "DatabaseName",
|
|
1597
1617
|
# collection_name: "CollectionName",
|
|
1598
1618
|
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
|
1599
1619
|
# },
|
|
1600
|
-
# kms_key_arn: "KMSKeyArn",
|
|
1601
|
-
# metrics_config: {
|
|
1602
|
-
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
1603
|
-
# },
|
|
1604
|
-
# logging_config: {
|
|
1605
|
-
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
1606
|
-
# },
|
|
1607
1620
|
# provisioned_poller_config: {
|
|
1608
1621
|
# minimum_pollers: 1,
|
|
1609
1622
|
# maximum_pollers: 1,
|
|
@@ -1622,6 +1635,13 @@ module Aws::Lambda
|
|
|
1622
1635
|
# resp.event_source_arn #=> String
|
|
1623
1636
|
# resp.filter_criteria.filters #=> Array
|
|
1624
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
|
|
1625
1645
|
# resp.function_arn #=> String
|
|
1626
1646
|
# resp.last_modified #=> Time
|
|
1627
1647
|
# resp.last_processing_result #=> String
|
|
@@ -1661,17 +1681,10 @@ module Aws::Lambda
|
|
|
1661
1681
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
1662
1682
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
1663
1683
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
1664
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
1665
1684
|
# resp.document_db_event_source_config.database_name #=> String
|
|
1666
1685
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
1667
1686
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
1668
|
-
# resp.kms_key_arn #=> String
|
|
1669
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
1670
|
-
# resp.filter_criteria_error.message #=> String
|
|
1671
1687
|
# resp.event_source_mapping_arn #=> String
|
|
1672
|
-
# resp.metrics_config.metrics #=> Array
|
|
1673
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
1674
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
1675
1688
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
1676
1689
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
1677
1690
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -1835,6 +1848,9 @@ module Aws::Lambda
|
|
|
1835
1848
|
# Set to true to publish the first version of the function during
|
|
1836
1849
|
# creation.
|
|
1837
1850
|
#
|
|
1851
|
+
# @option params [String] :publish_to
|
|
1852
|
+
# Specifies where to publish the function version or configuration.
|
|
1853
|
+
#
|
|
1838
1854
|
# @option params [Types::VpcConfig] :vpc_config
|
|
1839
1855
|
# For network connectivity to Amazon Web Services resources in a VPC,
|
|
1840
1856
|
# specify a list of security groups and subnets in the VPC. When you
|
|
@@ -1920,6 +1936,12 @@ module Aws::Lambda
|
|
|
1920
1936
|
# Connection settings for an Amazon EFS file system or an Amazon S3
|
|
1921
1937
|
# Files file system.
|
|
1922
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
|
+
#
|
|
1923
1945
|
# @option params [Types::ImageConfig] :image_config
|
|
1924
1946
|
# Container image [configuration values][1] that override the values in
|
|
1925
1947
|
# the container image Dockerfile.
|
|
@@ -1928,12 +1950,6 @@ module Aws::Lambda
|
|
|
1928
1950
|
#
|
|
1929
1951
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
|
|
1930
1952
|
#
|
|
1931
|
-
# @option params [String] :code_signing_config_arn
|
|
1932
|
-
# To enable code signing for this function, specify the ARN of a
|
|
1933
|
-
# code-signing configuration. A code-signing configuration includes a
|
|
1934
|
-
# set of signing profiles, which define the trusted publishers for this
|
|
1935
|
-
# function.
|
|
1936
|
-
#
|
|
1937
1953
|
# @option params [Array<String>] :architectures
|
|
1938
1954
|
# The instruction set architecture that the function supports. Enter a
|
|
1939
1955
|
# string array with one of the valid values (arm64 or x86\_64). The
|
|
@@ -1958,23 +1974,20 @@ module Aws::Lambda
|
|
|
1958
1974
|
# @option params [Types::LoggingConfig] :logging_config
|
|
1959
1975
|
# The function's Amazon CloudWatch Logs configuration settings.
|
|
1960
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
|
+
#
|
|
1961
1982
|
# @option params [Types::CapacityProviderConfig] :capacity_provider_config
|
|
1962
1983
|
# Configuration for the capacity provider that manages compute resources
|
|
1963
1984
|
# for Lambda functions.
|
|
1964
1985
|
#
|
|
1965
|
-
# @option params [String] :publish_to
|
|
1966
|
-
# Specifies where to publish the function version or configuration.
|
|
1967
|
-
#
|
|
1968
1986
|
# @option params [Types::DurableConfig] :durable_config
|
|
1969
1987
|
# Configuration settings for durable functions. Enables creating
|
|
1970
1988
|
# functions with durability that can remember their state and continue
|
|
1971
1989
|
# execution even after interruptions.
|
|
1972
1990
|
#
|
|
1973
|
-
# @option params [Types::TenancyConfig] :tenancy_config
|
|
1974
|
-
# Configuration for multi-tenant applications that use Lambda functions.
|
|
1975
|
-
# Defines tenant isolation settings and resource allocations. Required
|
|
1976
|
-
# for functions supporting multiple tenants.
|
|
1977
|
-
#
|
|
1978
1991
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1979
1992
|
#
|
|
1980
1993
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
|
@@ -2004,19 +2017,19 @@ module Aws::Lambda
|
|
|
2004
2017
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
2005
2018
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
2006
2019
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
2007
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
2008
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
2009
2020
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
2010
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
|
|
2011
2024
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
2012
2025
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
2013
2026
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
2014
2027
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
2015
2028
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
2029
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
2016
2030
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
2017
2031
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
2018
2032
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
2019
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
2020
2033
|
#
|
|
2021
2034
|
#
|
|
2022
2035
|
# @example Example: To create a function
|
|
@@ -2093,7 +2106,7 @@ module Aws::Lambda
|
|
|
2093
2106
|
#
|
|
2094
2107
|
# resp = client.create_function({
|
|
2095
2108
|
# function_name: "FunctionName", # required
|
|
2096
|
-
# 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
|
|
2097
2110
|
# role: "RoleArn", # required
|
|
2098
2111
|
# handler: "Handler",
|
|
2099
2112
|
# code: { # required
|
|
@@ -2108,6 +2121,7 @@ module Aws::Lambda
|
|
|
2108
2121
|
# timeout: 1,
|
|
2109
2122
|
# memory_size: 1,
|
|
2110
2123
|
# publish: false,
|
|
2124
|
+
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
2111
2125
|
# vpc_config: {
|
|
2112
2126
|
# subnet_ids: ["SubnetId"],
|
|
2113
2127
|
# security_group_ids: ["SecurityGroupId"],
|
|
@@ -2136,12 +2150,12 @@ module Aws::Lambda
|
|
|
2136
2150
|
# local_mount_path: "LocalMountPath", # required
|
|
2137
2151
|
# },
|
|
2138
2152
|
# ],
|
|
2153
|
+
# code_signing_config_arn: "CodeSigningConfigArn",
|
|
2139
2154
|
# image_config: {
|
|
2140
2155
|
# entry_point: ["String"],
|
|
2141
2156
|
# command: ["String"],
|
|
2142
2157
|
# working_directory: "WorkingDirectory",
|
|
2143
2158
|
# },
|
|
2144
|
-
# code_signing_config_arn: "CodeSigningConfigArn",
|
|
2145
2159
|
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
2146
2160
|
# ephemeral_storage: {
|
|
2147
2161
|
# size: 1, # required
|
|
@@ -2155,6 +2169,9 @@ module Aws::Lambda
|
|
|
2155
2169
|
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
2156
2170
|
# log_group: "LogGroup",
|
|
2157
2171
|
# },
|
|
2172
|
+
# tenancy_config: {
|
|
2173
|
+
# tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
|
|
2174
|
+
# },
|
|
2158
2175
|
# capacity_provider_config: {
|
|
2159
2176
|
# lambda_managed_instances_capacity_provider_config: { # required
|
|
2160
2177
|
# capacity_provider_arn: "CapacityProviderArn", # required
|
|
@@ -2162,21 +2179,17 @@ module Aws::Lambda
|
|
|
2162
2179
|
# execution_environment_memory_gi_b_per_v_cpu: 1.0,
|
|
2163
2180
|
# },
|
|
2164
2181
|
# },
|
|
2165
|
-
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
2166
2182
|
# durable_config: {
|
|
2167
2183
|
# retention_period_in_days: 1,
|
|
2168
2184
|
# execution_timeout: 1,
|
|
2169
2185
|
# },
|
|
2170
|
-
# tenancy_config: {
|
|
2171
|
-
# tenant_isolation_mode: "PER_TENANT", # required, accepts PER_TENANT
|
|
2172
|
-
# },
|
|
2173
2186
|
# })
|
|
2174
2187
|
#
|
|
2175
2188
|
# @example Response structure
|
|
2176
2189
|
#
|
|
2177
2190
|
# resp.function_name #=> String
|
|
2178
2191
|
# resp.function_arn #=> String
|
|
2179
|
-
# 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"
|
|
2180
2193
|
# resp.role #=> String
|
|
2181
2194
|
# resp.handler #=> String
|
|
2182
2195
|
# resp.code_size #=> Integer
|
|
@@ -2208,13 +2221,15 @@ module Aws::Lambda
|
|
|
2208
2221
|
# resp.layers[0].signing_job_arn #=> String
|
|
2209
2222
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
2210
2223
|
# resp.state_reason #=> String
|
|
2211
|
-
# 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"
|
|
2212
2225
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
2213
2226
|
# resp.last_update_status_reason #=> String
|
|
2214
|
-
# 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"
|
|
2215
2228
|
# resp.file_system_configs #=> Array
|
|
2216
2229
|
# resp.file_system_configs[0].arn #=> String
|
|
2217
2230
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
2231
|
+
# resp.signing_profile_version_arn #=> String
|
|
2232
|
+
# resp.signing_job_arn #=> String
|
|
2218
2233
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
2219
2234
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
2220
2235
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -2223,8 +2238,6 @@ module Aws::Lambda
|
|
|
2223
2238
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
2224
2239
|
# resp.image_config_response.error.error_code #=> String
|
|
2225
2240
|
# resp.image_config_response.error.message #=> String
|
|
2226
|
-
# resp.signing_profile_version_arn #=> String
|
|
2227
|
-
# resp.signing_job_arn #=> String
|
|
2228
2241
|
# resp.architectures #=> Array
|
|
2229
2242
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
2230
2243
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -2237,13 +2250,13 @@ module Aws::Lambda
|
|
|
2237
2250
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
2238
2251
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2239
2252
|
# resp.logging_config.log_group #=> String
|
|
2253
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
2240
2254
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
2241
2255
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
2242
2256
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
2243
2257
|
# resp.config_sha_256 #=> String
|
|
2244
2258
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
2245
2259
|
# resp.durable_config.execution_timeout #=> Integer
|
|
2246
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
2247
2260
|
#
|
|
2248
2261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunction AWS API Documentation
|
|
2249
2262
|
#
|
|
@@ -2320,7 +2333,7 @@ module Aws::Lambda
|
|
|
2320
2333
|
# @example Request syntax with placeholder values
|
|
2321
2334
|
#
|
|
2322
2335
|
# resp = client.create_function_url_config({
|
|
2323
|
-
# function_name: "
|
|
2336
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
2324
2337
|
# qualifier: "FunctionUrlQualifier",
|
|
2325
2338
|
# auth_type: "NONE", # required, accepts NONE, AWS_IAM
|
|
2326
2339
|
# cors: {
|
|
@@ -2451,6 +2464,9 @@ module Aws::Lambda
|
|
|
2451
2464
|
# resp.capacity_provider.capacity_provider_scaling_config.scaling_policies[0].target_value #=> Float
|
|
2452
2465
|
# resp.capacity_provider.kms_key_arn #=> String
|
|
2453
2466
|
# resp.capacity_provider.last_modified #=> Time
|
|
2467
|
+
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
2468
|
+
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
2469
|
+
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
2454
2470
|
#
|
|
2455
2471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteCapacityProvider AWS API Documentation
|
|
2456
2472
|
#
|
|
@@ -2507,6 +2523,11 @@ module Aws::Lambda
|
|
|
2507
2523
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
2508
2524
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
2509
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
|
|
2510
2531
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
2511
2532
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
2512
2533
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -2524,13 +2545,8 @@ module Aws::Lambda
|
|
|
2524
2545
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
2525
2546
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
2526
2547
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
2527
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
2528
2548
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
2529
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
2530
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
2531
2549
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
2532
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
2533
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
2534
2550
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
2535
2551
|
#
|
|
2536
2552
|
#
|
|
@@ -2556,7 +2572,7 @@ module Aws::Lambda
|
|
|
2556
2572
|
# @example Request syntax with placeholder values
|
|
2557
2573
|
#
|
|
2558
2574
|
# resp = client.delete_event_source_mapping({
|
|
2559
|
-
# uuid: "
|
|
2575
|
+
# uuid: "UUIDString", # required
|
|
2560
2576
|
# })
|
|
2561
2577
|
#
|
|
2562
2578
|
# @example Response structure
|
|
@@ -2570,6 +2586,13 @@ module Aws::Lambda
|
|
|
2570
2586
|
# resp.event_source_arn #=> String
|
|
2571
2587
|
# resp.filter_criteria.filters #=> Array
|
|
2572
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
|
|
2573
2596
|
# resp.function_arn #=> String
|
|
2574
2597
|
# resp.last_modified #=> Time
|
|
2575
2598
|
# resp.last_processing_result #=> String
|
|
@@ -2609,17 +2632,10 @@ module Aws::Lambda
|
|
|
2609
2632
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
2610
2633
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
2611
2634
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
2612
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
2613
2635
|
# resp.document_db_event_source_config.database_name #=> String
|
|
2614
2636
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
2615
2637
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
2616
|
-
# resp.kms_key_arn #=> String
|
|
2617
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
2618
|
-
# resp.filter_criteria_error.message #=> String
|
|
2619
2638
|
# resp.event_source_mapping_arn #=> String
|
|
2620
|
-
# resp.metrics_config.metrics #=> Array
|
|
2621
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
2622
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
2623
2639
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
2624
2640
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
2625
2641
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -2862,7 +2878,7 @@ module Aws::Lambda
|
|
|
2862
2878
|
# @example Request syntax with placeholder values
|
|
2863
2879
|
#
|
|
2864
2880
|
# resp = client.delete_function_url_config({
|
|
2865
|
-
# function_name: "
|
|
2881
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
2866
2882
|
# qualifier: "FunctionUrlQualifier",
|
|
2867
2883
|
# })
|
|
2868
2884
|
#
|
|
@@ -3136,6 +3152,9 @@ module Aws::Lambda
|
|
|
3136
3152
|
# resp.capacity_provider.capacity_provider_scaling_config.scaling_policies[0].target_value #=> Float
|
|
3137
3153
|
# resp.capacity_provider.kms_key_arn #=> String
|
|
3138
3154
|
# resp.capacity_provider.last_modified #=> Time
|
|
3155
|
+
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
3156
|
+
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
3157
|
+
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
3139
3158
|
#
|
|
3140
3159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetCapacityProvider AWS API Documentation
|
|
3141
3160
|
#
|
|
@@ -3535,6 +3554,11 @@ module Aws::Lambda
|
|
|
3535
3554
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
3536
3555
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
3537
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
|
|
3538
3562
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
3539
3563
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
3540
3564
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -3552,13 +3576,8 @@ module Aws::Lambda
|
|
|
3552
3576
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
3553
3577
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
3554
3578
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
3555
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
3556
3579
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
3557
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
3558
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
3559
3580
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
3560
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
3561
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
3562
3581
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
3563
3582
|
#
|
|
3564
3583
|
#
|
|
@@ -3591,7 +3610,7 @@ module Aws::Lambda
|
|
|
3591
3610
|
# @example Request syntax with placeholder values
|
|
3592
3611
|
#
|
|
3593
3612
|
# resp = client.get_event_source_mapping({
|
|
3594
|
-
# uuid: "
|
|
3613
|
+
# uuid: "UUIDString", # required
|
|
3595
3614
|
# })
|
|
3596
3615
|
#
|
|
3597
3616
|
# @example Response structure
|
|
@@ -3605,6 +3624,13 @@ module Aws::Lambda
|
|
|
3605
3624
|
# resp.event_source_arn #=> String
|
|
3606
3625
|
# resp.filter_criteria.filters #=> Array
|
|
3607
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
|
|
3608
3634
|
# resp.function_arn #=> String
|
|
3609
3635
|
# resp.last_modified #=> Time
|
|
3610
3636
|
# resp.last_processing_result #=> String
|
|
@@ -3644,17 +3670,10 @@ module Aws::Lambda
|
|
|
3644
3670
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
3645
3671
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
3646
3672
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
3647
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
3648
3673
|
# resp.document_db_event_source_config.database_name #=> String
|
|
3649
3674
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
3650
3675
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
3651
|
-
# resp.kms_key_arn #=> String
|
|
3652
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
3653
|
-
# resp.filter_criteria_error.message #=> String
|
|
3654
3676
|
# resp.event_source_mapping_arn #=> String
|
|
3655
|
-
# resp.metrics_config.metrics #=> Array
|
|
3656
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
3657
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3658
3677
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
3659
3678
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
3660
3679
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -3765,7 +3784,7 @@ module Aws::Lambda
|
|
|
3765
3784
|
#
|
|
3766
3785
|
# resp.configuration.function_name #=> String
|
|
3767
3786
|
# resp.configuration.function_arn #=> String
|
|
3768
|
-
# 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"
|
|
3769
3788
|
# resp.configuration.role #=> String
|
|
3770
3789
|
# resp.configuration.handler #=> String
|
|
3771
3790
|
# resp.configuration.code_size #=> Integer
|
|
@@ -3797,13 +3816,15 @@ module Aws::Lambda
|
|
|
3797
3816
|
# resp.configuration.layers[0].signing_job_arn #=> String
|
|
3798
3817
|
# resp.configuration.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
3799
3818
|
# resp.configuration.state_reason #=> String
|
|
3800
|
-
# 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"
|
|
3801
3820
|
# resp.configuration.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
3802
3821
|
# resp.configuration.last_update_status_reason #=> String
|
|
3803
|
-
# 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"
|
|
3804
3823
|
# resp.configuration.file_system_configs #=> Array
|
|
3805
3824
|
# resp.configuration.file_system_configs[0].arn #=> String
|
|
3806
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
|
|
3807
3828
|
# resp.configuration.package_type #=> String, one of "Zip", "Image"
|
|
3808
3829
|
# resp.configuration.image_config_response.image_config.entry_point #=> Array
|
|
3809
3830
|
# resp.configuration.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -3812,8 +3833,6 @@ module Aws::Lambda
|
|
|
3812
3833
|
# resp.configuration.image_config_response.image_config.working_directory #=> String
|
|
3813
3834
|
# resp.configuration.image_config_response.error.error_code #=> String
|
|
3814
3835
|
# resp.configuration.image_config_response.error.message #=> String
|
|
3815
|
-
# resp.configuration.signing_profile_version_arn #=> String
|
|
3816
|
-
# resp.configuration.signing_job_arn #=> String
|
|
3817
3836
|
# resp.configuration.architectures #=> Array
|
|
3818
3837
|
# resp.configuration.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
3819
3838
|
# resp.configuration.ephemeral_storage.size #=> Integer
|
|
@@ -3826,13 +3845,13 @@ module Aws::Lambda
|
|
|
3826
3845
|
# resp.configuration.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
3827
3846
|
# resp.configuration.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
3828
3847
|
# resp.configuration.logging_config.log_group #=> String
|
|
3848
|
+
# resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3829
3849
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
3830
3850
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
3831
3851
|
# resp.configuration.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
3832
3852
|
# resp.configuration.config_sha_256 #=> String
|
|
3833
3853
|
# resp.configuration.durable_config.retention_period_in_days #=> Integer
|
|
3834
3854
|
# resp.configuration.durable_config.execution_timeout #=> Integer
|
|
3835
|
-
# resp.configuration.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
3836
3855
|
# resp.code.repository_type #=> String
|
|
3837
3856
|
# resp.code.location #=> String
|
|
3838
3857
|
# resp.code.image_uri #=> String
|
|
@@ -4015,19 +4034,19 @@ module Aws::Lambda
|
|
|
4015
4034
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
4016
4035
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
4017
4036
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
4018
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
4019
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
4020
4037
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
4021
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
|
|
4022
4041
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
4023
4042
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
4024
4043
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
4025
4044
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
4026
4045
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
4046
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
4027
4047
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
4028
4048
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
4029
4049
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
4030
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
4031
4050
|
#
|
|
4032
4051
|
#
|
|
4033
4052
|
# @example Example: To get a Lambda function's event source mapping
|
|
@@ -4083,7 +4102,7 @@ module Aws::Lambda
|
|
|
4083
4102
|
#
|
|
4084
4103
|
# resp.function_name #=> String
|
|
4085
4104
|
# resp.function_arn #=> String
|
|
4086
|
-
# 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"
|
|
4087
4106
|
# resp.role #=> String
|
|
4088
4107
|
# resp.handler #=> String
|
|
4089
4108
|
# resp.code_size #=> Integer
|
|
@@ -4115,13 +4134,15 @@ module Aws::Lambda
|
|
|
4115
4134
|
# resp.layers[0].signing_job_arn #=> String
|
|
4116
4135
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
4117
4136
|
# resp.state_reason #=> String
|
|
4118
|
-
# 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"
|
|
4119
4138
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
4120
4139
|
# resp.last_update_status_reason #=> String
|
|
4121
|
-
# 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"
|
|
4122
4141
|
# resp.file_system_configs #=> Array
|
|
4123
4142
|
# resp.file_system_configs[0].arn #=> String
|
|
4124
4143
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
4144
|
+
# resp.signing_profile_version_arn #=> String
|
|
4145
|
+
# resp.signing_job_arn #=> String
|
|
4125
4146
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
4126
4147
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
4127
4148
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -4130,8 +4151,6 @@ module Aws::Lambda
|
|
|
4130
4151
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
4131
4152
|
# resp.image_config_response.error.error_code #=> String
|
|
4132
4153
|
# resp.image_config_response.error.message #=> String
|
|
4133
|
-
# resp.signing_profile_version_arn #=> String
|
|
4134
|
-
# resp.signing_job_arn #=> String
|
|
4135
4154
|
# resp.architectures #=> Array
|
|
4136
4155
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
4137
4156
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -4144,13 +4163,13 @@ module Aws::Lambda
|
|
|
4144
4163
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
4145
4164
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
4146
4165
|
# resp.logging_config.log_group #=> String
|
|
4166
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
4147
4167
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
4148
4168
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
4149
4169
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
4150
4170
|
# resp.config_sha_256 #=> String
|
|
4151
4171
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
4152
4172
|
# resp.durable_config.execution_timeout #=> Integer
|
|
4153
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
4154
4173
|
#
|
|
4155
4174
|
#
|
|
4156
4175
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4358,7 +4377,7 @@ module Aws::Lambda
|
|
|
4358
4377
|
# @example Request syntax with placeholder values
|
|
4359
4378
|
#
|
|
4360
4379
|
# resp = client.get_function_url_config({
|
|
4361
|
-
# function_name: "
|
|
4380
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
4362
4381
|
# qualifier: "FunctionUrlQualifier",
|
|
4363
4382
|
# })
|
|
4364
4383
|
#
|
|
@@ -4411,9 +4430,9 @@ module Aws::Lambda
|
|
|
4411
4430
|
# * {Types::GetLayerVersionResponse#description #description} => String
|
|
4412
4431
|
# * {Types::GetLayerVersionResponse#created_date #created_date} => Time
|
|
4413
4432
|
# * {Types::GetLayerVersionResponse#version #version} => Integer
|
|
4433
|
+
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4414
4434
|
# * {Types::GetLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
4415
4435
|
# * {Types::GetLayerVersionResponse#license_info #license_info} => String
|
|
4416
|
-
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4417
4436
|
#
|
|
4418
4437
|
#
|
|
4419
4438
|
# @example Example: To get information about a Lambda layer version
|
|
@@ -4463,11 +4482,11 @@ module Aws::Lambda
|
|
|
4463
4482
|
# resp.description #=> String
|
|
4464
4483
|
# resp.created_date #=> Time
|
|
4465
4484
|
# resp.version #=> Integer
|
|
4466
|
-
# resp.compatible_runtimes #=> Array
|
|
4467
|
-
# 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"
|
|
4468
|
-
# resp.license_info #=> String
|
|
4469
4485
|
# resp.compatible_architectures #=> Array
|
|
4470
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
|
|
4471
4490
|
#
|
|
4472
4491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersion AWS API Documentation
|
|
4473
4492
|
#
|
|
@@ -4496,9 +4515,9 @@ module Aws::Lambda
|
|
|
4496
4515
|
# * {Types::GetLayerVersionResponse#description #description} => String
|
|
4497
4516
|
# * {Types::GetLayerVersionResponse#created_date #created_date} => Time
|
|
4498
4517
|
# * {Types::GetLayerVersionResponse#version #version} => Integer
|
|
4518
|
+
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4499
4519
|
# * {Types::GetLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
4500
4520
|
# * {Types::GetLayerVersionResponse#license_info #license_info} => String
|
|
4501
|
-
# * {Types::GetLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
4502
4521
|
#
|
|
4503
4522
|
#
|
|
4504
4523
|
# @example Example: To get information about a Lambda layer version
|
|
@@ -4544,11 +4563,11 @@ module Aws::Lambda
|
|
|
4544
4563
|
# resp.description #=> String
|
|
4545
4564
|
# resp.created_date #=> Time
|
|
4546
4565
|
# resp.version #=> Integer
|
|
4547
|
-
# resp.compatible_runtimes #=> Array
|
|
4548
|
-
# 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"
|
|
4549
|
-
# resp.license_info #=> String
|
|
4550
4566
|
# resp.compatible_architectures #=> Array
|
|
4551
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
|
|
4552
4571
|
#
|
|
4553
4572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetLayerVersionByArn AWS API Documentation
|
|
4554
4573
|
#
|
|
@@ -4698,9 +4717,9 @@ module Aws::Lambda
|
|
|
4698
4717
|
# * {Types::GetProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
|
|
4699
4718
|
#
|
|
4700
4719
|
#
|
|
4701
|
-
# @example Example: To
|
|
4720
|
+
# @example Example: To view a provisioned concurrency configuration
|
|
4702
4721
|
#
|
|
4703
|
-
# # The following example
|
|
4722
|
+
# # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
4704
4723
|
# # function.
|
|
4705
4724
|
#
|
|
4706
4725
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -4717,9 +4736,9 @@ module Aws::Lambda
|
|
|
4717
4736
|
# status: "READY",
|
|
4718
4737
|
# }
|
|
4719
4738
|
#
|
|
4720
|
-
# @example Example: To
|
|
4739
|
+
# @example Example: To get a provisioned concurrency configuration
|
|
4721
4740
|
#
|
|
4722
|
-
# # The following example
|
|
4741
|
+
# # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
|
|
4723
4742
|
# # function.
|
|
4724
4743
|
#
|
|
4725
4744
|
# resp = client.get_provisioned_concurrency_config({
|
|
@@ -4795,8 +4814,8 @@ module Aws::Lambda
|
|
|
4795
4814
|
# @return [Types::GetRuntimeManagementConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4796
4815
|
#
|
|
4797
4816
|
# * {Types::GetRuntimeManagementConfigResponse#update_runtime_on #update_runtime_on} => String
|
|
4798
|
-
# * {Types::GetRuntimeManagementConfigResponse#runtime_version_arn #runtime_version_arn} => String
|
|
4799
4817
|
# * {Types::GetRuntimeManagementConfigResponse#function_arn #function_arn} => String
|
|
4818
|
+
# * {Types::GetRuntimeManagementConfigResponse#runtime_version_arn #runtime_version_arn} => String
|
|
4800
4819
|
#
|
|
4801
4820
|
# @example Request syntax with placeholder values
|
|
4802
4821
|
#
|
|
@@ -4808,8 +4827,8 @@ module Aws::Lambda
|
|
|
4808
4827
|
# @example Response structure
|
|
4809
4828
|
#
|
|
4810
4829
|
# resp.update_runtime_on #=> String, one of "Auto", "Manual", "FunctionUpdate"
|
|
4811
|
-
# resp.runtime_version_arn #=> String
|
|
4812
4830
|
# resp.function_arn #=> String
|
|
4831
|
+
# resp.runtime_version_arn #=> String
|
|
4813
4832
|
#
|
|
4814
4833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetRuntimeManagementConfig AWS API Documentation
|
|
4815
4834
|
#
|
|
@@ -5470,6 +5489,9 @@ module Aws::Lambda
|
|
|
5470
5489
|
# resp.capacity_providers[0].capacity_provider_scaling_config.scaling_policies[0].target_value #=> Float
|
|
5471
5490
|
# resp.capacity_providers[0].kms_key_arn #=> String
|
|
5472
5491
|
# resp.capacity_providers[0].last_modified #=> Time
|
|
5492
|
+
# resp.capacity_providers[0].propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
5493
|
+
# resp.capacity_providers[0].propagate_tags.explicit_tags #=> Hash
|
|
5494
|
+
# resp.capacity_providers[0].propagate_tags.explicit_tags["TagKey"] #=> String
|
|
5473
5495
|
# resp.next_marker #=> String
|
|
5474
5496
|
#
|
|
5475
5497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListCapacityProviders AWS API Documentation
|
|
@@ -5563,8 +5585,8 @@ module Aws::Lambda
|
|
|
5563
5585
|
# format).
|
|
5564
5586
|
#
|
|
5565
5587
|
# @option params [Boolean] :reverse_order
|
|
5566
|
-
# Set to true to return results in
|
|
5567
|
-
#
|
|
5588
|
+
# Set to true to return results in chronological order (oldest first).
|
|
5589
|
+
# Default is false.
|
|
5568
5590
|
#
|
|
5569
5591
|
# @option params [String] :marker
|
|
5570
5592
|
# Pagination token from a previous request to continue retrieving
|
|
@@ -5718,6 +5740,13 @@ module Aws::Lambda
|
|
|
5718
5740
|
# resp.event_source_mappings[0].event_source_arn #=> String
|
|
5719
5741
|
# resp.event_source_mappings[0].filter_criteria.filters #=> Array
|
|
5720
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
|
|
5721
5750
|
# resp.event_source_mappings[0].function_arn #=> String
|
|
5722
5751
|
# resp.event_source_mappings[0].last_modified #=> Time
|
|
5723
5752
|
# resp.event_source_mappings[0].last_processing_result #=> String
|
|
@@ -5757,17 +5786,10 @@ module Aws::Lambda
|
|
|
5757
5786
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
5758
5787
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
5759
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"
|
|
5760
|
-
# resp.event_source_mappings[0].scaling_config.maximum_concurrency #=> Integer
|
|
5761
5789
|
# resp.event_source_mappings[0].document_db_event_source_config.database_name #=> String
|
|
5762
5790
|
# resp.event_source_mappings[0].document_db_event_source_config.collection_name #=> String
|
|
5763
5791
|
# resp.event_source_mappings[0].document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
5764
|
-
# resp.event_source_mappings[0].kms_key_arn #=> String
|
|
5765
|
-
# resp.event_source_mappings[0].filter_criteria_error.error_code #=> String
|
|
5766
|
-
# resp.event_source_mappings[0].filter_criteria_error.message #=> String
|
|
5767
5792
|
# resp.event_source_mappings[0].event_source_mapping_arn #=> String
|
|
5768
|
-
# resp.event_source_mappings[0].metrics_config.metrics #=> Array
|
|
5769
|
-
# resp.event_source_mappings[0].metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
5770
|
-
# resp.event_source_mappings[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
5771
5793
|
# resp.event_source_mappings[0].provisioned_poller_config.minimum_pollers #=> Integer
|
|
5772
5794
|
# resp.event_source_mappings[0].provisioned_poller_config.maximum_pollers #=> Integer
|
|
5773
5795
|
# resp.event_source_mappings[0].provisioned_poller_config.poller_group_name #=> String
|
|
@@ -5907,7 +5929,7 @@ module Aws::Lambda
|
|
|
5907
5929
|
# @example Request syntax with placeholder values
|
|
5908
5930
|
#
|
|
5909
5931
|
# resp = client.list_function_url_configs({
|
|
5910
|
-
# function_name: "
|
|
5932
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
5911
5933
|
# marker: "String",
|
|
5912
5934
|
# max_items: 1,
|
|
5913
5935
|
# })
|
|
@@ -6106,7 +6128,7 @@ module Aws::Lambda
|
|
|
6106
6128
|
# resp.functions #=> Array
|
|
6107
6129
|
# resp.functions[0].function_name #=> String
|
|
6108
6130
|
# resp.functions[0].function_arn #=> String
|
|
6109
|
-
# 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"
|
|
6110
6132
|
# resp.functions[0].role #=> String
|
|
6111
6133
|
# resp.functions[0].handler #=> String
|
|
6112
6134
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -6138,13 +6160,15 @@ module Aws::Lambda
|
|
|
6138
6160
|
# resp.functions[0].layers[0].signing_job_arn #=> String
|
|
6139
6161
|
# resp.functions[0].state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
6140
6162
|
# resp.functions[0].state_reason #=> String
|
|
6141
|
-
# 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"
|
|
6142
6164
|
# resp.functions[0].last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
6143
6165
|
# resp.functions[0].last_update_status_reason #=> String
|
|
6144
|
-
# 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"
|
|
6145
6167
|
# resp.functions[0].file_system_configs #=> Array
|
|
6146
6168
|
# resp.functions[0].file_system_configs[0].arn #=> String
|
|
6147
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
|
|
6148
6172
|
# resp.functions[0].package_type #=> String, one of "Zip", "Image"
|
|
6149
6173
|
# resp.functions[0].image_config_response.image_config.entry_point #=> Array
|
|
6150
6174
|
# resp.functions[0].image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -6153,8 +6177,6 @@ module Aws::Lambda
|
|
|
6153
6177
|
# resp.functions[0].image_config_response.image_config.working_directory #=> String
|
|
6154
6178
|
# resp.functions[0].image_config_response.error.error_code #=> String
|
|
6155
6179
|
# resp.functions[0].image_config_response.error.message #=> String
|
|
6156
|
-
# resp.functions[0].signing_profile_version_arn #=> String
|
|
6157
|
-
# resp.functions[0].signing_job_arn #=> String
|
|
6158
6180
|
# resp.functions[0].architectures #=> Array
|
|
6159
6181
|
# resp.functions[0].architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6160
6182
|
# resp.functions[0].ephemeral_storage.size #=> Integer
|
|
@@ -6167,13 +6189,13 @@ module Aws::Lambda
|
|
|
6167
6189
|
# resp.functions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
6168
6190
|
# resp.functions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
6169
6191
|
# resp.functions[0].logging_config.log_group #=> String
|
|
6192
|
+
# resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6170
6193
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
6171
6194
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
6172
6195
|
# resp.functions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
6173
6196
|
# resp.functions[0].config_sha_256 #=> String
|
|
6174
6197
|
# resp.functions[0].durable_config.retention_period_in_days #=> Integer
|
|
6175
6198
|
# resp.functions[0].durable_config.execution_timeout #=> Integer
|
|
6176
|
-
# resp.functions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6177
6199
|
#
|
|
6178
6200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctions AWS API Documentation
|
|
6179
6201
|
#
|
|
@@ -6239,6 +6261,13 @@ module Aws::Lambda
|
|
|
6239
6261
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
|
|
6240
6262
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
6241
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
|
|
6270
|
+
#
|
|
6242
6271
|
# @option params [String] :compatible_runtime
|
|
6243
6272
|
# A runtime identifier.
|
|
6244
6273
|
#
|
|
@@ -6262,13 +6291,6 @@ module Aws::Lambda
|
|
|
6262
6291
|
# @option params [Integer] :max_items
|
|
6263
6292
|
# The maximum number of versions to return.
|
|
6264
6293
|
#
|
|
6265
|
-
# @option params [String] :compatible_architecture
|
|
6266
|
-
# The compatible [instruction set architecture][1].
|
|
6267
|
-
#
|
|
6268
|
-
#
|
|
6269
|
-
#
|
|
6270
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6271
|
-
#
|
|
6272
6294
|
# @return [Types::ListLayerVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6273
6295
|
#
|
|
6274
6296
|
# * {Types::ListLayerVersionsResponse#next_marker #next_marker} => String
|
|
@@ -6312,11 +6334,11 @@ module Aws::Lambda
|
|
|
6312
6334
|
# @example Request syntax with placeholder values
|
|
6313
6335
|
#
|
|
6314
6336
|
# resp = client.list_layer_versions({
|
|
6315
|
-
#
|
|
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
|
|
6316
6339
|
# layer_name: "LayerName", # required
|
|
6317
6340
|
# marker: "String",
|
|
6318
6341
|
# max_items: 1,
|
|
6319
|
-
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6320
6342
|
# })
|
|
6321
6343
|
#
|
|
6322
6344
|
# @example Response structure
|
|
@@ -6327,11 +6349,11 @@ module Aws::Lambda
|
|
|
6327
6349
|
# resp.layer_versions[0].version #=> Integer
|
|
6328
6350
|
# resp.layer_versions[0].description #=> String
|
|
6329
6351
|
# resp.layer_versions[0].created_date #=> Time
|
|
6330
|
-
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
6331
|
-
# 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"
|
|
6332
|
-
# resp.layer_versions[0].license_info #=> String
|
|
6333
6352
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
6334
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
|
|
6335
6357
|
#
|
|
6336
6358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayerVersions AWS API Documentation
|
|
6337
6359
|
#
|
|
@@ -6354,6 +6376,13 @@ module Aws::Lambda
|
|
|
6354
6376
|
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
6355
6377
|
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6356
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
|
+
#
|
|
6357
6386
|
# @option params [String] :compatible_runtime
|
|
6358
6387
|
# A runtime identifier.
|
|
6359
6388
|
#
|
|
@@ -6374,13 +6403,6 @@ module Aws::Lambda
|
|
|
6374
6403
|
# @option params [Integer] :max_items
|
|
6375
6404
|
# The maximum number of layers to return.
|
|
6376
6405
|
#
|
|
6377
|
-
# @option params [String] :compatible_architecture
|
|
6378
|
-
# The compatible [instruction set architecture][1].
|
|
6379
|
-
#
|
|
6380
|
-
#
|
|
6381
|
-
#
|
|
6382
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6383
|
-
#
|
|
6384
6406
|
# @return [Types::ListLayersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6385
6407
|
#
|
|
6386
6408
|
# * {Types::ListLayersResponse#next_marker #next_marker} => String
|
|
@@ -6420,10 +6442,10 @@ module Aws::Lambda
|
|
|
6420
6442
|
# @example Request syntax with placeholder values
|
|
6421
6443
|
#
|
|
6422
6444
|
# resp = client.list_layers({
|
|
6423
|
-
#
|
|
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
|
|
6424
6447
|
# marker: "String",
|
|
6425
6448
|
# max_items: 1,
|
|
6426
|
-
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
6427
6449
|
# })
|
|
6428
6450
|
#
|
|
6429
6451
|
# @example Response structure
|
|
@@ -6436,11 +6458,11 @@ module Aws::Lambda
|
|
|
6436
6458
|
# resp.layers[0].latest_matching_version.version #=> Integer
|
|
6437
6459
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
6438
6460
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
6439
|
-
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
6440
|
-
# 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"
|
|
6441
|
-
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
6442
6461
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
6443
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
|
|
6444
6466
|
#
|
|
6445
6467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListLayers AWS API Documentation
|
|
6446
6468
|
#
|
|
@@ -6721,7 +6743,7 @@ module Aws::Lambda
|
|
|
6721
6743
|
# resp.versions #=> Array
|
|
6722
6744
|
# resp.versions[0].function_name #=> String
|
|
6723
6745
|
# resp.versions[0].function_arn #=> String
|
|
6724
|
-
# 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"
|
|
6725
6747
|
# resp.versions[0].role #=> String
|
|
6726
6748
|
# resp.versions[0].handler #=> String
|
|
6727
6749
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -6753,13 +6775,15 @@ module Aws::Lambda
|
|
|
6753
6775
|
# resp.versions[0].layers[0].signing_job_arn #=> String
|
|
6754
6776
|
# resp.versions[0].state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
6755
6777
|
# resp.versions[0].state_reason #=> String
|
|
6756
|
-
# 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"
|
|
6757
6779
|
# resp.versions[0].last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
6758
6780
|
# resp.versions[0].last_update_status_reason #=> String
|
|
6759
|
-
# 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"
|
|
6760
6782
|
# resp.versions[0].file_system_configs #=> Array
|
|
6761
6783
|
# resp.versions[0].file_system_configs[0].arn #=> String
|
|
6762
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
|
|
6763
6787
|
# resp.versions[0].package_type #=> String, one of "Zip", "Image"
|
|
6764
6788
|
# resp.versions[0].image_config_response.image_config.entry_point #=> Array
|
|
6765
6789
|
# resp.versions[0].image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -6768,8 +6792,6 @@ module Aws::Lambda
|
|
|
6768
6792
|
# resp.versions[0].image_config_response.image_config.working_directory #=> String
|
|
6769
6793
|
# resp.versions[0].image_config_response.error.error_code #=> String
|
|
6770
6794
|
# resp.versions[0].image_config_response.error.message #=> String
|
|
6771
|
-
# resp.versions[0].signing_profile_version_arn #=> String
|
|
6772
|
-
# resp.versions[0].signing_job_arn #=> String
|
|
6773
6795
|
# resp.versions[0].architectures #=> Array
|
|
6774
6796
|
# resp.versions[0].architectures[0] #=> String, one of "x86_64", "arm64"
|
|
6775
6797
|
# resp.versions[0].ephemeral_storage.size #=> Integer
|
|
@@ -6782,13 +6804,13 @@ module Aws::Lambda
|
|
|
6782
6804
|
# resp.versions[0].logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
6783
6805
|
# resp.versions[0].logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
6784
6806
|
# resp.versions[0].logging_config.log_group #=> String
|
|
6807
|
+
# resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6785
6808
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
6786
6809
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
6787
6810
|
# resp.versions[0].capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
6788
6811
|
# resp.versions[0].config_sha_256 #=> String
|
|
6789
6812
|
# resp.versions[0].durable_config.retention_period_in_days #=> Integer
|
|
6790
6813
|
# resp.versions[0].durable_config.execution_timeout #=> Integer
|
|
6791
|
-
# resp.versions[0].tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
6792
6814
|
#
|
|
6793
6815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListVersionsByFunction AWS API Documentation
|
|
6794
6816
|
#
|
|
@@ -6819,6 +6841,13 @@ module Aws::Lambda
|
|
|
6819
6841
|
# @option params [required, Types::LayerVersionContentInput] :content
|
|
6820
6842
|
# The function layer archive.
|
|
6821
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
|
+
#
|
|
6822
6851
|
# @option params [Array<String>] :compatible_runtimes
|
|
6823
6852
|
# A list of compatible [function runtimes][1]. Used for filtering with
|
|
6824
6853
|
# ListLayers and ListLayerVersions.
|
|
@@ -6845,13 +6874,6 @@ module Aws::Lambda
|
|
|
6845
6874
|
#
|
|
6846
6875
|
# [1]: https://spdx.org/licenses/
|
|
6847
6876
|
#
|
|
6848
|
-
# @option params [Array<String>] :compatible_architectures
|
|
6849
|
-
# A list of compatible [instruction set architectures][1].
|
|
6850
|
-
#
|
|
6851
|
-
#
|
|
6852
|
-
#
|
|
6853
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html
|
|
6854
|
-
#
|
|
6855
6877
|
# @return [Types::PublishLayerVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6856
6878
|
#
|
|
6857
6879
|
# * {Types::PublishLayerVersionResponse#content #content} => Types::LayerVersionContentOutput
|
|
@@ -6860,9 +6882,9 @@ module Aws::Lambda
|
|
|
6860
6882
|
# * {Types::PublishLayerVersionResponse#description #description} => String
|
|
6861
6883
|
# * {Types::PublishLayerVersionResponse#created_date #created_date} => Time
|
|
6862
6884
|
# * {Types::PublishLayerVersionResponse#version #version} => Integer
|
|
6885
|
+
# * {Types::PublishLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
6863
6886
|
# * {Types::PublishLayerVersionResponse#compatible_runtimes #compatible_runtimes} => Array<String>
|
|
6864
6887
|
# * {Types::PublishLayerVersionResponse#license_info #license_info} => String
|
|
6865
|
-
# * {Types::PublishLayerVersionResponse#compatible_architectures #compatible_architectures} => Array<String>
|
|
6866
6888
|
#
|
|
6867
6889
|
#
|
|
6868
6890
|
# @example Example: To create a Lambda layer version
|
|
@@ -6914,9 +6936,9 @@ module Aws::Lambda
|
|
|
6914
6936
|
# s3_object_version: "S3ObjectVersion",
|
|
6915
6937
|
# zip_file: "data",
|
|
6916
6938
|
# },
|
|
6917
|
-
# 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
|
|
6918
|
-
# license_info: "LicenseInfo",
|
|
6919
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",
|
|
6920
6942
|
# })
|
|
6921
6943
|
#
|
|
6922
6944
|
# @example Response structure
|
|
@@ -6931,11 +6953,11 @@ module Aws::Lambda
|
|
|
6931
6953
|
# resp.description #=> String
|
|
6932
6954
|
# resp.created_date #=> Time
|
|
6933
6955
|
# resp.version #=> Integer
|
|
6934
|
-
# resp.compatible_runtimes #=> Array
|
|
6935
|
-
# 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"
|
|
6936
|
-
# resp.license_info #=> String
|
|
6937
6956
|
# resp.compatible_architectures #=> Array
|
|
6938
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
|
|
6939
6961
|
#
|
|
6940
6962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishLayerVersion AWS API Documentation
|
|
6941
6963
|
#
|
|
@@ -7025,19 +7047,19 @@ module Aws::Lambda
|
|
|
7025
7047
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
7026
7048
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
7027
7049
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
7028
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
7029
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
7030
7050
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
7031
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
|
|
7032
7054
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
7033
7055
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
7034
7056
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
7035
7057
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
7036
7058
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
7059
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7037
7060
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
7038
7061
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
7039
7062
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
7040
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
7041
7063
|
#
|
|
7042
7064
|
#
|
|
7043
7065
|
# @example Example: To publish a version of a Lambda function
|
|
@@ -7093,7 +7115,7 @@ module Aws::Lambda
|
|
|
7093
7115
|
#
|
|
7094
7116
|
# resp.function_name #=> String
|
|
7095
7117
|
# resp.function_arn #=> String
|
|
7096
|
-
# 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"
|
|
7097
7119
|
# resp.role #=> String
|
|
7098
7120
|
# resp.handler #=> String
|
|
7099
7121
|
# resp.code_size #=> Integer
|
|
@@ -7125,13 +7147,15 @@ module Aws::Lambda
|
|
|
7125
7147
|
# resp.layers[0].signing_job_arn #=> String
|
|
7126
7148
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
7127
7149
|
# resp.state_reason #=> String
|
|
7128
|
-
# 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"
|
|
7129
7151
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
7130
7152
|
# resp.last_update_status_reason #=> String
|
|
7131
|
-
# 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"
|
|
7132
7154
|
# resp.file_system_configs #=> Array
|
|
7133
7155
|
# resp.file_system_configs[0].arn #=> String
|
|
7134
7156
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
7157
|
+
# resp.signing_profile_version_arn #=> String
|
|
7158
|
+
# resp.signing_job_arn #=> String
|
|
7135
7159
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
7136
7160
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
7137
7161
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -7140,8 +7164,6 @@ module Aws::Lambda
|
|
|
7140
7164
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
7141
7165
|
# resp.image_config_response.error.error_code #=> String
|
|
7142
7166
|
# resp.image_config_response.error.message #=> String
|
|
7143
|
-
# resp.signing_profile_version_arn #=> String
|
|
7144
|
-
# resp.signing_job_arn #=> String
|
|
7145
7167
|
# resp.architectures #=> Array
|
|
7146
7168
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
7147
7169
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -7154,13 +7176,13 @@ module Aws::Lambda
|
|
|
7154
7176
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
7155
7177
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
7156
7178
|
# resp.logging_config.log_group #=> String
|
|
7179
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
7157
7180
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
7158
7181
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
7159
7182
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
7160
7183
|
# resp.config_sha_256 #=> String
|
|
7161
7184
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
7162
7185
|
# resp.durable_config.execution_timeout #=> Integer
|
|
7163
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
7164
7186
|
#
|
|
7165
7187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/PublishVersion AWS API Documentation
|
|
7166
7188
|
#
|
|
@@ -7600,8 +7622,8 @@ module Aws::Lambda
|
|
|
7600
7622
|
# @return [Types::PutProvisionedConcurrencyConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7601
7623
|
#
|
|
7602
7624
|
# * {Types::PutProvisionedConcurrencyConfigResponse#requested_provisioned_concurrent_executions #requested_provisioned_concurrent_executions} => Integer
|
|
7603
|
-
# * {Types::PutProvisionedConcurrencyConfigResponse#available_provisioned_concurrent_executions #available_provisioned_concurrent_executions} => Integer
|
|
7604
7625
|
# * {Types::PutProvisionedConcurrencyConfigResponse#allocated_provisioned_concurrent_executions #allocated_provisioned_concurrent_executions} => Integer
|
|
7626
|
+
# * {Types::PutProvisionedConcurrencyConfigResponse#available_provisioned_concurrent_executions #available_provisioned_concurrent_executions} => Integer
|
|
7605
7627
|
# * {Types::PutProvisionedConcurrencyConfigResponse#status #status} => String
|
|
7606
7628
|
# * {Types::PutProvisionedConcurrencyConfigResponse#status_reason #status_reason} => String
|
|
7607
7629
|
# * {Types::PutProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
|
|
@@ -7636,8 +7658,8 @@ module Aws::Lambda
|
|
|
7636
7658
|
# @example Response structure
|
|
7637
7659
|
#
|
|
7638
7660
|
# resp.requested_provisioned_concurrent_executions #=> Integer
|
|
7639
|
-
# resp.available_provisioned_concurrent_executions #=> Integer
|
|
7640
7661
|
# resp.allocated_provisioned_concurrent_executions #=> Integer
|
|
7662
|
+
# resp.available_provisioned_concurrent_executions #=> Integer
|
|
7641
7663
|
# resp.status #=> String, one of "IN_PROGRESS", "READY", "FAILED"
|
|
7642
7664
|
# resp.status_reason #=> String
|
|
7643
7665
|
# resp.last_modified #=> Time
|
|
@@ -8203,6 +8225,10 @@ module Aws::Lambda
|
|
|
8203
8225
|
# @option params [Types::CapacityProviderScalingConfig] :capacity_provider_scaling_config
|
|
8204
8226
|
# The updated scaling configuration for the capacity provider.
|
|
8205
8227
|
#
|
|
8228
|
+
# @option params [Types::PropagateTags] :propagate_tags
|
|
8229
|
+
# Configuration for tag propagation to managed resources launched by the
|
|
8230
|
+
# capacity provider.
|
|
8231
|
+
#
|
|
8206
8232
|
# @return [Types::UpdateCapacityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8207
8233
|
#
|
|
8208
8234
|
# * {Types::UpdateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
|
|
@@ -8221,6 +8247,12 @@ module Aws::Lambda
|
|
|
8221
8247
|
# },
|
|
8222
8248
|
# ],
|
|
8223
8249
|
# },
|
|
8250
|
+
# propagate_tags: {
|
|
8251
|
+
# mode: "None", # accepts None, Explicit
|
|
8252
|
+
# explicit_tags: {
|
|
8253
|
+
# "TagKey" => "TagValue",
|
|
8254
|
+
# },
|
|
8255
|
+
# },
|
|
8224
8256
|
# })
|
|
8225
8257
|
#
|
|
8226
8258
|
# @example Response structure
|
|
@@ -8245,6 +8277,9 @@ module Aws::Lambda
|
|
|
8245
8277
|
# resp.capacity_provider.capacity_provider_scaling_config.scaling_policies[0].target_value #=> Float
|
|
8246
8278
|
# resp.capacity_provider.kms_key_arn #=> String
|
|
8247
8279
|
# resp.capacity_provider.last_modified #=> Time
|
|
8280
|
+
# resp.capacity_provider.propagate_tags.mode #=> String, one of "None", "Explicit"
|
|
8281
|
+
# resp.capacity_provider.propagate_tags.explicit_tags #=> Hash
|
|
8282
|
+
# resp.capacity_provider.propagate_tags.explicit_tags["TagKey"] #=> String
|
|
8248
8283
|
#
|
|
8249
8284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateCapacityProvider AWS API Documentation
|
|
8250
8285
|
#
|
|
@@ -8447,6 +8482,38 @@ module Aws::Lambda
|
|
|
8447
8482
|
#
|
|
8448
8483
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
|
|
8449
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
|
+
#
|
|
8450
8517
|
# @option params [Integer] :maximum_batching_window_in_seconds
|
|
8451
8518
|
# The maximum amount of time, in seconds, that Lambda spends gathering
|
|
8452
8519
|
# records before invoking the function. You can configure
|
|
@@ -8466,6 +8533,10 @@ module Aws::Lambda
|
|
|
8466
8533
|
# when you set `BatchSize` to a value greater than 10, you must set
|
|
8467
8534
|
# `MaximumBatchingWindowInSeconds` to at least 1.
|
|
8468
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
|
+
#
|
|
8469
8540
|
# @option params [Types::DestinationConfig] :destination_config
|
|
8470
8541
|
# (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka)
|
|
8471
8542
|
# A configuration object that specifies the destination of an event
|
|
@@ -8486,33 +8557,20 @@ module Aws::Lambda
|
|
|
8486
8557
|
# value is infinite (-1). When set to infinite (-1), failed records are
|
|
8487
8558
|
# retried until the record expires.
|
|
8488
8559
|
#
|
|
8489
|
-
# @option params [Integer] :parallelization_factor
|
|
8490
|
-
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
|
8491
|
-
# from each shard concurrently.
|
|
8492
|
-
#
|
|
8493
|
-
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
|
8494
|
-
# An array of authentication protocols or VPC components required to
|
|
8495
|
-
# secure your event source.
|
|
8496
|
-
#
|
|
8497
8560
|
# @option params [Integer] :tumbling_window_in_seconds
|
|
8498
8561
|
# (Kinesis and DynamoDB Streams only) The duration in seconds of a
|
|
8499
8562
|
# processing window for DynamoDB and Kinesis Streams event sources. A
|
|
8500
8563
|
# value of 0 seconds indicates no tumbling window.
|
|
8501
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
|
+
#
|
|
8502
8569
|
# @option params [Array<String>] :function_response_types
|
|
8503
8570
|
# (Kinesis, DynamoDB Streams, Amazon MSK, self-managed Apache Kafka, and
|
|
8504
8571
|
# Amazon SQS) A list of current response type enums applied to the event
|
|
8505
8572
|
# source mapping.
|
|
8506
8573
|
#
|
|
8507
|
-
# @option params [Types::ScalingConfig] :scaling_config
|
|
8508
|
-
# (Amazon SQS only) The scaling configuration for the event source. For
|
|
8509
|
-
# more information, see [Configuring maximum concurrency for Amazon SQS
|
|
8510
|
-
# event sources][1].
|
|
8511
|
-
#
|
|
8512
|
-
#
|
|
8513
|
-
#
|
|
8514
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
|
8515
|
-
#
|
|
8516
8574
|
# @option params [Types::AmazonManagedKafkaEventSourceConfig] :amazon_managed_kafka_event_source_config
|
|
8517
8575
|
# Specific configuration settings for an Amazon Managed Streaming for
|
|
8518
8576
|
# Apache Kafka (Amazon MSK) event source.
|
|
@@ -8524,29 +8582,6 @@ module Aws::Lambda
|
|
|
8524
8582
|
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
|
8525
8583
|
# Specific configuration settings for a DocumentDB event source.
|
|
8526
8584
|
#
|
|
8527
|
-
# @option params [String] :kms_key_arn
|
|
8528
|
-
# The ARN of the Key Management Service (KMS) customer managed key that
|
|
8529
|
-
# Lambda uses to encrypt your function's [filter criteria][1]. By
|
|
8530
|
-
# default, Lambda does not encrypt your filter criteria object. Specify
|
|
8531
|
-
# this property to encrypt data using your own customer managed key.
|
|
8532
|
-
#
|
|
8533
|
-
#
|
|
8534
|
-
#
|
|
8535
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics
|
|
8536
|
-
#
|
|
8537
|
-
# @option params [Types::EventSourceMappingMetricsConfig] :metrics_config
|
|
8538
|
-
# The metrics configuration for your event source. For more information,
|
|
8539
|
-
# see [Event source mapping metrics][1].
|
|
8540
|
-
#
|
|
8541
|
-
#
|
|
8542
|
-
#
|
|
8543
|
-
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics
|
|
8544
|
-
#
|
|
8545
|
-
# @option params [Types::EventSourceMappingLoggingConfig] :logging_config
|
|
8546
|
-
# (Amazon MSK, and self-managed Apache Kafka only) The logging
|
|
8547
|
-
# configuration for your event source. Use this configuration object to
|
|
8548
|
-
# define the level of logs for your event source mapping.
|
|
8549
|
-
#
|
|
8550
8585
|
# @option params [Types::ProvisionedPollerConfig] :provisioned_poller_config
|
|
8551
8586
|
# (Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The
|
|
8552
8587
|
# provisioned mode configuration for the event source. For more
|
|
@@ -8566,6 +8601,11 @@ module Aws::Lambda
|
|
|
8566
8601
|
# * {Types::EventSourceMappingConfiguration#parallelization_factor #parallelization_factor} => Integer
|
|
8567
8602
|
# * {Types::EventSourceMappingConfiguration#event_source_arn #event_source_arn} => String
|
|
8568
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
|
|
8569
8609
|
# * {Types::EventSourceMappingConfiguration#function_arn #function_arn} => String
|
|
8570
8610
|
# * {Types::EventSourceMappingConfiguration#last_modified #last_modified} => Time
|
|
8571
8611
|
# * {Types::EventSourceMappingConfiguration#last_processing_result #last_processing_result} => String
|
|
@@ -8583,13 +8623,8 @@ module Aws::Lambda
|
|
|
8583
8623
|
# * {Types::EventSourceMappingConfiguration#function_response_types #function_response_types} => Array<String>
|
|
8584
8624
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
|
8585
8625
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
|
8586
|
-
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
|
8587
8626
|
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
|
8588
|
-
# * {Types::EventSourceMappingConfiguration#kms_key_arn #kms_key_arn} => String
|
|
8589
|
-
# * {Types::EventSourceMappingConfiguration#filter_criteria_error #filter_criteria_error} => Types::FilterCriteriaError
|
|
8590
8627
|
# * {Types::EventSourceMappingConfiguration#event_source_mapping_arn #event_source_mapping_arn} => String
|
|
8591
|
-
# * {Types::EventSourceMappingConfiguration#metrics_config #metrics_config} => Types::EventSourceMappingMetricsConfig
|
|
8592
|
-
# * {Types::EventSourceMappingConfiguration#logging_config #logging_config} => Types::EventSourceMappingLoggingConfig
|
|
8593
8628
|
# * {Types::EventSourceMappingConfiguration#provisioned_poller_config #provisioned_poller_config} => Types::ProvisionedPollerConfig
|
|
8594
8629
|
#
|
|
8595
8630
|
#
|
|
@@ -8601,7 +8636,7 @@ module Aws::Lambda
|
|
|
8601
8636
|
# batch_size: 123,
|
|
8602
8637
|
# enabled: true,
|
|
8603
8638
|
# function_name: "myFunction",
|
|
8604
|
-
# uuid: "
|
|
8639
|
+
# uuid: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
|
|
8605
8640
|
# })
|
|
8606
8641
|
#
|
|
8607
8642
|
# resp.to_h outputs the following:
|
|
@@ -8613,13 +8648,13 @@ module Aws::Lambda
|
|
|
8613
8648
|
# last_processing_result: "",
|
|
8614
8649
|
# state: "",
|
|
8615
8650
|
# state_transition_reason: "",
|
|
8616
|
-
# uuid: "
|
|
8651
|
+
# uuid: "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
|
|
8617
8652
|
# }
|
|
8618
8653
|
#
|
|
8619
8654
|
# @example Request syntax with placeholder values
|
|
8620
8655
|
#
|
|
8621
8656
|
# resp = client.update_event_source_mapping({
|
|
8622
|
-
# uuid: "
|
|
8657
|
+
# uuid: "UUIDString", # required
|
|
8623
8658
|
# function_name: "NamespacedFunctionName",
|
|
8624
8659
|
# enabled: false,
|
|
8625
8660
|
# batch_size: 1,
|
|
@@ -8630,7 +8665,18 @@ module Aws::Lambda
|
|
|
8630
8665
|
# },
|
|
8631
8666
|
# ],
|
|
8632
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
|
+
# },
|
|
8633
8678
|
# maximum_batching_window_in_seconds: 1,
|
|
8679
|
+
# parallelization_factor: 1,
|
|
8634
8680
|
# destination_config: {
|
|
8635
8681
|
# on_success: {
|
|
8636
8682
|
# destination: "DestinationArn",
|
|
@@ -8642,18 +8688,14 @@ module Aws::Lambda
|
|
|
8642
8688
|
# maximum_record_age_in_seconds: 1,
|
|
8643
8689
|
# bisect_batch_on_function_error: false,
|
|
8644
8690
|
# maximum_retry_attempts: 1,
|
|
8645
|
-
#
|
|
8691
|
+
# tumbling_window_in_seconds: 1,
|
|
8646
8692
|
# source_access_configurations: [
|
|
8647
8693
|
# {
|
|
8648
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
|
|
8649
8695
|
# uri: "URI",
|
|
8650
8696
|
# },
|
|
8651
8697
|
# ],
|
|
8652
|
-
# tumbling_window_in_seconds: 1,
|
|
8653
8698
|
# function_response_types: ["ReportBatchItemFailures"], # accepts ReportBatchItemFailures
|
|
8654
|
-
# scaling_config: {
|
|
8655
|
-
# maximum_concurrency: 1,
|
|
8656
|
-
# },
|
|
8657
8699
|
# amazon_managed_kafka_event_source_config: {
|
|
8658
8700
|
# consumer_group_id: "URI",
|
|
8659
8701
|
# schema_registry_config: {
|
|
@@ -8695,13 +8737,6 @@ module Aws::Lambda
|
|
|
8695
8737
|
# collection_name: "CollectionName",
|
|
8696
8738
|
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
|
8697
8739
|
# },
|
|
8698
|
-
# kms_key_arn: "KMSKeyArn",
|
|
8699
|
-
# metrics_config: {
|
|
8700
|
-
# metrics: ["EventCount"], # accepts EventCount, ErrorCount, KafkaMetrics
|
|
8701
|
-
# },
|
|
8702
|
-
# logging_config: {
|
|
8703
|
-
# system_log_level: "DEBUG", # accepts DEBUG, INFO, WARN
|
|
8704
|
-
# },
|
|
8705
8740
|
# provisioned_poller_config: {
|
|
8706
8741
|
# minimum_pollers: 1,
|
|
8707
8742
|
# maximum_pollers: 1,
|
|
@@ -8720,6 +8755,13 @@ module Aws::Lambda
|
|
|
8720
8755
|
# resp.event_source_arn #=> String
|
|
8721
8756
|
# resp.filter_criteria.filters #=> Array
|
|
8722
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
|
|
8723
8765
|
# resp.function_arn #=> String
|
|
8724
8766
|
# resp.last_modified #=> Time
|
|
8725
8767
|
# resp.last_processing_result #=> String
|
|
@@ -8759,17 +8801,10 @@ module Aws::Lambda
|
|
|
8759
8801
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.access_configs[0].uri #=> String
|
|
8760
8802
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs #=> Array
|
|
8761
8803
|
# resp.self_managed_kafka_event_source_config.schema_registry_config.schema_validation_configs[0].attribute #=> String, one of "KEY", "VALUE"
|
|
8762
|
-
# resp.scaling_config.maximum_concurrency #=> Integer
|
|
8763
8804
|
# resp.document_db_event_source_config.database_name #=> String
|
|
8764
8805
|
# resp.document_db_event_source_config.collection_name #=> String
|
|
8765
8806
|
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
|
8766
|
-
# resp.kms_key_arn #=> String
|
|
8767
|
-
# resp.filter_criteria_error.error_code #=> String
|
|
8768
|
-
# resp.filter_criteria_error.message #=> String
|
|
8769
8807
|
# resp.event_source_mapping_arn #=> String
|
|
8770
|
-
# resp.metrics_config.metrics #=> Array
|
|
8771
|
-
# resp.metrics_config.metrics[0] #=> String, one of "EventCount", "ErrorCount", "KafkaMetrics"
|
|
8772
|
-
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
8773
8808
|
# resp.provisioned_poller_config.minimum_pollers #=> Integer
|
|
8774
8809
|
# resp.provisioned_poller_config.maximum_pollers #=> Integer
|
|
8775
8810
|
# resp.provisioned_poller_config.poller_group_name #=> String
|
|
@@ -8852,11 +8887,19 @@ module Aws::Lambda
|
|
|
8852
8887
|
# URI of a container image in the Amazon ECR registry. Do not use for a
|
|
8853
8888
|
# function defined with a .zip file archive.
|
|
8854
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
|
+
#
|
|
8855
8895
|
# @option params [Boolean] :publish
|
|
8856
8896
|
# Set to true to publish a new version of the function after updating
|
|
8857
8897
|
# the code. This has the same effect as calling PublishVersion
|
|
8858
8898
|
# separately.
|
|
8859
8899
|
#
|
|
8900
|
+
# @option params [String] :publish_to
|
|
8901
|
+
# Specifies where to publish the function version or configuration.
|
|
8902
|
+
#
|
|
8860
8903
|
# @option params [Boolean] :dry_run
|
|
8861
8904
|
# Set to true to validate the request parameters and access permissions
|
|
8862
8905
|
# without modifying the function code.
|
|
@@ -8866,20 +8909,12 @@ module Aws::Lambda
|
|
|
8866
8909
|
# specified. Use this option to avoid modifying a function that has
|
|
8867
8910
|
# changed since you last read it.
|
|
8868
8911
|
#
|
|
8869
|
-
# @option params [Array<String>] :architectures
|
|
8870
|
-
# The instruction set architecture that the function supports. Enter a
|
|
8871
|
-
# string array with one of the valid values (arm64 or x86\_64). The
|
|
8872
|
-
# default value is `x86_64`.
|
|
8873
|
-
#
|
|
8874
8912
|
# @option params [String] :source_kms_key_arn
|
|
8875
8913
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
8876
8914
|
# that's used to encrypt your function's .zip deployment package. If
|
|
8877
8915
|
# you don't provide a customer managed key, Lambda uses an Amazon Web
|
|
8878
8916
|
# Services managed key.
|
|
8879
8917
|
#
|
|
8880
|
-
# @option params [String] :publish_to
|
|
8881
|
-
# Specifies where to publish the function version or configuration.
|
|
8882
|
-
#
|
|
8883
8918
|
# @return [Types::FunctionConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8884
8919
|
#
|
|
8885
8920
|
# * {Types::FunctionConfiguration#function_name #function_name} => String
|
|
@@ -8909,19 +8944,19 @@ module Aws::Lambda
|
|
|
8909
8944
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
8910
8945
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
8911
8946
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
8912
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
8913
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
8914
8947
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
8915
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
|
|
8916
8951
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
8917
8952
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
8918
8953
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
8919
8954
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
8920
8955
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
8956
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
8921
8957
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
8922
8958
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
8923
8959
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
8924
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
8925
8960
|
#
|
|
8926
8961
|
#
|
|
8927
8962
|
# @example Example: To update a Lambda function's code
|
|
@@ -8964,19 +8999,19 @@ module Aws::Lambda
|
|
|
8964
8999
|
# s3_key: "S3Key",
|
|
8965
9000
|
# s3_object_version: "S3ObjectVersion",
|
|
8966
9001
|
# image_uri: "String",
|
|
9002
|
+
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
8967
9003
|
# publish: false,
|
|
9004
|
+
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
8968
9005
|
# dry_run: false,
|
|
8969
9006
|
# revision_id: "String",
|
|
8970
|
-
# architectures: ["x86_64"], # accepts x86_64, arm64
|
|
8971
9007
|
# source_kms_key_arn: "KMSKeyArn",
|
|
8972
|
-
# publish_to: "LATEST_PUBLISHED", # accepts LATEST_PUBLISHED
|
|
8973
9008
|
# })
|
|
8974
9009
|
#
|
|
8975
9010
|
# @example Response structure
|
|
8976
9011
|
#
|
|
8977
9012
|
# resp.function_name #=> String
|
|
8978
9013
|
# resp.function_arn #=> String
|
|
8979
|
-
# 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"
|
|
8980
9015
|
# resp.role #=> String
|
|
8981
9016
|
# resp.handler #=> String
|
|
8982
9017
|
# resp.code_size #=> Integer
|
|
@@ -9008,13 +9043,15 @@ module Aws::Lambda
|
|
|
9008
9043
|
# resp.layers[0].signing_job_arn #=> String
|
|
9009
9044
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
9010
9045
|
# resp.state_reason #=> String
|
|
9011
|
-
# 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"
|
|
9012
9047
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
9013
9048
|
# resp.last_update_status_reason #=> String
|
|
9014
|
-
# 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"
|
|
9015
9050
|
# resp.file_system_configs #=> Array
|
|
9016
9051
|
# resp.file_system_configs[0].arn #=> String
|
|
9017
9052
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
9053
|
+
# resp.signing_profile_version_arn #=> String
|
|
9054
|
+
# resp.signing_job_arn #=> String
|
|
9018
9055
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
9019
9056
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
9020
9057
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -9023,8 +9060,6 @@ module Aws::Lambda
|
|
|
9023
9060
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
9024
9061
|
# resp.image_config_response.error.error_code #=> String
|
|
9025
9062
|
# resp.image_config_response.error.message #=> String
|
|
9026
|
-
# resp.signing_profile_version_arn #=> String
|
|
9027
|
-
# resp.signing_job_arn #=> String
|
|
9028
9063
|
# resp.architectures #=> Array
|
|
9029
9064
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
9030
9065
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -9037,13 +9072,13 @@ module Aws::Lambda
|
|
|
9037
9072
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
9038
9073
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
9039
9074
|
# resp.logging_config.log_group #=> String
|
|
9075
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9040
9076
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
9041
9077
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
9042
9078
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
9043
9079
|
# resp.config_sha_256 #=> String
|
|
9044
9080
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
9045
9081
|
# resp.durable_config.execution_timeout #=> Integer
|
|
9046
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9047
9082
|
#
|
|
9048
9083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionCode AWS API Documentation
|
|
9049
9084
|
#
|
|
@@ -9293,19 +9328,19 @@ module Aws::Lambda
|
|
|
9293
9328
|
# * {Types::FunctionConfiguration#last_update_status_reason #last_update_status_reason} => String
|
|
9294
9329
|
# * {Types::FunctionConfiguration#last_update_status_reason_code #last_update_status_reason_code} => String
|
|
9295
9330
|
# * {Types::FunctionConfiguration#file_system_configs #file_system_configs} => Array<Types::FileSystemConfig>
|
|
9296
|
-
# * {Types::FunctionConfiguration#package_type #package_type} => String
|
|
9297
|
-
# * {Types::FunctionConfiguration#image_config_response #image_config_response} => Types::ImageConfigResponse
|
|
9298
9331
|
# * {Types::FunctionConfiguration#signing_profile_version_arn #signing_profile_version_arn} => String
|
|
9299
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
|
|
9300
9335
|
# * {Types::FunctionConfiguration#architectures #architectures} => Array<String>
|
|
9301
9336
|
# * {Types::FunctionConfiguration#ephemeral_storage #ephemeral_storage} => Types::EphemeralStorage
|
|
9302
9337
|
# * {Types::FunctionConfiguration#snap_start #snap_start} => Types::SnapStartResponse
|
|
9303
9338
|
# * {Types::FunctionConfiguration#runtime_version_config #runtime_version_config} => Types::RuntimeVersionConfig
|
|
9304
9339
|
# * {Types::FunctionConfiguration#logging_config #logging_config} => Types::LoggingConfig
|
|
9340
|
+
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
9305
9341
|
# * {Types::FunctionConfiguration#capacity_provider_config #capacity_provider_config} => Types::CapacityProviderConfig
|
|
9306
9342
|
# * {Types::FunctionConfiguration#config_sha_256 #config_sha_256} => String
|
|
9307
9343
|
# * {Types::FunctionConfiguration#durable_config #durable_config} => Types::DurableConfig
|
|
9308
|
-
# * {Types::FunctionConfiguration#tenancy_config #tenancy_config} => Types::TenancyConfig
|
|
9309
9344
|
#
|
|
9310
9345
|
#
|
|
9311
9346
|
# @example Example: To update a Lambda function's configuration
|
|
@@ -9365,7 +9400,7 @@ module Aws::Lambda
|
|
|
9365
9400
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
9366
9401
|
# },
|
|
9367
9402
|
# },
|
|
9368
|
-
# 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
|
|
9369
9404
|
# dead_letter_config: {
|
|
9370
9405
|
# target_arn: "ResourceArn",
|
|
9371
9406
|
# },
|
|
@@ -9415,7 +9450,7 @@ module Aws::Lambda
|
|
|
9415
9450
|
#
|
|
9416
9451
|
# resp.function_name #=> String
|
|
9417
9452
|
# resp.function_arn #=> String
|
|
9418
|
-
# 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"
|
|
9419
9454
|
# resp.role #=> String
|
|
9420
9455
|
# resp.handler #=> String
|
|
9421
9456
|
# resp.code_size #=> Integer
|
|
@@ -9447,13 +9482,15 @@ module Aws::Lambda
|
|
|
9447
9482
|
# resp.layers[0].signing_job_arn #=> String
|
|
9448
9483
|
# resp.state #=> String, one of "Pending", "Active", "Inactive", "Failed", "Deactivating", "Deactivated", "ActiveNonInvocable", "Deleting"
|
|
9449
9484
|
# resp.state_reason #=> String
|
|
9450
|
-
# 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"
|
|
9451
9486
|
# resp.last_update_status #=> String, one of "Successful", "Failed", "InProgress"
|
|
9452
9487
|
# resp.last_update_status_reason #=> String
|
|
9453
|
-
# 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"
|
|
9454
9489
|
# resp.file_system_configs #=> Array
|
|
9455
9490
|
# resp.file_system_configs[0].arn #=> String
|
|
9456
9491
|
# resp.file_system_configs[0].local_mount_path #=> String
|
|
9492
|
+
# resp.signing_profile_version_arn #=> String
|
|
9493
|
+
# resp.signing_job_arn #=> String
|
|
9457
9494
|
# resp.package_type #=> String, one of "Zip", "Image"
|
|
9458
9495
|
# resp.image_config_response.image_config.entry_point #=> Array
|
|
9459
9496
|
# resp.image_config_response.image_config.entry_point[0] #=> String
|
|
@@ -9462,8 +9499,6 @@ module Aws::Lambda
|
|
|
9462
9499
|
# resp.image_config_response.image_config.working_directory #=> String
|
|
9463
9500
|
# resp.image_config_response.error.error_code #=> String
|
|
9464
9501
|
# resp.image_config_response.error.message #=> String
|
|
9465
|
-
# resp.signing_profile_version_arn #=> String
|
|
9466
|
-
# resp.signing_job_arn #=> String
|
|
9467
9502
|
# resp.architectures #=> Array
|
|
9468
9503
|
# resp.architectures[0] #=> String, one of "x86_64", "arm64"
|
|
9469
9504
|
# resp.ephemeral_storage.size #=> Integer
|
|
@@ -9476,13 +9511,13 @@ module Aws::Lambda
|
|
|
9476
9511
|
# resp.logging_config.application_log_level #=> String, one of "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
|
|
9477
9512
|
# resp.logging_config.system_log_level #=> String, one of "DEBUG", "INFO", "WARN"
|
|
9478
9513
|
# resp.logging_config.log_group #=> String
|
|
9514
|
+
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9479
9515
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.capacity_provider_arn #=> String
|
|
9480
9516
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.per_execution_environment_max_concurrency #=> Integer
|
|
9481
9517
|
# resp.capacity_provider_config.lambda_managed_instances_capacity_provider_config.execution_environment_memory_gi_b_per_v_cpu #=> Float
|
|
9482
9518
|
# resp.config_sha_256 #=> String
|
|
9483
9519
|
# resp.durable_config.retention_period_in_days #=> Integer
|
|
9484
9520
|
# resp.durable_config.execution_timeout #=> Integer
|
|
9485
|
-
# resp.tenancy_config.tenant_isolation_mode #=> String, one of "PER_TENANT"
|
|
9486
9521
|
#
|
|
9487
9522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionConfiguration AWS API Documentation
|
|
9488
9523
|
#
|
|
@@ -9686,7 +9721,7 @@ module Aws::Lambda
|
|
|
9686
9721
|
# @example Request syntax with placeholder values
|
|
9687
9722
|
#
|
|
9688
9723
|
# resp = client.update_function_url_config({
|
|
9689
|
-
# function_name: "
|
|
9724
|
+
# function_name: "FunctionUrlFunctionName", # required
|
|
9690
9725
|
# qualifier: "FunctionUrlQualifier",
|
|
9691
9726
|
# auth_type: "NONE", # accepts NONE, AWS_IAM
|
|
9692
9727
|
# cors: {
|
|
@@ -9746,7 +9781,7 @@ module Aws::Lambda
|
|
|
9746
9781
|
tracer: tracer
|
|
9747
9782
|
)
|
|
9748
9783
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
9749
|
-
context[:gem_version] = '1.
|
|
9784
|
+
context[:gem_version] = '1.184.0'
|
|
9750
9785
|
Seahorse::Client::Request.new(handlers, context)
|
|
9751
9786
|
end
|
|
9752
9787
|
|