aws-sdk-lambda 1.100.0 → 1.101.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +7 -6
- data/lib/aws-sdk-lambda/client_api.rb +1 -0
- data/lib/aws-sdk-lambda/types.rb +11 -13
- data/lib/aws-sdk-lambda.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec41240b9afd16a47497b1dbdc2ab9625ef3d058808c99c02514e78437035a1f
|
|
4
|
+
data.tar.gz: 5a29d529b47b00f1a8aba70e229484aa981052333bde54dfe3a2c0849f245f7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef799912209393ac4c1fb9c0e938eb8ea4ecb417428d77552c464e4f2cdb4cfe53c275a83d7d7ab63a019b9daf190641b9b477f602f9c2d9ce3c1ff135aac40e
|
|
7
|
+
data.tar.gz: 015d5729f08216db5ee236a9bfaa23ec4afbe153d9830f42424b32c634b50b6014623dbd4d680fca32da516281291814348cc0017eaab34260fe0dfdc716f0b8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.101.0
|
|
@@ -898,13 +898,13 @@ module Aws::Lambda
|
|
|
898
898
|
#
|
|
899
899
|
# @option params [String] :starting_position
|
|
900
900
|
# The position in a stream from which to start reading. Required for
|
|
901
|
-
# Amazon Kinesis
|
|
902
|
-
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams
|
|
903
|
-
# DocumentDB.
|
|
901
|
+
# Amazon Kinesis and Amazon DynamoDB Stream event sources.
|
|
902
|
+
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams, Amazon
|
|
903
|
+
# DocumentDB, Amazon MSK, and self-managed Apache Kafka.
|
|
904
904
|
#
|
|
905
905
|
# @option params [Time,DateTime,Date,Integer,String] :starting_position_timestamp
|
|
906
906
|
# With `StartingPosition` set to `AT_TIMESTAMP`, the time from which to
|
|
907
|
-
# start reading.
|
|
907
|
+
# start reading. `StartingPositionTimestamp` cannot be in the future.
|
|
908
908
|
#
|
|
909
909
|
# @option params [Types::DestinationConfig] :destination_config
|
|
910
910
|
# (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or
|
|
@@ -1794,7 +1794,8 @@ module Aws::Lambda
|
|
|
1794
1794
|
|
|
1795
1795
|
# Deletes a Lambda function. To delete a specific function version, use
|
|
1796
1796
|
# the `Qualifier` parameter. Otherwise, all versions and aliases are
|
|
1797
|
-
# deleted.
|
|
1797
|
+
# deleted. This doesn't require the user to have explicit permissions
|
|
1798
|
+
# for DeleteAlias.
|
|
1798
1799
|
#
|
|
1799
1800
|
# To delete Lambda event source mappings that invoke a function, use
|
|
1800
1801
|
# DeleteEventSourceMapping. For Amazon Web Services and resources that
|
|
@@ -6393,7 +6394,7 @@ module Aws::Lambda
|
|
|
6393
6394
|
params: params,
|
|
6394
6395
|
config: config)
|
|
6395
6396
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
6396
|
-
context[:gem_version] = '1.
|
|
6397
|
+
context[:gem_version] = '1.101.0'
|
|
6397
6398
|
Seahorse::Client::Request.new(handlers, context)
|
|
6398
6399
|
end
|
|
6399
6400
|
|
|
@@ -1632,6 +1632,7 @@ module Aws::Lambda
|
|
|
1632
1632
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1633
1633
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
1634
1634
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1635
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
|
1635
1636
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
|
1636
1637
|
end)
|
|
1637
1638
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -751,14 +751,15 @@ module Aws::Lambda
|
|
|
751
751
|
#
|
|
752
752
|
# @!attribute [rw] starting_position
|
|
753
753
|
# The position in a stream from which to start reading. Required for
|
|
754
|
-
# Amazon Kinesis
|
|
755
|
-
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams
|
|
756
|
-
# Amazon
|
|
754
|
+
# Amazon Kinesis and Amazon DynamoDB Stream event sources.
|
|
755
|
+
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams, Amazon
|
|
756
|
+
# DocumentDB, Amazon MSK, and self-managed Apache Kafka.
|
|
757
757
|
# @return [String]
|
|
758
758
|
#
|
|
759
759
|
# @!attribute [rw] starting_position_timestamp
|
|
760
760
|
# With `StartingPosition` set to `AT_TIMESTAMP`, the time from which
|
|
761
|
-
# to start reading.
|
|
761
|
+
# to start reading. `StartingPositionTimestamp` cannot be in the
|
|
762
|
+
# future.
|
|
762
763
|
# @return [Time]
|
|
763
764
|
#
|
|
764
765
|
# @!attribute [rw] destination_config
|
|
@@ -1781,14 +1782,15 @@ module Aws::Lambda
|
|
|
1781
1782
|
#
|
|
1782
1783
|
# @!attribute [rw] starting_position
|
|
1783
1784
|
# The position in a stream from which to start reading. Required for
|
|
1784
|
-
# Amazon Kinesis
|
|
1785
|
-
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams
|
|
1786
|
-
# Amazon
|
|
1785
|
+
# Amazon Kinesis and Amazon DynamoDB Stream event sources.
|
|
1786
|
+
# `AT_TIMESTAMP` is supported only for Amazon Kinesis streams, Amazon
|
|
1787
|
+
# DocumentDB, Amazon MSK, and self-managed Apache Kafka.
|
|
1787
1788
|
# @return [String]
|
|
1788
1789
|
#
|
|
1789
1790
|
# @!attribute [rw] starting_position_timestamp
|
|
1790
1791
|
# With `StartingPosition` set to `AT_TIMESTAMP`, the time from which
|
|
1791
|
-
# to start reading.
|
|
1792
|
+
# to start reading. `StartingPositionTimestamp` cannot be in the
|
|
1793
|
+
# future.
|
|
1792
1794
|
# @return [Time]
|
|
1793
1795
|
#
|
|
1794
1796
|
# @!attribute [rw] batch_size
|
|
@@ -5527,14 +5529,10 @@ module Aws::Lambda
|
|
|
5527
5529
|
include Aws::Structure
|
|
5528
5530
|
end
|
|
5529
5531
|
|
|
5530
|
-
# The function's Lambda SnapStart setting. Set `ApplyOn` to
|
|
5532
|
+
# The function's [Lambda SnapStart][1] setting. Set `ApplyOn` to
|
|
5531
5533
|
# `PublishedVersions` to create a snapshot of the initialized execution
|
|
5532
5534
|
# environment when you publish a function version.
|
|
5533
5535
|
#
|
|
5534
|
-
# SnapStart is supported with the `java11` runtime. For more
|
|
5535
|
-
# information, see [Improving startup performance with Lambda
|
|
5536
|
-
# SnapStart][1].
|
|
5537
|
-
#
|
|
5538
5536
|
#
|
|
5539
5537
|
#
|
|
5540
5538
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html
|
data/lib/aws-sdk-lambda.rb
CHANGED
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.101.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: 2023-06-
|
|
11
|
+
date: 2023-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.176.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.176.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|