aws-sdk-lambda 1.93.0 → 1.94.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 -1
- data/lib/aws-sdk-lambda/client_api.rb +3 -0
- data/lib/aws-sdk-lambda/types.rb +14 -1
- data/lib/aws-sdk-lambda.rb +1 -1
- 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: 6dcdfcc0f36d33246ec4a8a55c9d855004146f60a797e48857f1b1fa732400b8
|
4
|
+
data.tar.gz: 13f2d898e31489e4ce064421397f877d583e7751ee8750ed5461dc7f256dc6b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12608eb2491e0c65c4be4dea344eba0de54751b418f6bc8573f4d5a36d79771b939b3e964c5bf96e05306e2ef03aa4ccf6e4d4138a89c1982d247498cdfc0291
|
7
|
+
data.tar.gz: 275e3f3eec69a58470c3cd7a0890291662a5be80403e0471da9fc931904adf9e2a6497a7e89af419f5fb120c03c06a2cfd0c5266331322d072fac1b4eec077cf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.94.0 (2023-04-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds SnapStart related exceptions to InvokeWithResponseStream API. IAM access related documentation is also added for this API.
|
8
|
+
|
4
9
|
1.93.0 (2023-04-07)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|
@@ -3261,9 +3261,15 @@ module Aws::Lambda
|
|
3261
3261
|
# clients. For more information, see [Configuring a Lambda function to
|
3262
3262
|
# stream responses][1].
|
3263
3263
|
#
|
3264
|
+
# This operation requires permission for the [lambda:InvokeFunction][2]
|
3265
|
+
# action. For details on how to set up permissions for cross-account
|
3266
|
+
# invocations, see [Granting function access to other accounts][3].
|
3267
|
+
#
|
3264
3268
|
#
|
3265
3269
|
#
|
3266
3270
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-response-streaming.html
|
3271
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_awslambda.html
|
3272
|
+
# [3]: https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke
|
3267
3273
|
#
|
3268
3274
|
# @option params [required, String] :function_name
|
3269
3275
|
# The name of the Lambda function.
|
@@ -6356,7 +6362,7 @@ module Aws::Lambda
|
|
6356
6362
|
params: params,
|
6357
6363
|
config: config)
|
6358
6364
|
context[:gem_name] = 'aws-sdk-lambda'
|
6359
|
-
context[:gem_version] = '1.
|
6365
|
+
context[:gem_version] = '1.94.0'
|
6360
6366
|
Seahorse::Client::Request.new(handlers, context)
|
6361
6367
|
end
|
6362
6368
|
|
@@ -1979,6 +1979,9 @@ module Aws::Lambda
|
|
1979
1979
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountFailureException)
|
1980
1980
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountTimeoutException)
|
1981
1981
|
o.errors << Shapes::ShapeRef.new(shape: EFSIOException)
|
1982
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartException)
|
1983
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartTimeoutException)
|
1984
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapStartNotReadyException)
|
1982
1985
|
o.errors << Shapes::ShapeRef.new(shape: EC2ThrottledException)
|
1983
1986
|
o.errors << Shapes::ShapeRef.new(shape: EC2AccessDeniedException)
|
1984
1987
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnetIDException)
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -1891,6 +1891,10 @@ module Aws::Lambda
|
|
1891
1891
|
# specified age. The default value is -1, which sets the maximum age
|
1892
1892
|
# to infinite. When the value is set to infinite, Lambda never
|
1893
1893
|
# discards old records.
|
1894
|
+
#
|
1895
|
+
# <note markdown="1"> The minimum value that can be set is 60 seconds.
|
1896
|
+
#
|
1897
|
+
# </note>
|
1894
1898
|
# @return [Integer]
|
1895
1899
|
#
|
1896
1900
|
# @!attribute [rw] bisect_batch_on_function_error
|
@@ -2119,7 +2123,16 @@ module Aws::Lambda
|
|
2119
2123
|
# @return [String]
|
2120
2124
|
#
|
2121
2125
|
# @!attribute [rw] runtime
|
2122
|
-
# The
|
2126
|
+
# The identifier of the function's [runtime][1]. Runtime is required
|
2127
|
+
# if the deployment package is a .zip file archive.
|
2128
|
+
#
|
2129
|
+
# The following list includes deprecated runtimes. For more
|
2130
|
+
# information, see [Runtime deprecation policy][2].
|
2131
|
+
#
|
2132
|
+
#
|
2133
|
+
#
|
2134
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
2135
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
2123
2136
|
# @return [String]
|
2124
2137
|
#
|
2125
2138
|
# @!attribute [rw] role
|
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.94.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-04-
|
11
|
+
date: 2023-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|