aws-sdk-lambda 1.153.0 → 1.155.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: b1e03b2aad7c23ace995b2227f8fdb64c826eb967d254477e87413320aba5a38
4
- data.tar.gz: 79c21aab845d5a8f99422f02ab1d4e8c2549d45e68ea3c6ef170158c8f3f78dc
3
+ metadata.gz: d73cd5bfc988b14997d170d619f2c538f59d47c28f5313229bed120a90f94367
4
+ data.tar.gz: 307e61e8f88294289a805bb18ee264b0c52941be8a98bacea93dd3facc5803ba
5
5
  SHA512:
6
- metadata.gz: ced572c7a02e8e5342cf709c396bd226d849437499070e9f6210806313779913f0171b0c58cc96f87871a179cca0c8e1f79c3464320e5c42b1fafbb8ece770b6
7
- data.tar.gz: 8750c1ddf8bbed594fe118271b198a96f167b6e0eb6a9cbdd6446ac1a54176222c6749e00ab46edcbb05efb0967a4e876a8086cdfd5a04c880729761a4c68f0f
6
+ metadata.gz: b6bc05e4bf35a6192ed9d20f8923b8aefc0cde5c8c3041ba3083a37e7252fb7ba62d9cdba3894a0e4a775e9008dabd528f6d044cce0fc12d5199b86dd5a185c4
7
+ data.tar.gz: '07578ba4b559beaddf74d985a08469b2ebd1d99d5c284ee7a0b54999dd3eb472790639d5c8ec6d418c186b275c084b0e9b8c4152f96acad990a0ac972cbac702'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2025-07-22)
5
+ ------------------
6
+
7
+ * Feature - This release migrated the model to Smithy keeping all features unchanged.
8
+
9
+ 1.154.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.153.0 (2025-06-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.153.0
1
+ 1.155.0
@@ -97,7 +97,7 @@ 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. This can be an instance of any one of the
100
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
101
101
  # following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -130,18 +130,23 @@ module Aws::Lambda
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
+ #
133
134
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
135
  # `:account_id` options.
135
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
136
+ #
137
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
138
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
139
+ #
137
140
  # * `~/.aws/credentials`
141
+ #
138
142
  # * `~/.aws/config`
143
+ #
139
144
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
140
145
  # are very aggressive. Construct and pass an instance of
141
146
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
142
147
  # enable retries and extended timeouts. Instance profile credential
143
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
144
- # to true.
148
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
+ # to `true`.
145
150
  #
146
151
  # @option options [required, String] :region
147
152
  # The AWS region to connect to. The configured `:region` is
@@ -169,6 +174,11 @@ module Aws::Lambda
169
174
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
170
175
  # not retry instead of sleeping.
171
176
  #
177
+ # @option options [Array<String>] :auth_scheme_preference
178
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
179
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
180
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
181
+ #
172
182
  # @option options [Boolean] :client_side_monitoring (false)
173
183
  # When `true`, client-side metrics will be collected for all API requests from
174
184
  # this client.
@@ -264,8 +274,8 @@ module Aws::Lambda
264
274
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
265
275
  #
266
276
  # @option options [String] :profile ("default")
267
- # Used when loading credentials from the shared credentials file
268
- # at HOME/.aws/credentials. When not specified, 'default' is used.
277
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
278
+ # When not specified, 'default' is used.
269
279
  #
270
280
  # @option options [String] :request_checksum_calculation ("when_supported")
271
281
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -378,7 +388,7 @@ module Aws::Lambda
378
388
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
379
389
  #
380
390
  # @option options [Aws::TokenProvider] :token_provider
381
- # A Bearer Token Provider. This can be an instance of any one of the
391
+ # Your Bearer token used for authentication. This can be an instance of any one of the
382
392
  # following classes:
383
393
  #
384
394
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -4170,9 +4180,10 @@ module Aws::Lambda
4170
4180
 
4171
4181
  # For asynchronous function invocation, use Invoke.
4172
4182
  #
4173
- # Invokes a function asynchronously.
4183
+ # Invokes a function asynchronously.
4174
4184
  #
4175
- # <note markdown="1"> If you do use the InvokeAsync action, note that it doesn't support
4185
+ # <note markdown="1"> If you do use the InvokeAsync action, note that
4186
+ # it doesn't support
4176
4187
  # the use of X-Ray active tracing. Trace ID is not propagated to the
4177
4188
  # function, even if X-Ray active tracing is turned on.
4178
4189
  #
@@ -8352,7 +8363,7 @@ module Aws::Lambda
8352
8363
  tracer: tracer
8353
8364
  )
8354
8365
  context[:gem_name] = 'aws-sdk-lambda'
8355
- context[:gem_version] = '1.153.0'
8366
+ context[:gem_version] = '1.155.0'
8356
8367
  Seahorse::Client::Request.new(handlers, context)
8357
8368
  end
8358
8369