aws-sdk-lambda 1.63.0 → 1.64.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e5cc72061284d6cab80781cf084688bd2105a7f18864b4215f526d78ed922a8
4
- data.tar.gz: aac9ab3f6a5a328e329e0ad44153424d6d97597e2c15149441f2ddee2ce6b3c9
3
+ metadata.gz: 1e2bd1398030b6b39a33fa3b00cfdc2961a9319d1e63331c2f36df03cde8f289
4
+ data.tar.gz: d230a5e84d7e8e5a06c4d4651338d28cee9cbd1583747254c7588ac7bfcdc47d
5
5
  SHA512:
6
- metadata.gz: 82539c53e2ab9a642e429a8deff93dc78454e4d3497f60725430c52f1d91a1bd96f984ff51161bfef7412c8c2dc02a201435f81f51e07197b1b83d090686311c
7
- data.tar.gz: befa93ada9f746412ca75ecf4ac54eccbd8f35b6ced9924fafbc034eb154b5e6b0699d32aa99fdb8fc6c545cc38b4f91b0b58dd32113e4cf4387f55bd0f9909f
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.63.0
1
+ 1.64.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-lambda/customizations'
49
49
  # @!group service
50
50
  module Aws::Lambda
51
51
 
52
- GEM_VERSION = '1.63.0'
52
+ GEM_VERSION = '1.64.0'
53
53
 
54
54
  end
@@ -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 the authentication protocol, or the VPC components to
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 the authentication protocol, or the VPC components to
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.63.0'
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
 
@@ -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 the authentication protocol, or the VPC components to
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 an Lambda
1611
- # function. See CreateEventSourceMapping for details.
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 Streams sources.
1620
- # `AT_TIMESTAMP` is only supported for Amazon Kinesis streams.
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 to
1634
- # gather records before invoking the function, in seconds. The default
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 each shard
1640
- # concurrently. The default value is 1.
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, or its
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 Lambda function.
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 source mapping was
1668
- # made by a user, or by the Lambda service.
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 consume.
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, or the VPC components to
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 Self-Managed Apache Kafka cluster for your event source.
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 between 1 second up to 900 seconds.
1714
+ # range is 1900 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 Self-Managed Apache Kafka cluster for your event source.
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
- # You can specify the authentication protocol, or the VPC components to
4838
- # secure access to your event source.
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 or the VPC components for your
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` - (MQ) The Secrets Manager secret that stores your
4853
- # broker credentials.
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 Self-Managed
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 Self-Managed Apache Kafka brokers.
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 Self-Managed Apache
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 Self-Managed Apache
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 RabbitMQ
4871
- # broker. Lambda will use this host as the event source.
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 the authentication protocol, or the VPC components to
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.63.0
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-06 00:00:00.000000000 Z
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