aws-sdk-lambda 1.91.0 → 1.93.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 +432 -84
- data/lib/aws-sdk-lambda/client_api.rb +91 -1
- data/lib/aws-sdk-lambda/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-lambda/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-lambda/endpoints.rb +14 -0
- data/lib/aws-sdk-lambda/event_streams.rb +54 -0
- data/lib/aws-sdk-lambda/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-lambda/types.rb +469 -99
- data/lib/aws-sdk-lambda.rb +2 -1
- metadata +3 -2
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
33
|
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
|
+
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
35
36
|
|
36
37
|
Aws::Plugins::GlobalConfiguration.add_identifier(:lambda)
|
37
38
|
|
@@ -81,6 +82,7 @@ module Aws::Lambda
|
|
81
82
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
83
|
add_plugin(Aws::Plugins::Sign)
|
83
84
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
85
|
+
add_plugin(Aws::Plugins::EventStreamConfiguration)
|
84
86
|
add_plugin(Aws::Lambda::Plugins::Endpoints)
|
85
87
|
|
86
88
|
# @overload initialize(options)
|
@@ -210,6 +212,12 @@ module Aws::Lambda
|
|
210
212
|
# @option options [Boolean] :endpoint_discovery (false)
|
211
213
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
212
214
|
#
|
215
|
+
# @option options [Proc] :event_stream_handler
|
216
|
+
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
217
|
+
#
|
218
|
+
# @option options [Proc] :input_event_stream_handler
|
219
|
+
# When an EventStream or Proc object is provided, it can be used for sending events for the event stream.
|
220
|
+
#
|
213
221
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
214
222
|
# The log formatter.
|
215
223
|
#
|
@@ -226,6 +234,9 @@ module Aws::Lambda
|
|
226
234
|
# setting this value to 5 will result in a request being retried up to
|
227
235
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
228
236
|
#
|
237
|
+
# @option options [Proc] :output_event_stream_handler
|
238
|
+
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
239
|
+
#
|
229
240
|
# @option options [String] :profile ("default")
|
230
241
|
# Used when loading credentials from the shared credentials file
|
231
242
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
@@ -531,9 +542,9 @@ module Aws::Lambda
|
|
531
542
|
#
|
532
543
|
# @option params [String] :function_url_auth_type
|
533
544
|
# The type of authentication that your function URL uses. Set to
|
534
|
-
# `AWS_IAM` if you want to restrict access to authenticated
|
535
|
-
#
|
536
|
-
#
|
545
|
+
# `AWS_IAM` if you want to restrict access to authenticated users only.
|
546
|
+
# Set to `NONE` if you want to bypass IAM authentication to create a
|
547
|
+
# public endpoint. For more information, see [Security and auth model
|
537
548
|
# for Lambda function URLs][1].
|
538
549
|
#
|
539
550
|
#
|
@@ -730,6 +741,8 @@ module Aws::Lambda
|
|
730
741
|
#
|
731
742
|
# * [ Apache Kafka][6]
|
732
743
|
#
|
744
|
+
# * [ Amazon DocumentDB][7]
|
745
|
+
#
|
733
746
|
# The following error handling options are available only for stream
|
734
747
|
# sources (DynamoDB and Kinesis):
|
735
748
|
#
|
@@ -753,17 +766,19 @@ module Aws::Lambda
|
|
753
766
|
# For information about which configuration parameters apply to each
|
754
767
|
# event source, see the following topics.
|
755
768
|
#
|
756
|
-
# * [ Amazon DynamoDB Streams][
|
769
|
+
# * [ Amazon DynamoDB Streams][8]
|
770
|
+
#
|
771
|
+
# * [ Amazon Kinesis][9]
|
757
772
|
#
|
758
|
-
# * [ Amazon
|
773
|
+
# * [ Amazon SQS][10]
|
759
774
|
#
|
760
|
-
# * [ Amazon
|
775
|
+
# * [ Amazon MQ and RabbitMQ][11]
|
761
776
|
#
|
762
|
-
# * [ Amazon
|
777
|
+
# * [ Amazon MSK][12]
|
763
778
|
#
|
764
|
-
# * [
|
779
|
+
# * [ Apache Kafka][13]
|
765
780
|
#
|
766
|
-
# * [
|
781
|
+
# * [ Amazon DocumentDB][14]
|
767
782
|
#
|
768
783
|
#
|
769
784
|
#
|
@@ -773,12 +788,14 @@ module Aws::Lambda
|
|
773
788
|
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping
|
774
789
|
# [5]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html
|
775
790
|
# [6]: https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html
|
776
|
-
# [7]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
777
|
-
# [8]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
778
|
-
# [9]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
779
|
-
# [10]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
780
|
-
# [11]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
781
|
-
# [12]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
791
|
+
# [7]: https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html
|
792
|
+
# [8]: https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-params
|
793
|
+
# [9]: https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-params
|
794
|
+
# [10]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params
|
795
|
+
# [11]: https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-params
|
796
|
+
# [12]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-parms
|
797
|
+
# [13]: https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-kafka-parms
|
798
|
+
# [14]: https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html#docdb-configuration
|
782
799
|
#
|
783
800
|
# @option params [String] :event_source_arn
|
784
801
|
# The Amazon Resource Name (ARN) of the event source.
|
@@ -795,6 +812,8 @@ module Aws::Lambda
|
|
795
812
|
#
|
796
813
|
# * **Amazon MQ** – The ARN of the broker.
|
797
814
|
#
|
815
|
+
# * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
|
816
|
+
#
|
798
817
|
# @option params [required, String] :function_name
|
799
818
|
# The name of the Lambda function.
|
800
819
|
#
|
@@ -839,6 +858,8 @@ module Aws::Lambda
|
|
839
858
|
#
|
840
859
|
# * **Amazon MQ (ActiveMQ and RabbitMQ)** – Default 100. Max 10,000.
|
841
860
|
#
|
861
|
+
# * **DocumentDB** – Default 100. Max 10,000.
|
862
|
+
#
|
842
863
|
# @option params [Types::FilterCriteria] :filter_criteria
|
843
864
|
# An object that defines the filter criteria that determine whether
|
844
865
|
# Lambda should process an event. For more information, see [Lambda
|
@@ -855,10 +876,10 @@ module Aws::Lambda
|
|
855
876
|
# seconds in increments of seconds.
|
856
877
|
#
|
857
878
|
# For streams and Amazon SQS event sources, the default batching window
|
858
|
-
# is 0 seconds. For Amazon MSK, Self-managed Apache Kafka,
|
859
|
-
# event sources, the default batching window is 500 ms.
|
860
|
-
# because you can only change `MaximumBatchingWindowInSeconds`
|
861
|
-
# increments of seconds, you cannot revert back to the 500 ms default
|
879
|
+
# is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, Amazon MQ,
|
880
|
+
# and DocumentDB event sources, the default batching window is 500 ms.
|
881
|
+
# Note that because you can only change `MaximumBatchingWindowInSeconds`
|
882
|
+
# in increments of seconds, you cannot revert back to the 500 ms default
|
862
883
|
# batching window after you have changed it. To restore the default
|
863
884
|
# batching window, you must create a new event source mapping.
|
864
885
|
#
|
@@ -867,38 +888,41 @@ module Aws::Lambda
|
|
867
888
|
# `MaximumBatchingWindowInSeconds` to at least 1.
|
868
889
|
#
|
869
890
|
# @option params [Integer] :parallelization_factor
|
870
|
-
# (Streams only) The number of batches to process
|
871
|
-
# concurrently.
|
891
|
+
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
892
|
+
# from each shard concurrently.
|
872
893
|
#
|
873
894
|
# @option params [String] :starting_position
|
874
895
|
# The position in a stream from which to start reading. Required for
|
875
896
|
# Amazon Kinesis, Amazon DynamoDB, and Amazon MSK Streams sources.
|
876
|
-
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams
|
897
|
+
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams and Amazon
|
898
|
+
# DocumentDB.
|
877
899
|
#
|
878
900
|
# @option params [Time,DateTime,Date,Integer,String] :starting_position_timestamp
|
879
901
|
# With `StartingPosition` set to `AT_TIMESTAMP`, the time from which to
|
880
902
|
# start reading.
|
881
903
|
#
|
882
904
|
# @option params [Types::DestinationConfig] :destination_config
|
883
|
-
# (Streams only)
|
884
|
-
# discarded records.
|
905
|
+
# (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
|
906
|
+
# standard Amazon SNS topic destination for discarded records.
|
885
907
|
#
|
886
908
|
# @option params [Integer] :maximum_record_age_in_seconds
|
887
|
-
# (Streams only) Discard records older than the
|
888
|
-
# default value is infinite (-1).
|
909
|
+
# (Kinesis and DynamoDB Streams only) Discard records older than the
|
910
|
+
# specified age. The default value is infinite (-1).
|
889
911
|
#
|
890
912
|
# @option params [Boolean] :bisect_batch_on_function_error
|
891
|
-
# (Streams only) If the function returns an error,
|
892
|
-
# two and retry.
|
913
|
+
# (Kinesis and DynamoDB Streams only) If the function returns an error,
|
914
|
+
# split the batch in two and retry.
|
893
915
|
#
|
894
916
|
# @option params [Integer] :maximum_retry_attempts
|
895
|
-
# (Streams only) Discard records after the
|
896
|
-
# The default value is infinite (-1). When
|
897
|
-
# records are retried until the record
|
917
|
+
# (Kinesis and DynamoDB Streams only) Discard records after the
|
918
|
+
# specified number of retries. The default value is infinite (-1). When
|
919
|
+
# set to infinite (-1), failed records are retried until the record
|
920
|
+
# expires.
|
898
921
|
#
|
899
922
|
# @option params [Integer] :tumbling_window_in_seconds
|
900
|
-
# (Streams only) The duration in seconds of a
|
901
|
-
#
|
923
|
+
# (Kinesis and DynamoDB Streams only) The duration in seconds of a
|
924
|
+
# processing window for DynamoDB and Kinesis Streams event sources. A
|
925
|
+
# value of 0 seconds indicates no tumbling window.
|
902
926
|
#
|
903
927
|
# @option params [Array<String>] :topics
|
904
928
|
# The name of the Kafka topic.
|
@@ -914,8 +938,8 @@ module Aws::Lambda
|
|
914
938
|
# The self-managed Apache Kafka cluster to receive records from.
|
915
939
|
#
|
916
940
|
# @option params [Array<String>] :function_response_types
|
917
|
-
# (Streams and Amazon SQS) A list of current response
|
918
|
-
# to the event source mapping.
|
941
|
+
# (Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response
|
942
|
+
# type enums applied to the event source mapping.
|
919
943
|
#
|
920
944
|
# @option params [Types::AmazonManagedKafkaEventSourceConfig] :amazon_managed_kafka_event_source_config
|
921
945
|
# Specific configuration settings for an Amazon Managed Streaming for
|
@@ -934,6 +958,9 @@ module Aws::Lambda
|
|
934
958
|
#
|
935
959
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
936
960
|
#
|
961
|
+
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
962
|
+
# Specific configuration settings for a DocumentDB event source.
|
963
|
+
#
|
937
964
|
# @return [Types::EventSourceMappingConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
938
965
|
#
|
939
966
|
# * {Types::EventSourceMappingConfiguration#uuid #uuid} => String
|
@@ -962,6 +989,7 @@ module Aws::Lambda
|
|
962
989
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
963
990
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
964
991
|
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
992
|
+
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
965
993
|
#
|
966
994
|
# @example Request syntax with placeholder values
|
967
995
|
#
|
@@ -1016,6 +1044,11 @@ module Aws::Lambda
|
|
1016
1044
|
# scaling_config: {
|
1017
1045
|
# maximum_concurrency: 1,
|
1018
1046
|
# },
|
1047
|
+
# document_db_event_source_config: {
|
1048
|
+
# database_name: "DatabaseName",
|
1049
|
+
# collection_name: "CollectionName",
|
1050
|
+
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
1051
|
+
# },
|
1019
1052
|
# })
|
1020
1053
|
#
|
1021
1054
|
# @example Response structure
|
@@ -1055,6 +1088,9 @@ module Aws::Lambda
|
|
1055
1088
|
# resp.amazon_managed_kafka_event_source_config.consumer_group_id #=> String
|
1056
1089
|
# resp.self_managed_kafka_event_source_config.consumer_group_id #=> String
|
1057
1090
|
# resp.scaling_config.maximum_concurrency #=> Integer
|
1091
|
+
# resp.document_db_event_source_config.database_name #=> String
|
1092
|
+
# resp.document_db_event_source_config.collection_name #=> String
|
1093
|
+
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
1058
1094
|
#
|
1059
1095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateEventSourceMapping AWS API Documentation
|
1060
1096
|
#
|
@@ -1156,9 +1192,13 @@ module Aws::Lambda
|
|
1156
1192
|
# The identifier of the function's [runtime][1]. Runtime is required if
|
1157
1193
|
# the deployment package is a .zip file archive.
|
1158
1194
|
#
|
1195
|
+
# The following list includes deprecated runtimes. For more information,
|
1196
|
+
# see [Runtime deprecation policy][2].
|
1197
|
+
#
|
1159
1198
|
#
|
1160
1199
|
#
|
1161
1200
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
1201
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
1162
1202
|
#
|
1163
1203
|
# @option params [required, String] :role
|
1164
1204
|
# The Amazon Resource Name (ARN) of the function's execution role.
|
@@ -1232,9 +1272,16 @@ module Aws::Lambda
|
|
1232
1272
|
# execution.
|
1233
1273
|
#
|
1234
1274
|
# @option params [String] :kms_key_arn
|
1235
|
-
# The ARN of the Key Management Service (KMS)
|
1236
|
-
# encrypt your function's environment variables.
|
1237
|
-
# Lambda
|
1275
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
1276
|
+
# that's used to encrypt your function's [environment variables][1].
|
1277
|
+
# When [Lambda SnapStart][2] is activated, this key is also used to
|
1278
|
+
# encrypt your function's snapshot. If you don't provide a customer
|
1279
|
+
# managed key, Lambda uses a default service key.
|
1280
|
+
#
|
1281
|
+
#
|
1282
|
+
#
|
1283
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
1284
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
1238
1285
|
#
|
1239
1286
|
# @option params [Types::TracingConfig] :tracing_config
|
1240
1287
|
# Set `Mode` to `Active` to sample and trace a subset of incoming
|
@@ -1484,9 +1531,9 @@ module Aws::Lambda
|
|
1484
1531
|
#
|
1485
1532
|
# @option params [required, String] :auth_type
|
1486
1533
|
# The type of authentication that your function URL uses. Set to
|
1487
|
-
# `AWS_IAM` if you want to restrict access to authenticated
|
1488
|
-
#
|
1489
|
-
#
|
1534
|
+
# `AWS_IAM` if you want to restrict access to authenticated users only.
|
1535
|
+
# Set to `NONE` if you want to bypass IAM authentication to create a
|
1536
|
+
# public endpoint. For more information, see [Security and auth model
|
1490
1537
|
# for Lambda function URLs][1].
|
1491
1538
|
#
|
1492
1539
|
#
|
@@ -1501,6 +1548,24 @@ module Aws::Lambda
|
|
1501
1548
|
#
|
1502
1549
|
# [1]: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
1503
1550
|
#
|
1551
|
+
# @option params [String] :invoke_mode
|
1552
|
+
# Use one of the following options:
|
1553
|
+
#
|
1554
|
+
# * `BUFFERED` – This is the default option. Lambda invokes your
|
1555
|
+
# function using the `Invoke` API operation. Invocation results are
|
1556
|
+
# available when the payload is complete. The maximum payload size is
|
1557
|
+
# 6 MB.
|
1558
|
+
#
|
1559
|
+
# * `RESPONSE_STREAM` – Your function streams payload results as they
|
1560
|
+
# become available. Lambda invokes your function using the
|
1561
|
+
# `InvokeWithResponseStream` API operation. The maximum response
|
1562
|
+
# payload size is 20 MB, however, you can [request a quota
|
1563
|
+
# increase][1].
|
1564
|
+
#
|
1565
|
+
#
|
1566
|
+
#
|
1567
|
+
# [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
|
1568
|
+
#
|
1504
1569
|
# @return [Types::CreateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1505
1570
|
#
|
1506
1571
|
# * {Types::CreateFunctionUrlConfigResponse#function_url #function_url} => String
|
@@ -1508,6 +1573,7 @@ module Aws::Lambda
|
|
1508
1573
|
# * {Types::CreateFunctionUrlConfigResponse#auth_type #auth_type} => String
|
1509
1574
|
# * {Types::CreateFunctionUrlConfigResponse#cors #cors} => Types::Cors
|
1510
1575
|
# * {Types::CreateFunctionUrlConfigResponse#creation_time #creation_time} => Time
|
1576
|
+
# * {Types::CreateFunctionUrlConfigResponse#invoke_mode #invoke_mode} => String
|
1511
1577
|
#
|
1512
1578
|
# @example Request syntax with placeholder values
|
1513
1579
|
#
|
@@ -1523,6 +1589,7 @@ module Aws::Lambda
|
|
1523
1589
|
# expose_headers: ["Header"],
|
1524
1590
|
# max_age: 1,
|
1525
1591
|
# },
|
1592
|
+
# invoke_mode: "BUFFERED", # accepts BUFFERED, RESPONSE_STREAM
|
1526
1593
|
# })
|
1527
1594
|
#
|
1528
1595
|
# @example Response structure
|
@@ -1541,6 +1608,7 @@ module Aws::Lambda
|
|
1541
1608
|
# resp.cors.expose_headers[0] #=> String
|
1542
1609
|
# resp.cors.max_age #=> Integer
|
1543
1610
|
# resp.creation_time #=> Time
|
1611
|
+
# resp.invoke_mode #=> String, one of "BUFFERED", "RESPONSE_STREAM"
|
1544
1612
|
#
|
1545
1613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfig AWS API Documentation
|
1546
1614
|
#
|
@@ -1657,6 +1725,7 @@ module Aws::Lambda
|
|
1657
1725
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
1658
1726
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
1659
1727
|
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
1728
|
+
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
1660
1729
|
#
|
1661
1730
|
# @example Request syntax with placeholder values
|
1662
1731
|
#
|
@@ -1701,6 +1770,9 @@ module Aws::Lambda
|
|
1701
1770
|
# resp.amazon_managed_kafka_event_source_config.consumer_group_id #=> String
|
1702
1771
|
# resp.self_managed_kafka_event_source_config.consumer_group_id #=> String
|
1703
1772
|
# resp.scaling_config.maximum_concurrency #=> Integer
|
1773
|
+
# resp.document_db_event_source_config.database_name #=> String
|
1774
|
+
# resp.document_db_event_source_config.collection_name #=> String
|
1775
|
+
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
1704
1776
|
#
|
1705
1777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteEventSourceMapping AWS API Documentation
|
1706
1778
|
#
|
@@ -2139,6 +2211,7 @@ module Aws::Lambda
|
|
2139
2211
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
2140
2212
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
2141
2213
|
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
2214
|
+
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
2142
2215
|
#
|
2143
2216
|
# @example Request syntax with placeholder values
|
2144
2217
|
#
|
@@ -2183,6 +2256,9 @@ module Aws::Lambda
|
|
2183
2256
|
# resp.amazon_managed_kafka_event_source_config.consumer_group_id #=> String
|
2184
2257
|
# resp.self_managed_kafka_event_source_config.consumer_group_id #=> String
|
2185
2258
|
# resp.scaling_config.maximum_concurrency #=> Integer
|
2259
|
+
# resp.document_db_event_source_config.database_name #=> String
|
2260
|
+
# resp.document_db_event_source_config.collection_name #=> String
|
2261
|
+
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
2186
2262
|
#
|
2187
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetEventSourceMapping AWS API Documentation
|
2188
2264
|
#
|
@@ -2638,6 +2714,7 @@ module Aws::Lambda
|
|
2638
2714
|
# * {Types::GetFunctionUrlConfigResponse#cors #cors} => Types::Cors
|
2639
2715
|
# * {Types::GetFunctionUrlConfigResponse#creation_time #creation_time} => Time
|
2640
2716
|
# * {Types::GetFunctionUrlConfigResponse#last_modified_time #last_modified_time} => Time
|
2717
|
+
# * {Types::GetFunctionUrlConfigResponse#invoke_mode #invoke_mode} => String
|
2641
2718
|
#
|
2642
2719
|
# @example Request syntax with placeholder values
|
2643
2720
|
#
|
@@ -2663,6 +2740,7 @@ module Aws::Lambda
|
|
2663
2740
|
# resp.cors.max_age #=> Integer
|
2664
2741
|
# resp.creation_time #=> Time
|
2665
2742
|
# resp.last_modified_time #=> Time
|
2743
|
+
# resp.invoke_mode #=> String, one of "BUFFERED", "RESPONSE_STREAM"
|
2666
2744
|
#
|
2667
2745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetFunctionUrlConfig AWS API Documentation
|
2668
2746
|
#
|
@@ -2969,11 +3047,12 @@ module Aws::Lambda
|
|
2969
3047
|
#
|
2970
3048
|
# * {Types::GetRuntimeManagementConfigResponse#update_runtime_on #update_runtime_on} => String
|
2971
3049
|
# * {Types::GetRuntimeManagementConfigResponse#runtime_version_arn #runtime_version_arn} => String
|
3050
|
+
# * {Types::GetRuntimeManagementConfigResponse#function_arn #function_arn} => String
|
2972
3051
|
#
|
2973
3052
|
# @example Request syntax with placeholder values
|
2974
3053
|
#
|
2975
3054
|
# resp = client.get_runtime_management_config({
|
2976
|
-
# function_name: "
|
3055
|
+
# function_name: "NamespacedFunctionName", # required
|
2977
3056
|
# qualifier: "Qualifier",
|
2978
3057
|
# })
|
2979
3058
|
#
|
@@ -2981,6 +3060,7 @@ module Aws::Lambda
|
|
2981
3060
|
#
|
2982
3061
|
# resp.update_runtime_on #=> String, one of "Auto", "Manual", "FunctionUpdate"
|
2983
3062
|
# resp.runtime_version_arn #=> String
|
3063
|
+
# resp.function_arn #=> String
|
2984
3064
|
#
|
2985
3065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetRuntimeManagementConfig AWS API Documentation
|
2986
3066
|
#
|
@@ -3177,6 +3257,214 @@ module Aws::Lambda
|
|
3177
3257
|
req.send_request(options)
|
3178
3258
|
end
|
3179
3259
|
|
3260
|
+
# Configure your Lambda functions to stream response payloads back to
|
3261
|
+
# clients. For more information, see [Configuring a Lambda function to
|
3262
|
+
# stream responses][1].
|
3263
|
+
#
|
3264
|
+
#
|
3265
|
+
#
|
3266
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-response-streaming.html
|
3267
|
+
#
|
3268
|
+
# @option params [required, String] :function_name
|
3269
|
+
# The name of the Lambda function.
|
3270
|
+
#
|
3271
|
+
# **Name formats**
|
3272
|
+
#
|
3273
|
+
# * **Function name** – `my-function`.
|
3274
|
+
#
|
3275
|
+
# * **Function ARN** –
|
3276
|
+
# `arn:aws:lambda:us-west-2:123456789012:function:my-function`.
|
3277
|
+
#
|
3278
|
+
# * **Partial ARN** – `123456789012:function:my-function`.
|
3279
|
+
#
|
3280
|
+
# The length constraint applies only to the full ARN. If you specify
|
3281
|
+
# only the function name, it is limited to 64 characters in length.
|
3282
|
+
#
|
3283
|
+
# @option params [String] :invocation_type
|
3284
|
+
# Use one of the following options:
|
3285
|
+
#
|
3286
|
+
# * `RequestResponse` (default) – Invoke the function synchronously.
|
3287
|
+
# Keep the connection open until the function returns a response or
|
3288
|
+
# times out. The API operation response includes the function response
|
3289
|
+
# and additional data.
|
3290
|
+
#
|
3291
|
+
# * `DryRun` – Validate parameter values and verify that the IAM user or
|
3292
|
+
# role has permission to invoke the function.
|
3293
|
+
#
|
3294
|
+
# @option params [String] :log_type
|
3295
|
+
# Set to `Tail` to include the execution log in the response. Applies to
|
3296
|
+
# synchronously invoked functions only.
|
3297
|
+
#
|
3298
|
+
# @option params [String] :client_context
|
3299
|
+
# Up to 3,583 bytes of base64-encoded data about the invoking client to
|
3300
|
+
# pass to the function in the context object.
|
3301
|
+
#
|
3302
|
+
# @option params [String] :qualifier
|
3303
|
+
# The alias name.
|
3304
|
+
#
|
3305
|
+
# @option params [String, StringIO, File] :payload
|
3306
|
+
# The JSON that you want to provide to your Lambda function as input.
|
3307
|
+
#
|
3308
|
+
# You can enter the JSON directly. For example, `--payload '\{ "key":
|
3309
|
+
# "value" \}'`. You can also specify a file path. For example,
|
3310
|
+
# `--payload file://payload.json`.
|
3311
|
+
#
|
3312
|
+
# @return [Types::InvokeWithResponseStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3313
|
+
#
|
3314
|
+
# * {Types::InvokeWithResponseStreamResponse#status_code #status_code} => Integer
|
3315
|
+
# * {Types::InvokeWithResponseStreamResponse#executed_version #executed_version} => String
|
3316
|
+
# * {Types::InvokeWithResponseStreamResponse#event_stream #event_stream} => Types::InvokeWithResponseStreamResponseEvent
|
3317
|
+
# * {Types::InvokeWithResponseStreamResponse#response_stream_content_type #response_stream_content_type} => String
|
3318
|
+
#
|
3319
|
+
# @example EventStream Operation Example
|
3320
|
+
#
|
3321
|
+
# You can process event once it arrives immediately, or wait until
|
3322
|
+
# full response complete and iterate through eventstream enumerator.
|
3323
|
+
#
|
3324
|
+
# To interact with event immediately, you need to register #invoke_with_response_stream
|
3325
|
+
# with callbacks, callbacks can be register for specifc events or for all events,
|
3326
|
+
# callback for errors in the event stream is also available for register.
|
3327
|
+
#
|
3328
|
+
# Callbacks can be passed in by `:event_stream_handler` option or within block
|
3329
|
+
# statement attached to #invoke_with_response_stream call directly. Hybrid pattern of both
|
3330
|
+
# is also supported.
|
3331
|
+
#
|
3332
|
+
# `:event_stream_handler` option takes in either Proc object or
|
3333
|
+
# Aws::Lambda::EventStreams::InvokeWithResponseStreamResponseEvent object.
|
3334
|
+
#
|
3335
|
+
# Usage pattern a): callbacks with a block attached to #invoke_with_response_stream
|
3336
|
+
# Example for registering callbacks for all event types and error event
|
3337
|
+
#
|
3338
|
+
# client.invoke_with_response_stream( # params input# ) do |stream|
|
3339
|
+
# stream.on_error_event do |event|
|
3340
|
+
# # catch unmodeled error event in the stream
|
3341
|
+
# raise event
|
3342
|
+
# # => Aws::Errors::EventError
|
3343
|
+
# # event.event_type => :error
|
3344
|
+
# # event.error_code => String
|
3345
|
+
# # event.error_message => String
|
3346
|
+
# end
|
3347
|
+
#
|
3348
|
+
# stream.on_event do |event|
|
3349
|
+
# # process all events arrive
|
3350
|
+
# puts event.event_type
|
3351
|
+
# ...
|
3352
|
+
# end
|
3353
|
+
#
|
3354
|
+
# end
|
3355
|
+
#
|
3356
|
+
# Usage pattern b): pass in `:event_stream_handler` for #invoke_with_response_stream
|
3357
|
+
#
|
3358
|
+
# 1) create a Aws::Lambda::EventStreams::InvokeWithResponseStreamResponseEvent object
|
3359
|
+
# Example for registering callbacks with specific events
|
3360
|
+
#
|
3361
|
+
# handler = Aws::Lambda::EventStreams::InvokeWithResponseStreamResponseEvent.new
|
3362
|
+
# handler.on_payload_chunk_event do |event|
|
3363
|
+
# event # => Aws::Lambda::Types::PayloadChunk
|
3364
|
+
# end
|
3365
|
+
# handler.on_invoke_complete_event do |event|
|
3366
|
+
# event # => Aws::Lambda::Types::InvokeComplete
|
3367
|
+
# end
|
3368
|
+
#
|
3369
|
+
# client.invoke_with_response_stream( # params input #, event_stream_handler: handler)
|
3370
|
+
#
|
3371
|
+
# 2) use a Ruby Proc object
|
3372
|
+
# Example for registering callbacks with specific events
|
3373
|
+
#
|
3374
|
+
# handler = Proc.new do |stream|
|
3375
|
+
# stream.on_payload_chunk_event do |event|
|
3376
|
+
# event # => Aws::Lambda::Types::PayloadChunk
|
3377
|
+
# end
|
3378
|
+
# stream.on_invoke_complete_event do |event|
|
3379
|
+
# event # => Aws::Lambda::Types::InvokeComplete
|
3380
|
+
# end
|
3381
|
+
# end
|
3382
|
+
#
|
3383
|
+
# client.invoke_with_response_stream( # params input #, event_stream_handler: handler)
|
3384
|
+
#
|
3385
|
+
# Usage pattern c): hybird pattern of a) and b)
|
3386
|
+
#
|
3387
|
+
# handler = Aws::Lambda::EventStreams::InvokeWithResponseStreamResponseEvent.new
|
3388
|
+
# handler.on_payload_chunk_event do |event|
|
3389
|
+
# event # => Aws::Lambda::Types::PayloadChunk
|
3390
|
+
# end
|
3391
|
+
# handler.on_invoke_complete_event do |event|
|
3392
|
+
# event # => Aws::Lambda::Types::InvokeComplete
|
3393
|
+
# end
|
3394
|
+
#
|
3395
|
+
# client.invoke_with_response_stream( # params input #, event_stream_handler: handler) do |stream|
|
3396
|
+
# stream.on_error_event do |event|
|
3397
|
+
# # catch unmodeled error event in the stream
|
3398
|
+
# raise event
|
3399
|
+
# # => Aws::Errors::EventError
|
3400
|
+
# # event.event_type => :error
|
3401
|
+
# # event.error_code => String
|
3402
|
+
# # event.error_message => String
|
3403
|
+
# end
|
3404
|
+
# end
|
3405
|
+
#
|
3406
|
+
# Besides above usage patterns for process events when they arrive immediately, you can also
|
3407
|
+
# iterate through events after response complete.
|
3408
|
+
#
|
3409
|
+
# Events are available at resp.event_stream # => Enumerator
|
3410
|
+
# For parameter input example, please refer to following request syntax
|
3411
|
+
#
|
3412
|
+
# @example Request syntax with placeholder values
|
3413
|
+
#
|
3414
|
+
# resp = client.invoke_with_response_stream({
|
3415
|
+
# function_name: "NamespacedFunctionName", # required
|
3416
|
+
# invocation_type: "RequestResponse", # accepts RequestResponse, DryRun
|
3417
|
+
# log_type: "None", # accepts None, Tail
|
3418
|
+
# client_context: "String",
|
3419
|
+
# qualifier: "Qualifier",
|
3420
|
+
# payload: "data",
|
3421
|
+
# })
|
3422
|
+
#
|
3423
|
+
# @example Response structure
|
3424
|
+
#
|
3425
|
+
# resp.status_code #=> Integer
|
3426
|
+
# resp.executed_version #=> String
|
3427
|
+
# All events are available at resp.event_stream:
|
3428
|
+
# resp.event_stream #=> Enumerator
|
3429
|
+
# resp.event_stream.event_types #=> [:payload_chunk, :invoke_complete]
|
3430
|
+
#
|
3431
|
+
# For :payload_chunk event available at #on_payload_chunk_event callback and response eventstream enumerator:
|
3432
|
+
# event.payload #=> String
|
3433
|
+
#
|
3434
|
+
# For :invoke_complete event available at #on_invoke_complete_event callback and response eventstream enumerator:
|
3435
|
+
# event.error_code #=> String
|
3436
|
+
# event.error_details #=> String
|
3437
|
+
# event.log_result #=> String
|
3438
|
+
#
|
3439
|
+
# resp.response_stream_content_type #=> String
|
3440
|
+
#
|
3441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/InvokeWithResponseStream AWS API Documentation
|
3442
|
+
#
|
3443
|
+
# @overload invoke_with_response_stream(params = {})
|
3444
|
+
# @param [Hash] params ({})
|
3445
|
+
def invoke_with_response_stream(params = {}, options = {}, &block)
|
3446
|
+
params = params.dup
|
3447
|
+
event_stream_handler = case handler = params.delete(:event_stream_handler)
|
3448
|
+
when EventStreams::InvokeWithResponseStreamResponseEvent then handler
|
3449
|
+
when Proc then EventStreams::InvokeWithResponseStreamResponseEvent.new.tap(&handler)
|
3450
|
+
when nil then EventStreams::InvokeWithResponseStreamResponseEvent.new
|
3451
|
+
else
|
3452
|
+
msg = "expected :event_stream_handler to be a block or "\
|
3453
|
+
"instance of Aws::Lambda::EventStreams::InvokeWithResponseStreamResponseEvent"\
|
3454
|
+
", got `#{handler.inspect}` instead"
|
3455
|
+
raise ArgumentError, msg
|
3456
|
+
end
|
3457
|
+
|
3458
|
+
yield(event_stream_handler) if block_given?
|
3459
|
+
|
3460
|
+
req = build_request(:invoke_with_response_stream, params)
|
3461
|
+
|
3462
|
+
req.context[:event_stream_handler] = event_stream_handler
|
3463
|
+
req.handlers.add(Aws::Binary::DecodeHandler, priority: 95)
|
3464
|
+
|
3465
|
+
req.send_request(options, &block)
|
3466
|
+
end
|
3467
|
+
|
3180
3468
|
# Returns a list of [aliases][1] for a Lambda function.
|
3181
3469
|
#
|
3182
3470
|
#
|
@@ -3314,6 +3602,8 @@ module Aws::Lambda
|
|
3314
3602
|
#
|
3315
3603
|
# * **Amazon MQ** – The ARN of the broker.
|
3316
3604
|
#
|
3605
|
+
# * **Amazon DocumentDB** – The ARN of the DocumentDB change stream.
|
3606
|
+
#
|
3317
3607
|
# @option params [String] :function_name
|
3318
3608
|
# The name of the Lambda function.
|
3319
3609
|
#
|
@@ -3395,6 +3685,9 @@ module Aws::Lambda
|
|
3395
3685
|
# resp.event_source_mappings[0].amazon_managed_kafka_event_source_config.consumer_group_id #=> String
|
3396
3686
|
# resp.event_source_mappings[0].self_managed_kafka_event_source_config.consumer_group_id #=> String
|
3397
3687
|
# resp.event_source_mappings[0].scaling_config.maximum_concurrency #=> Integer
|
3688
|
+
# resp.event_source_mappings[0].document_db_event_source_config.database_name #=> String
|
3689
|
+
# resp.event_source_mappings[0].document_db_event_source_config.collection_name #=> String
|
3690
|
+
# resp.event_source_mappings[0].document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
3398
3691
|
#
|
3399
3692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListEventSourceMappings AWS API Documentation
|
3400
3693
|
#
|
@@ -3527,6 +3820,7 @@ module Aws::Lambda
|
|
3527
3820
|
# resp.function_url_configs[0].cors.expose_headers[0] #=> String
|
3528
3821
|
# resp.function_url_configs[0].cors.max_age #=> Integer
|
3529
3822
|
# resp.function_url_configs[0].auth_type #=> String, one of "NONE", "AWS_IAM"
|
3823
|
+
# resp.function_url_configs[0].invoke_mode #=> String, one of "BUFFERED", "RESPONSE_STREAM"
|
3530
3824
|
# resp.next_marker #=> String
|
3531
3825
|
#
|
3532
3826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctionUrlConfigs AWS API Documentation
|
@@ -4495,9 +4789,9 @@ module Aws::Lambda
|
|
4495
4789
|
#
|
4496
4790
|
# * **Function** - The Amazon Resource Name (ARN) of a Lambda function.
|
4497
4791
|
#
|
4498
|
-
# * **Queue** - The ARN of
|
4792
|
+
# * **Queue** - The ARN of a standard SQS queue.
|
4499
4793
|
#
|
4500
|
-
# * **Topic** - The ARN of
|
4794
|
+
# * **Topic** - The ARN of a standard SNS topic.
|
4501
4795
|
#
|
4502
4796
|
# * **Event Bus** - The ARN of an Amazon EventBridge event bus.
|
4503
4797
|
#
|
@@ -5010,6 +5304,8 @@ module Aws::Lambda
|
|
5010
5304
|
#
|
5011
5305
|
# * [ Apache Kafka][6]
|
5012
5306
|
#
|
5307
|
+
# * [ Amazon DocumentDB][7]
|
5308
|
+
#
|
5013
5309
|
# The following error handling options are available only for stream
|
5014
5310
|
# sources (DynamoDB and Kinesis):
|
5015
5311
|
#
|
@@ -5033,17 +5329,19 @@ module Aws::Lambda
|
|
5033
5329
|
# For information about which configuration parameters apply to each
|
5034
5330
|
# event source, see the following topics.
|
5035
5331
|
#
|
5036
|
-
# * [ Amazon DynamoDB Streams][
|
5332
|
+
# * [ Amazon DynamoDB Streams][8]
|
5333
|
+
#
|
5334
|
+
# * [ Amazon Kinesis][9]
|
5037
5335
|
#
|
5038
|
-
# * [ Amazon
|
5336
|
+
# * [ Amazon SQS][10]
|
5039
5337
|
#
|
5040
|
-
# * [ Amazon
|
5338
|
+
# * [ Amazon MQ and RabbitMQ][11]
|
5041
5339
|
#
|
5042
|
-
# * [ Amazon
|
5340
|
+
# * [ Amazon MSK][12]
|
5043
5341
|
#
|
5044
|
-
# * [
|
5342
|
+
# * [ Apache Kafka][13]
|
5045
5343
|
#
|
5046
|
-
# * [
|
5344
|
+
# * [ Amazon DocumentDB][14]
|
5047
5345
|
#
|
5048
5346
|
#
|
5049
5347
|
#
|
@@ -5053,12 +5351,14 @@ module Aws::Lambda
|
|
5053
5351
|
# [4]: https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping
|
5054
5352
|
# [5]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html
|
5055
5353
|
# [6]: https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html
|
5056
|
-
# [7]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5057
|
-
# [8]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5058
|
-
# [9]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5059
|
-
# [10]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5060
|
-
# [11]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5061
|
-
# [12]: https://docs.aws.amazon.com/lambda/latest/dg/with-
|
5354
|
+
# [7]: https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html
|
5355
|
+
# [8]: https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-params
|
5356
|
+
# [9]: https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-params
|
5357
|
+
# [10]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params
|
5358
|
+
# [11]: https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-params
|
5359
|
+
# [12]: https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-parms
|
5360
|
+
# [13]: https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-kafka-parms
|
5361
|
+
# [14]: https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html#docdb-configuration
|
5062
5362
|
#
|
5063
5363
|
# @option params [required, String] :uuid
|
5064
5364
|
# The identifier of the event source mapping.
|
@@ -5107,6 +5407,8 @@ module Aws::Lambda
|
|
5107
5407
|
#
|
5108
5408
|
# * **Amazon MQ (ActiveMQ and RabbitMQ)** – Default 100. Max 10,000.
|
5109
5409
|
#
|
5410
|
+
# * **DocumentDB** – Default 100. Max 10,000.
|
5411
|
+
#
|
5110
5412
|
# @option params [Types::FilterCriteria] :filter_criteria
|
5111
5413
|
# An object that defines the filter criteria that determine whether
|
5112
5414
|
# Lambda should process an event. For more information, see [Lambda
|
@@ -5123,10 +5425,10 @@ module Aws::Lambda
|
|
5123
5425
|
# seconds in increments of seconds.
|
5124
5426
|
#
|
5125
5427
|
# For streams and Amazon SQS event sources, the default batching window
|
5126
|
-
# is 0 seconds. For Amazon MSK, Self-managed Apache Kafka,
|
5127
|
-
# event sources, the default batching window is 500 ms.
|
5128
|
-
# because you can only change `MaximumBatchingWindowInSeconds`
|
5129
|
-
# increments of seconds, you cannot revert back to the 500 ms default
|
5428
|
+
# is 0 seconds. For Amazon MSK, Self-managed Apache Kafka, Amazon MQ,
|
5429
|
+
# and DocumentDB event sources, the default batching window is 500 ms.
|
5430
|
+
# Note that because you can only change `MaximumBatchingWindowInSeconds`
|
5431
|
+
# in increments of seconds, you cannot revert back to the 500 ms default
|
5130
5432
|
# batching window after you have changed it. To restore the default
|
5131
5433
|
# batching window, you must create a new event source mapping.
|
5132
5434
|
#
|
@@ -5135,37 +5437,39 @@ module Aws::Lambda
|
|
5135
5437
|
# `MaximumBatchingWindowInSeconds` to at least 1.
|
5136
5438
|
#
|
5137
5439
|
# @option params [Types::DestinationConfig] :destination_config
|
5138
|
-
# (Streams only)
|
5139
|
-
# discarded records.
|
5440
|
+
# (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
|
5441
|
+
# standard Amazon SNS topic destination for discarded records.
|
5140
5442
|
#
|
5141
5443
|
# @option params [Integer] :maximum_record_age_in_seconds
|
5142
|
-
# (Streams only) Discard records older than the
|
5143
|
-
# default value is infinite (-1).
|
5444
|
+
# (Kinesis and DynamoDB Streams only) Discard records older than the
|
5445
|
+
# specified age. The default value is infinite (-1).
|
5144
5446
|
#
|
5145
5447
|
# @option params [Boolean] :bisect_batch_on_function_error
|
5146
|
-
# (Streams only) If the function returns an error,
|
5147
|
-
# two and retry.
|
5448
|
+
# (Kinesis and DynamoDB Streams only) If the function returns an error,
|
5449
|
+
# split the batch in two and retry.
|
5148
5450
|
#
|
5149
5451
|
# @option params [Integer] :maximum_retry_attempts
|
5150
|
-
# (Streams only) Discard records after the
|
5151
|
-
# The default value is infinite (-1). When
|
5152
|
-
# records are retried until the record
|
5452
|
+
# (Kinesis and DynamoDB Streams only) Discard records after the
|
5453
|
+
# specified number of retries. The default value is infinite (-1). When
|
5454
|
+
# set to infinite (-1), failed records are retried until the record
|
5455
|
+
# expires.
|
5153
5456
|
#
|
5154
5457
|
# @option params [Integer] :parallelization_factor
|
5155
|
-
# (Streams only) The number of batches to process
|
5156
|
-
# concurrently.
|
5458
|
+
# (Kinesis and DynamoDB Streams only) The number of batches to process
|
5459
|
+
# from each shard concurrently.
|
5157
5460
|
#
|
5158
5461
|
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
5159
5462
|
# An array of authentication protocols or VPC components required to
|
5160
5463
|
# secure your event source.
|
5161
5464
|
#
|
5162
5465
|
# @option params [Integer] :tumbling_window_in_seconds
|
5163
|
-
# (Streams only) The duration in seconds of a
|
5164
|
-
#
|
5466
|
+
# (Kinesis and DynamoDB Streams only) The duration in seconds of a
|
5467
|
+
# processing window for DynamoDB and Kinesis Streams event sources. A
|
5468
|
+
# value of 0 seconds indicates no tumbling window.
|
5165
5469
|
#
|
5166
5470
|
# @option params [Array<String>] :function_response_types
|
5167
|
-
# (Streams and Amazon SQS) A list of current response
|
5168
|
-
# to the event source mapping.
|
5471
|
+
# (Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response
|
5472
|
+
# type enums applied to the event source mapping.
|
5169
5473
|
#
|
5170
5474
|
# @option params [Types::ScalingConfig] :scaling_config
|
5171
5475
|
# (Amazon SQS only) The scaling configuration for the event source. For
|
@@ -5176,6 +5480,9 @@ module Aws::Lambda
|
|
5176
5480
|
#
|
5177
5481
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency
|
5178
5482
|
#
|
5483
|
+
# @option params [Types::DocumentDBEventSourceConfig] :document_db_event_source_config
|
5484
|
+
# Specific configuration settings for a DocumentDB event source.
|
5485
|
+
#
|
5179
5486
|
# @return [Types::EventSourceMappingConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5180
5487
|
#
|
5181
5488
|
# * {Types::EventSourceMappingConfiguration#uuid #uuid} => String
|
@@ -5204,6 +5511,7 @@ module Aws::Lambda
|
|
5204
5511
|
# * {Types::EventSourceMappingConfiguration#amazon_managed_kafka_event_source_config #amazon_managed_kafka_event_source_config} => Types::AmazonManagedKafkaEventSourceConfig
|
5205
5512
|
# * {Types::EventSourceMappingConfiguration#self_managed_kafka_event_source_config #self_managed_kafka_event_source_config} => Types::SelfManagedKafkaEventSourceConfig
|
5206
5513
|
# * {Types::EventSourceMappingConfiguration#scaling_config #scaling_config} => Types::ScalingConfig
|
5514
|
+
# * {Types::EventSourceMappingConfiguration#document_db_event_source_config #document_db_event_source_config} => Types::DocumentDBEventSourceConfig
|
5207
5515
|
#
|
5208
5516
|
# @example Request syntax with placeholder values
|
5209
5517
|
#
|
@@ -5243,6 +5551,11 @@ module Aws::Lambda
|
|
5243
5551
|
# scaling_config: {
|
5244
5552
|
# maximum_concurrency: 1,
|
5245
5553
|
# },
|
5554
|
+
# document_db_event_source_config: {
|
5555
|
+
# database_name: "DatabaseName",
|
5556
|
+
# collection_name: "CollectionName",
|
5557
|
+
# full_document: "UpdateLookup", # accepts UpdateLookup, Default
|
5558
|
+
# },
|
5246
5559
|
# })
|
5247
5560
|
#
|
5248
5561
|
# @example Response structure
|
@@ -5282,6 +5595,9 @@ module Aws::Lambda
|
|
5282
5595
|
# resp.amazon_managed_kafka_event_source_config.consumer_group_id #=> String
|
5283
5596
|
# resp.self_managed_kafka_event_source_config.consumer_group_id #=> String
|
5284
5597
|
# resp.scaling_config.maximum_concurrency #=> Integer
|
5598
|
+
# resp.document_db_event_source_config.database_name #=> String
|
5599
|
+
# resp.document_db_event_source_config.collection_name #=> String
|
5600
|
+
# resp.document_db_event_source_config.full_document #=> String, one of "UpdateLookup", "Default"
|
5285
5601
|
#
|
5286
5602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateEventSourceMapping AWS API Documentation
|
5287
5603
|
#
|
@@ -5597,9 +5913,13 @@ module Aws::Lambda
|
|
5597
5913
|
# The identifier of the function's [runtime][1]. Runtime is required if
|
5598
5914
|
# the deployment package is a .zip file archive.
|
5599
5915
|
#
|
5916
|
+
# The following list includes deprecated runtimes. For more information,
|
5917
|
+
# see [Runtime deprecation policy][2].
|
5918
|
+
#
|
5600
5919
|
#
|
5601
5920
|
#
|
5602
5921
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
5922
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
5603
5923
|
#
|
5604
5924
|
# @option params [Types::DeadLetterConfig] :dead_letter_config
|
5605
5925
|
# A dead-letter queue configuration that specifies the queue or topic
|
@@ -5611,9 +5931,16 @@ module Aws::Lambda
|
|
5611
5931
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq
|
5612
5932
|
#
|
5613
5933
|
# @option params [String] :kms_key_arn
|
5614
|
-
# The ARN of the Key Management Service (KMS)
|
5615
|
-
# encrypt your function's environment variables.
|
5616
|
-
# Lambda
|
5934
|
+
# The ARN of the Key Management Service (KMS) customer managed key
|
5935
|
+
# that's used to encrypt your function's [environment variables][1].
|
5936
|
+
# When [Lambda SnapStart][2] is activated, this key is also used to
|
5937
|
+
# encrypt your function's snapshot. If you don't provide a customer
|
5938
|
+
# managed key, Lambda uses a default service key.
|
5939
|
+
#
|
5940
|
+
#
|
5941
|
+
#
|
5942
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption
|
5943
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html
|
5617
5944
|
#
|
5618
5945
|
# @option params [Types::TracingConfig] :tracing_config
|
5619
5946
|
# Set `Mode` to `Active` to sample and trace a subset of incoming
|
@@ -5855,9 +6182,9 @@ module Aws::Lambda
|
|
5855
6182
|
#
|
5856
6183
|
# * **Function** - The Amazon Resource Name (ARN) of a Lambda function.
|
5857
6184
|
#
|
5858
|
-
# * **Queue** - The ARN of
|
6185
|
+
# * **Queue** - The ARN of a standard SQS queue.
|
5859
6186
|
#
|
5860
|
-
# * **Topic** - The ARN of
|
6187
|
+
# * **Topic** - The ARN of a standard SNS topic.
|
5861
6188
|
#
|
5862
6189
|
# * **Event Bus** - The ARN of an Amazon EventBridge event bus.
|
5863
6190
|
#
|
@@ -5926,9 +6253,9 @@ module Aws::Lambda
|
|
5926
6253
|
#
|
5927
6254
|
# @option params [String] :auth_type
|
5928
6255
|
# The type of authentication that your function URL uses. Set to
|
5929
|
-
# `AWS_IAM` if you want to restrict access to authenticated
|
5930
|
-
#
|
5931
|
-
#
|
6256
|
+
# `AWS_IAM` if you want to restrict access to authenticated users only.
|
6257
|
+
# Set to `NONE` if you want to bypass IAM authentication to create a
|
6258
|
+
# public endpoint. For more information, see [Security and auth model
|
5932
6259
|
# for Lambda function URLs][1].
|
5933
6260
|
#
|
5934
6261
|
#
|
@@ -5943,6 +6270,24 @@ module Aws::Lambda
|
|
5943
6270
|
#
|
5944
6271
|
# [1]: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
5945
6272
|
#
|
6273
|
+
# @option params [String] :invoke_mode
|
6274
|
+
# Use one of the following options:
|
6275
|
+
#
|
6276
|
+
# * `BUFFERED` – This is the default option. Lambda invokes your
|
6277
|
+
# function using the `Invoke` API operation. Invocation results are
|
6278
|
+
# available when the payload is complete. The maximum payload size is
|
6279
|
+
# 6 MB.
|
6280
|
+
#
|
6281
|
+
# * `RESPONSE_STREAM` – Your function streams payload results as they
|
6282
|
+
# become available. Lambda invokes your function using the
|
6283
|
+
# `InvokeWithResponseStream` API operation. The maximum response
|
6284
|
+
# payload size is 20 MB, however, you can [request a quota
|
6285
|
+
# increase][1].
|
6286
|
+
#
|
6287
|
+
#
|
6288
|
+
#
|
6289
|
+
# [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
|
6290
|
+
#
|
5946
6291
|
# @return [Types::UpdateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5947
6292
|
#
|
5948
6293
|
# * {Types::UpdateFunctionUrlConfigResponse#function_url #function_url} => String
|
@@ -5951,6 +6296,7 @@ module Aws::Lambda
|
|
5951
6296
|
# * {Types::UpdateFunctionUrlConfigResponse#cors #cors} => Types::Cors
|
5952
6297
|
# * {Types::UpdateFunctionUrlConfigResponse#creation_time #creation_time} => Time
|
5953
6298
|
# * {Types::UpdateFunctionUrlConfigResponse#last_modified_time #last_modified_time} => Time
|
6299
|
+
# * {Types::UpdateFunctionUrlConfigResponse#invoke_mode #invoke_mode} => String
|
5954
6300
|
#
|
5955
6301
|
# @example Request syntax with placeholder values
|
5956
6302
|
#
|
@@ -5966,6 +6312,7 @@ module Aws::Lambda
|
|
5966
6312
|
# expose_headers: ["Header"],
|
5967
6313
|
# max_age: 1,
|
5968
6314
|
# },
|
6315
|
+
# invoke_mode: "BUFFERED", # accepts BUFFERED, RESPONSE_STREAM
|
5969
6316
|
# })
|
5970
6317
|
#
|
5971
6318
|
# @example Response structure
|
@@ -5985,6 +6332,7 @@ module Aws::Lambda
|
|
5985
6332
|
# resp.cors.max_age #=> Integer
|
5986
6333
|
# resp.creation_time #=> Time
|
5987
6334
|
# resp.last_modified_time #=> Time
|
6335
|
+
# resp.invoke_mode #=> String, one of "BUFFERED", "RESPONSE_STREAM"
|
5988
6336
|
#
|
5989
6337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfig AWS API Documentation
|
5990
6338
|
#
|
@@ -6008,7 +6356,7 @@ module Aws::Lambda
|
|
6008
6356
|
params: params,
|
6009
6357
|
config: config)
|
6010
6358
|
context[:gem_name] = 'aws-sdk-lambda'
|
6011
|
-
context[:gem_version] = '1.
|
6359
|
+
context[:gem_version] = '1.93.0'
|
6012
6360
|
Seahorse::Client::Request.new(handlers, context)
|
6013
6361
|
end
|
6014
6362
|
|