aws-sdk-lambda 1.194.0 → 1.195.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: ee5c1fb98f514866da65aa9a517599e6cfbc0e1d2e7df6b5cf60410a10f389f8
4
- data.tar.gz: c5ec4f3339bb43fb88daa4b2ca9a77f0a99a9c5618980799afcd9303bae90e2f
3
+ metadata.gz: 0ece0cd79a68888241aecf629d5064acc008905a67479da2731bdcbdf2e79e6c
4
+ data.tar.gz: 5984ccfda74134c10d291339aca5705d4da841d318061b5786d4f9854b245b82
5
5
  SHA512:
6
- metadata.gz: 435e41d797bf594c3c37cde7b41e63a40cc99aa490857a7374fa3d8aac1cdb9e9e865856e10df8b3d6a0545370906ea3de63117facc9318a79833e752f9972fc
7
- data.tar.gz: 9efd60cee6ebeebac9a664f1b7a747df115db784b280c0c7118f83cc09f5e64979cd9e924c4aa5f4a24054fbabf598808dc7605b5c80f0f9fa3e1aa3afd2101c
6
+ metadata.gz: e3f336c35d9c7d5791de8f724dfcba440ef61ed833d521c73d926b6a7243480c302fc0b516c939755517bb332ef34562a41a5245082e23ad198741e9d5ee9e45
7
+ data.tar.gz: bb34bf442aa7aa9bafdfba93ec5b1ad68f459f27fd0b39e2d4eeaf77d747eb4c7deb71c7180c0df5ed8227b63b2f70957d6a8904224534e1e02b00a3d1942492
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.195.0 (2026-09-09)
5
+ ------------------
6
+
7
+ * Feature - Updates documentation for lambda function timeout.
8
+
4
9
  1.194.0 (2026-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.194.0
1
+ 1.195.0
@@ -1839,9 +1839,12 @@ module Aws::Lambda
1839
1839
  #
1840
1840
  # @option params [Integer] :timeout
1841
1841
  # The amount of time (in seconds) that Lambda allows a function to run
1842
- # before stopping it. The default is 3 seconds. The maximum allowed
1843
- # value is 900 seconds. For more information, see [Lambda execution
1844
- # environment][1].
1842
+ # before stopping it. The default is 3 seconds, and the maximum allowed
1843
+ # value is 900 seconds. For functions using Lambda Managed Instances,
1844
+ # asynchronous invocations and event source mapping invocations (except
1845
+ # Amazon MQ and Amazon DocumentDB) support a maximum allowed value of
1846
+ # 5,400 seconds (90 minutes). For more information, see [Lambda
1847
+ # execution environment][1].
1845
1848
  #
1846
1849
  #
1847
1850
  #
@@ -4804,9 +4807,9 @@ module Aws::Lambda
4804
4807
  # * {Types::GetProvisionedConcurrencyConfigResponse#last_modified #last_modified} => Time
4805
4808
  #
4806
4809
  #
4807
- # @example Example: To view a provisioned concurrency configuration
4810
+ # @example Example: To get a provisioned concurrency configuration
4808
4811
  #
4809
- # # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
4812
+ # # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
4810
4813
  # # function.
4811
4814
  #
4812
4815
  # resp = client.get_provisioned_concurrency_config({
@@ -4823,9 +4826,9 @@ module Aws::Lambda
4823
4826
  # status: "READY",
4824
4827
  # }
4825
4828
  #
4826
- # @example Example: To get a provisioned concurrency configuration
4829
+ # @example Example: To view a provisioned concurrency configuration
4827
4830
  #
4828
- # # The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified
4831
+ # # The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified
4829
4832
  # # function.
4830
4833
  #
4831
4834
  # resp = client.get_provisioned_concurrency_config({
@@ -9384,9 +9387,12 @@ module Aws::Lambda
9384
9387
  #
9385
9388
  # @option params [Integer] :timeout
9386
9389
  # The amount of time (in seconds) that Lambda allows a function to run
9387
- # before stopping it. The default is 3 seconds. The maximum allowed
9388
- # value is 900 seconds. For more information, see [Lambda execution
9389
- # environment][1].
9390
+ # before stopping it. The default is 3 seconds, and the maximum allowed
9391
+ # value is 900 seconds. For functions using Lambda Managed Instances,
9392
+ # asynchronous invocations and event source mapping invocations (except
9393
+ # Amazon MQ and Amazon DocumentDB) support a maximum allowed value of
9394
+ # 5,400 seconds (90 minutes). For more information, see [Lambda
9395
+ # execution environment][1].
9390
9396
  #
9391
9397
  #
9392
9398
  #
@@ -10030,7 +10036,7 @@ module Aws::Lambda
10030
10036
  tracer: tracer
10031
10037
  )
10032
10038
  context[:gem_name] = 'aws-sdk-lambda'
10033
- context[:gem_version] = '1.194.0'
10039
+ context[:gem_version] = '1.195.0'
10034
10040
  Seahorse::Client::Request.new(handlers, context)
10035
10041
  end
10036
10042
 
@@ -1809,9 +1809,12 @@ module Aws::Lambda
1809
1809
  #
1810
1810
  # @!attribute [rw] timeout
1811
1811
  # The amount of time (in seconds) that Lambda allows a function to run
1812
- # before stopping it. The default is 3 seconds. The maximum allowed
1813
- # value is 900 seconds. For more information, see [Lambda execution
1814
- # environment][1].
1812
+ # before stopping it. The default is 3 seconds, and the maximum
1813
+ # allowed value is 900 seconds. For functions using Lambda Managed
1814
+ # Instances, asynchronous invocations and event source mapping
1815
+ # invocations (except Amazon MQ and Amazon DocumentDB) support a
1816
+ # maximum allowed value of 5,400 seconds (90 minutes). For more
1817
+ # information, see [Lambda execution environment][1].
1815
1818
  #
1816
1819
  #
1817
1820
  #
@@ -10086,9 +10089,12 @@ module Aws::Lambda
10086
10089
  #
10087
10090
  # @!attribute [rw] timeout
10088
10091
  # The amount of time (in seconds) that Lambda allows a function to run
10089
- # before stopping it. The default is 3 seconds. The maximum allowed
10090
- # value is 900 seconds. For more information, see [Lambda execution
10091
- # environment][1].
10092
+ # before stopping it. The default is 3 seconds, and the maximum
10093
+ # allowed value is 900 seconds. For functions using Lambda Managed
10094
+ # Instances, asynchronous invocations and event source mapping
10095
+ # invocations (except Amazon MQ and Amazon DocumentDB) support a
10096
+ # maximum allowed value of 5,400 seconds (90 minutes). For more
10097
+ # information, see [Lambda execution environment][1].
10092
10098
  #
10093
10099
  #
10094
10100
  #
@@ -56,7 +56,7 @@ module Aws::Lambda
56
56
  autoload :Endpoints, 'aws-sdk-lambda/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-lambda/event_streams'
58
58
 
59
- GEM_VERSION = '1.194.0'
59
+ GEM_VERSION = '1.195.0'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.194.0
4
+ version: 1.195.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.254.0
21
+ version: 3.255.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.254.0
31
+ version: 3.255.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement