aws-sdk-lambda 1.63.0 → 1.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda.rb +1 -1
- data/lib/aws-sdk-lambda/client.rb +6 -4
- data/lib/aws-sdk-lambda/client_api.rb +3 -0
- data/lib/aws-sdk-lambda/types.rb +42 -34
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e2bd1398030b6b39a33fa3b00cfdc2961a9319d1e63331c2f36df03cde8f289
|
4
|
+
data.tar.gz: d230a5e84d7e8e5a06c4d4651338d28cee9cbd1583747254c7588ac7bfcdc47d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3233330f0f5bbf684af51e6387935fff7545df65312c6faf0985dfd85a1b1b585f9aac9500c53c06d033ddf2d3fc8eed7faa25bf7bc609cf6ba361567e180c09
|
7
|
+
data.tar.gz: 290dd1196b516f40b3d2dc7d21a2a23200ab6a6731be6f53589a3ddb59f3b0b96374b3f65de0c87e13e2b1e491518804993bdede94a41db62d73de08120c46f4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - New ResourceConflictException error code for PutFunctionEventInvokeConfig, UpdateFunctionEventInvokeConfig, and DeleteFunctionEventInvokeConfig operations.
|
8
|
+
|
4
9
|
1.63.0 (2021-07-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
data/lib/aws-sdk-lambda.rb
CHANGED
@@ -790,7 +790,7 @@ module Aws::Lambda
|
|
790
790
|
# (MQ) The name of the Amazon MQ broker destination queue to consume.
|
791
791
|
#
|
792
792
|
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
793
|
-
# An array of
|
793
|
+
# An array of authentication protocols or VPC components required to
|
794
794
|
# secure your event source.
|
795
795
|
#
|
796
796
|
# @option params [Types::SelfManagedEventSource] :self_managed_event_source
|
@@ -2828,7 +2828,9 @@ module Aws::Lambda
|
|
2828
2828
|
# A pagination token returned by a previous call.
|
2829
2829
|
#
|
2830
2830
|
# @option params [Integer] :max_items
|
2831
|
-
# The maximum number of event source mappings to return.
|
2831
|
+
# The maximum number of event source mappings to return. Note that
|
2832
|
+
# ListEventSourceMappings returns a maximum of 100 items in each
|
2833
|
+
# response, even if you set the number higher.
|
2832
2834
|
#
|
2833
2835
|
# @return [Types::ListEventSourceMappingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2834
2836
|
#
|
@@ -4337,7 +4339,7 @@ module Aws::Lambda
|
|
4337
4339
|
# concurrently.
|
4338
4340
|
#
|
4339
4341
|
# @option params [Array<Types::SourceAccessConfiguration>] :source_access_configurations
|
4340
|
-
# An array of
|
4342
|
+
# An array of authentication protocols or VPC components required to
|
4341
4343
|
# secure your event source.
|
4342
4344
|
#
|
4343
4345
|
# @option params [Integer] :tumbling_window_in_seconds
|
@@ -5004,7 +5006,7 @@ module Aws::Lambda
|
|
5004
5006
|
params: params,
|
5005
5007
|
config: config)
|
5006
5008
|
context[:gem_name] = 'aws-sdk-lambda'
|
5007
|
-
context[:gem_version] = '1.
|
5009
|
+
context[:gem_version] = '1.64.0'
|
5008
5010
|
Seahorse::Client::Request.new(handlers, context)
|
5009
5011
|
end
|
5010
5012
|
|
@@ -1384,6 +1384,7 @@ module Aws::Lambda
|
|
1384
1384
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1385
1385
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1386
1386
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1387
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
1387
1388
|
end)
|
1388
1389
|
|
1389
1390
|
api.add_operation(:delete_layer_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1875,6 +1876,7 @@ module Aws::Lambda
|
|
1875
1876
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1876
1877
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1877
1878
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1879
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
1878
1880
|
end)
|
1879
1881
|
|
1880
1882
|
api.add_operation(:put_provisioned_concurrency_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2026,6 +2028,7 @@ module Aws::Lambda
|
|
2026
2028
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2027
2029
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2028
2030
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
2031
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
2029
2032
|
end)
|
2030
2033
|
end
|
2031
2034
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -769,7 +769,7 @@ module Aws::Lambda
|
|
769
769
|
# @return [Array<String>]
|
770
770
|
#
|
771
771
|
# @!attribute [rw] source_access_configurations
|
772
|
-
# An array of
|
772
|
+
# An array of authentication protocols or VPC components required to
|
773
773
|
# secure your event source.
|
774
774
|
# @return [Array<Types::SourceAccessConfiguration>]
|
775
775
|
#
|
@@ -1607,8 +1607,8 @@ module Aws::Lambda
|
|
1607
1607
|
include Aws::Structure
|
1608
1608
|
end
|
1609
1609
|
|
1610
|
-
# A mapping between an Amazon Web Services resource and
|
1611
|
-
# function.
|
1610
|
+
# A mapping between an Amazon Web Services resource and a Lambda
|
1611
|
+
# function. For details, see CreateEventSourceMapping.
|
1612
1612
|
#
|
1613
1613
|
# @!attribute [rw] uuid
|
1614
1614
|
# The identifier of the event source mapping.
|
@@ -1616,8 +1616,8 @@ module Aws::Lambda
|
|
1616
1616
|
#
|
1617
1617
|
# @!attribute [rw] starting_position
|
1618
1618
|
# The position in a stream from which to start reading. Required for
|
1619
|
-
# Amazon Kinesis, Amazon DynamoDB, and Amazon MSK
|
1620
|
-
# `AT_TIMESTAMP` is only
|
1619
|
+
# Amazon Kinesis, Amazon DynamoDB, and Amazon MSK stream sources.
|
1620
|
+
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams.
|
1621
1621
|
# @return [String]
|
1622
1622
|
#
|
1623
1623
|
# @!attribute [rw] starting_position_timestamp
|
@@ -1630,14 +1630,14 @@ module Aws::Lambda
|
|
1630
1630
|
# @return [Integer]
|
1631
1631
|
#
|
1632
1632
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
1633
|
-
# (Streams and SQS standard queues) The maximum amount of time
|
1634
|
-
# gather records before invoking the function, in seconds. The
|
1635
|
-
# value is zero.
|
1633
|
+
# (Streams and Amazon SQS standard queues) The maximum amount of time
|
1634
|
+
# to gather records before invoking the function, in seconds. The
|
1635
|
+
# default value is zero.
|
1636
1636
|
# @return [Integer]
|
1637
1637
|
#
|
1638
1638
|
# @!attribute [rw] parallelization_factor
|
1639
|
-
# (Streams only) The number of batches to process from
|
1640
|
-
#
|
1639
|
+
# (Streams only) The number of batches to process concurrently from
|
1640
|
+
# each shard. The default value is 1.
|
1641
1641
|
# @return [Integer]
|
1642
1642
|
#
|
1643
1643
|
# @!attribute [rw] event_source_arn
|
@@ -1649,12 +1649,12 @@ module Aws::Lambda
|
|
1649
1649
|
# @return [String]
|
1650
1650
|
#
|
1651
1651
|
# @!attribute [rw] last_modified
|
1652
|
-
# The date that the event source mapping was last updated
|
1652
|
+
# The date that the event source mapping was last updated or that its
|
1653
1653
|
# state changed.
|
1654
1654
|
# @return [Time]
|
1655
1655
|
#
|
1656
1656
|
# @!attribute [rw] last_processing_result
|
1657
|
-
# The result of the last Lambda invocation of your
|
1657
|
+
# The result of the last Lambda invocation of your function.
|
1658
1658
|
# @return [String]
|
1659
1659
|
#
|
1660
1660
|
# @!attribute [rw] state
|
@@ -1664,8 +1664,8 @@ module Aws::Lambda
|
|
1664
1664
|
# @return [String]
|
1665
1665
|
#
|
1666
1666
|
# @!attribute [rw] state_transition_reason
|
1667
|
-
# Indicates whether the last change to the event
|
1668
|
-
#
|
1667
|
+
# Indicates whether a user or Lambda made the last change to the event
|
1668
|
+
# source mapping.
|
1669
1669
|
# @return [String]
|
1670
1670
|
#
|
1671
1671
|
# @!attribute [rw] destination_config
|
@@ -1678,16 +1678,17 @@ module Aws::Lambda
|
|
1678
1678
|
# @return [Array<String>]
|
1679
1679
|
#
|
1680
1680
|
# @!attribute [rw] queues
|
1681
|
-
# (MQ) The name of the Amazon MQ broker destination queue to
|
1681
|
+
# (Amazon MQ) The name of the Amazon MQ broker destination queue to
|
1682
|
+
# consume.
|
1682
1683
|
# @return [Array<String>]
|
1683
1684
|
#
|
1684
1685
|
# @!attribute [rw] source_access_configurations
|
1685
|
-
# An array of the authentication protocol,
|
1686
|
-
# secure your event source.
|
1686
|
+
# An array of the authentication protocol, VPC components, or virtual
|
1687
|
+
# host to secure and define your event source.
|
1687
1688
|
# @return [Array<Types::SourceAccessConfiguration>]
|
1688
1689
|
#
|
1689
1690
|
# @!attribute [rw] self_managed_event_source
|
1690
|
-
# The
|
1691
|
+
# The self-managed Apache Kafka cluster for your event source.
|
1691
1692
|
# @return [Types::SelfManagedEventSource]
|
1692
1693
|
#
|
1693
1694
|
# @!attribute [rw] maximum_record_age_in_seconds
|
@@ -1710,7 +1711,7 @@ module Aws::Lambda
|
|
1710
1711
|
#
|
1711
1712
|
# @!attribute [rw] tumbling_window_in_seconds
|
1712
1713
|
# (Streams only) The duration in seconds of a processing window. The
|
1713
|
-
# range is
|
1714
|
+
# range is 1–900 seconds.
|
1714
1715
|
# @return [Integer]
|
1715
1716
|
#
|
1716
1717
|
# @!attribute [rw] function_response_types
|
@@ -3541,7 +3542,9 @@ module Aws::Lambda
|
|
3541
3542
|
# @return [String]
|
3542
3543
|
#
|
3543
3544
|
# @!attribute [rw] max_items
|
3544
|
-
# The maximum number of event source mappings to return.
|
3545
|
+
# The maximum number of event source mappings to return. Note that
|
3546
|
+
# ListEventSourceMappings returns a maximum of 100 items in each
|
3547
|
+
# response, even if you set the number higher.
|
3545
3548
|
# @return [Integer]
|
3546
3549
|
#
|
3547
3550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListEventSourceMappingsRequest AWS API Documentation
|
@@ -4792,7 +4795,7 @@ module Aws::Lambda
|
|
4792
4795
|
include Aws::Structure
|
4793
4796
|
end
|
4794
4797
|
|
4795
|
-
# The
|
4798
|
+
# The self-managed Apache Kafka cluster for your event source.
|
4796
4799
|
#
|
4797
4800
|
# @note When making an API call, you may pass SelfManagedEventSource
|
4798
4801
|
# data as a hash:
|
@@ -4834,8 +4837,8 @@ module Aws::Lambda
|
|
4834
4837
|
include Aws::Structure
|
4835
4838
|
end
|
4836
4839
|
|
4837
|
-
#
|
4838
|
-
#
|
4840
|
+
# To secure and define access to your event source, you can specify the
|
4841
|
+
# authentication protocol, VPC components, or virtual host.
|
4839
4842
|
#
|
4840
4843
|
# @note When making an API call, you may pass SourceAccessConfiguration
|
4841
4844
|
# data as a hash:
|
@@ -4846,29 +4849,34 @@ module Aws::Lambda
|
|
4846
4849
|
# }
|
4847
4850
|
#
|
4848
4851
|
# @!attribute [rw] type
|
4849
|
-
# The type of authentication protocol
|
4850
|
-
# event source. For example: `"Type":"SASL_SCRAM_512_AUTH"`.
|
4852
|
+
# The type of authentication protocol, VPC components, or virtual host
|
4853
|
+
# for your event source. For example: `"Type":"SASL_SCRAM_512_AUTH"`.
|
4854
|
+
#
|
4855
|
+
# * `BASIC_AUTH` - (Amazon MQ) The Secrets Manager secret that stores
|
4856
|
+
# your broker credentials.
|
4851
4857
|
#
|
4852
|
-
# * `BASIC_AUTH` - (
|
4853
|
-
#
|
4858
|
+
# * `BASIC_AUTH` - (Self-managed Apache Kafka) The Secrets Manager ARN
|
4859
|
+
# of your secret key used for SASL/PLAIN authentication of your
|
4860
|
+
# Apache Kafka brokers.
|
4854
4861
|
#
|
4855
4862
|
# * `VPC_SUBNET` - The subnets associated with your VPC. Lambda
|
4856
|
-
# connects to these subnets to fetch data from your
|
4863
|
+
# connects to these subnets to fetch data from your self-managed
|
4857
4864
|
# Apache Kafka cluster.
|
4858
4865
|
#
|
4859
4866
|
# * `VPC_SECURITY_GROUP` - The VPC security group used to manage
|
4860
|
-
# access to your
|
4867
|
+
# access to your self-managed Apache Kafka brokers.
|
4861
4868
|
#
|
4862
4869
|
# * `SASL_SCRAM_256_AUTH` - The Secrets Manager ARN of your secret key
|
4863
|
-
# used for SASL SCRAM-256 authentication of your
|
4870
|
+
# used for SASL SCRAM-256 authentication of your self-managed Apache
|
4864
4871
|
# Kafka brokers.
|
4865
4872
|
#
|
4866
4873
|
# * `SASL_SCRAM_512_AUTH` - The Secrets Manager ARN of your secret key
|
4867
|
-
# used for SASL SCRAM-512 authentication of your
|
4874
|
+
# used for SASL SCRAM-512 authentication of your self-managed Apache
|
4868
4875
|
# Kafka brokers.
|
4869
4876
|
#
|
4870
|
-
# * `VIRTUAL_HOST` - The name of the virtual host in your
|
4871
|
-
# broker. Lambda
|
4877
|
+
# * `VIRTUAL_HOST` - (Amazon MQ) The name of the virtual host in your
|
4878
|
+
# RabbitMQ broker. Lambda uses this RabbitMQ host as the event
|
4879
|
+
# source.
|
4872
4880
|
# @return [String]
|
4873
4881
|
#
|
4874
4882
|
# @!attribute [rw] uri
|
@@ -5271,7 +5279,7 @@ module Aws::Lambda
|
|
5271
5279
|
# @return [Integer]
|
5272
5280
|
#
|
5273
5281
|
# @!attribute [rw] source_access_configurations
|
5274
|
-
# An array of
|
5282
|
+
# An array of authentication protocols or VPC components required to
|
5275
5283
|
# secure your event source.
|
5276
5284
|
# @return [Array<Types::SourceAccessConfiguration>]
|
5277
5285
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lambda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|