aws-sdk-lambda 1.156.0 → 1.158.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: b563e3486f03a1e43ed7240562a4e40f1f580914c6898d0ec2a795984bfbf5ef
4
- data.tar.gz: ff0e9edba7bbd4dad6a23dabd97e393632dd7299e88a077238906be7cb331861
3
+ metadata.gz: 8388082f18a8a055df4506cbe7ee9c96ba80721f343f6ffdf1d1a91658d4af10
4
+ data.tar.gz: 3ace5e544f2b888bc3d53b9ed81e152dd69df0d394f8c033601c7a5539c2e9d0
5
5
  SHA512:
6
- metadata.gz: 01a3bd3af6d3753b505f901c392d71275741ec475d826c9259c760a86f7926fae26c888997095df0626e6081677f3a28523e88a20dd4d60069090f6af06550fe
7
- data.tar.gz: 16cb9397afa29da48eb997c572c6b0729d1b684542fb45bb77c063ea3b1da64e22c0535dd9475ec341ca95c995cba68aa0ee16d7b7df1ff1b60fe367fd0ee9ad
6
+ metadata.gz: 8fd7d2497414dc5a90a366cc61f7010cbf409eb1907b9b46c6990c6e394889987405ed02eae1e5d33f8fe43c68ce65c3ceb7d57294225224646571e83a542dc9
7
+ data.tar.gz: 44f0dc820f6181251571d3a3d3cc9236a832a6f83a7a063c4c3c1d63f5d6b679b8f0e9fbf97c5d65e7fc2fc6bcd652c880a26e6ed6d75a8b5c2c64f598bcf17e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.158.0 (2025-08-11)
5
+ ------------------
6
+
7
+ * Feature - Doc-only update for Lambda that updates the maximum payload size for response streaming invocations to 200 MB.
8
+
9
+ 1.157.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.156.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.156.0
1
+ 1.158.0
@@ -97,8 +97,8 @@ module Aws::Lambda
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials used for authentication. This can be an instance of any one of the
101
- # following classes:
100
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
101
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
104
104
  # credentials.
@@ -126,8 +126,7 @@ module Aws::Lambda
126
126
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
127
127
  # from the Cognito Identity service.
128
128
  #
129
- # When `:credentials` are not configured directly, the following
130
- # locations will be searched for credentials:
129
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
131
130
  #
132
131
  # * `Aws.config[:credentials]`
133
132
  #
@@ -141,12 +140,10 @@ module Aws::Lambda
141
140
  #
142
141
  # * `~/.aws/config`
143
142
  #
144
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
145
- # are very aggressive. Construct and pass an instance of
146
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
147
- # enable retries and extended timeouts. Instance profile credential
148
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
- # to `true`.
143
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
144
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
146
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
150
147
  #
151
148
  # @option options [required, String] :region
152
149
  # The AWS region to connect to. The configured `:region` is
@@ -388,8 +385,8 @@ module Aws::Lambda
388
385
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
389
386
  #
390
387
  # @option options [Aws::TokenProvider] :token_provider
391
- # Your Bearer token used for authentication. This can be an instance of any one of the
392
- # following classes:
388
+ # Your Bearer token used for authentication. This can be any class that includes and implements
389
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
393
390
  #
394
391
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
395
392
  # tokens.
@@ -1999,12 +1996,7 @@ module Aws::Lambda
1999
1996
  # * `RESPONSE_STREAM` – Your function streams payload results as they
2000
1997
  # become available. Lambda invokes your function using the
2001
1998
  # `InvokeWithResponseStream` API operation. The maximum response
2002
- # payload size is 20 MB, however, you can [request a quota
2003
- # increase][1].
2004
- #
2005
- #
2006
- #
2007
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
1999
+ # payload size is 200 MB.
2008
2000
  #
2009
2001
  # @return [Types::CreateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2010
2002
  #
@@ -8283,12 +8275,7 @@ module Aws::Lambda
8283
8275
  # * `RESPONSE_STREAM` – Your function streams payload results as they
8284
8276
  # become available. Lambda invokes your function using the
8285
8277
  # `InvokeWithResponseStream` API operation. The maximum response
8286
- # payload size is 20 MB, however, you can [request a quota
8287
- # increase][1].
8288
- #
8289
- #
8290
- #
8291
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
8278
+ # payload size is 200 MB.
8292
8279
  #
8293
8280
  # @return [Types::UpdateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8294
8281
  #
@@ -8363,7 +8350,7 @@ module Aws::Lambda
8363
8350
  tracer: tracer
8364
8351
  )
8365
8352
  context[:gem_name] = 'aws-sdk-lambda'
8366
- context[:gem_version] = '1.156.0'
8353
+ context[:gem_version] = '1.158.0'
8367
8354
  Seahorse::Client::Request.new(handlers, context)
8368
8355
  end
8369
8356
 
@@ -1231,12 +1231,7 @@ module Aws::Lambda
1231
1231
  # * `RESPONSE_STREAM` – Your function streams payload results as they
1232
1232
  # become available. Lambda invokes your function using the
1233
1233
  # `InvokeWithResponseStream` API operation. The maximum response
1234
- # payload size is 20 MB, however, you can [request a quota
1235
- # increase][1].
1236
- #
1237
- #
1238
- #
1239
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
1234
+ # payload size is 200 MB.
1240
1235
  # @return [String]
1241
1236
  #
1242
1237
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfigRequest AWS API Documentation
@@ -1300,12 +1295,7 @@ module Aws::Lambda
1300
1295
  # * `RESPONSE_STREAM` – Your function streams payload results as they
1301
1296
  # become available. Lambda invokes your function using the
1302
1297
  # `InvokeWithResponseStream` API operation. The maximum response
1303
- # payload size is 20 MB, however, you can [request a quota
1304
- # increase][1].
1305
- #
1306
- #
1307
- #
1308
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
1298
+ # payload size is 200 MB.
1309
1299
  # @return [String]
1310
1300
  #
1311
1301
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfigResponse AWS API Documentation
@@ -2728,12 +2718,7 @@ module Aws::Lambda
2728
2718
  # * `RESPONSE_STREAM` – Your function streams payload results as they
2729
2719
  # become available. Lambda invokes your function using the
2730
2720
  # `InvokeWithResponseStream` API operation. The maximum response
2731
- # payload size is 20 MB, however, you can [request a quota
2732
- # increase][1].
2733
- #
2734
- #
2735
- #
2736
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
2721
+ # payload size is 200 MB.
2737
2722
  # @return [String]
2738
2723
  #
2739
2724
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionUrlConfig AWS API Documentation
@@ -3189,12 +3174,7 @@ module Aws::Lambda
3189
3174
  # * `RESPONSE_STREAM` – Your function streams payload results as they
3190
3175
  # become available. Lambda invokes your function using the
3191
3176
  # `InvokeWithResponseStream` API operation. The maximum response
3192
- # payload size is 20 MB, however, you can [request a quota
3193
- # increase][1].
3194
- #
3195
- #
3196
- #
3197
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
3177
+ # payload size is 200 MB.
3198
3178
  # @return [String]
3199
3179
  #
3200
3180
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetFunctionUrlConfigResponse AWS API Documentation
@@ -7224,12 +7204,7 @@ module Aws::Lambda
7224
7204
  # * `RESPONSE_STREAM` – Your function streams payload results as they
7225
7205
  # become available. Lambda invokes your function using the
7226
7206
  # `InvokeWithResponseStream` API operation. The maximum response
7227
- # payload size is 20 MB, however, you can [request a quota
7228
- # increase][1].
7229
- #
7230
- #
7231
- #
7232
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
7207
+ # payload size is 200 MB.
7233
7208
  # @return [String]
7234
7209
  #
7235
7210
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfigRequest AWS API Documentation
@@ -7302,12 +7277,7 @@ module Aws::Lambda
7302
7277
  # * `RESPONSE_STREAM` – Your function streams payload results as they
7303
7278
  # become available. Lambda invokes your function using the
7304
7279
  # `InvokeWithResponseStream` API operation. The maximum response
7305
- # payload size is 20 MB, however, you can [request a quota
7306
- # increase][1].
7307
- #
7308
- #
7309
- #
7310
- # [1]: https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html
7280
+ # payload size is 200 MB.
7311
7281
  # @return [String]
7312
7282
  #
7313
7283
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfigResponse AWS API Documentation
@@ -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.156.0'
59
+ GEM_VERSION = '1.158.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.156.0
4
+ version: 1.158.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services