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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d1f7e8557ace0749b2513dfa15341bacb7b95fb5309756b328761eee306fb5c
4
- data.tar.gz: 98c82ef96e61b2e06ea46755ce28fa6f52ce8af9c8cf2e2b7e5b98b67f0ff146
3
+ metadata.gz: 6dcdfcc0f36d33246ec4a8a55c9d855004146f60a797e48857f1b1fa732400b8
4
+ data.tar.gz: 13f2d898e31489e4ce064421397f877d583e7751ee8750ed5461dc7f256dc6b9
5
5
  SHA512:
6
- metadata.gz: df88133b90f6e857392554daa4a17474e3f2c236bb839471cac1eee39ccb074dcbf452cedff85bb1805395836824ea868f34e98bbf4b85acf20bc5afd722915d
7
- data.tar.gz: f184b426ad8938e54a4d6cb3737c40d4c30fe3c7ccba3ef164cc72b8aaea60c5f9142fc1a58a82b20ad5a5847b731f85d1f1d171590132ebb495435fd4b9fe13
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.93.0
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.93.0'
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)
@@ -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 runtime environment for the Lambda function.
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
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-lambda/event_streams'
54
54
  # @!group service
55
55
  module Aws::Lambda
56
56
 
57
- GEM_VERSION = '1.93.0'
57
+ GEM_VERSION = '1.94.0'
58
58
 
59
59
  end
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.93.0
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-07 00:00:00.000000000 Z
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