aws-sdk-amplify 1.53.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a76fba50e5e1dbdc9992548068a91e5fa76f74f2c8d0a78179459e591a63c1d
4
- data.tar.gz: 4905272b19cd6183922679ccc3d2accab13dc89b8a11c52020872a8f781bb53b
3
+ metadata.gz: 56d679a294ada2baf90c5d4bb42998438213bd57215bf7a2f1b61ff41fad06ce
4
+ data.tar.gz: 46b75c227b1eda81c9489d553c99bfbad61213e3849e14f39f33c03472170132
5
5
  SHA512:
6
- metadata.gz: 3314e1198748aa62708ec0687b6b8e74706a7aef050e9ca0144608ac1b2c7eb7dcf711ba7313551ccb151c180cea16af62aa5e46187cad19322582091718723a
7
- data.tar.gz: 6955bc8bc08812d10b7dadc118eb402c797d2756fc8ad7113baeee5af92d11ffdec7b3733bbfc725ab12490fa2df52f3c861ef5ab3cf1f260574a37466d4f699
6
+ metadata.gz: b414a1cfbccad7c633767d2c65b4f3560efacdbd631b3ecc06b0fbfd8a34f46fe5eb21d738f3200272ebfc503672aecd5098b23566cac2136f63bf1084a33a6e
7
+ data.tar.gz: 21769c2d0700cff6e2f3872d4caf22132d653201daa728aeb065fe766703bdf56c51d24a0bddca6b6d2b86371d00d68420eb8e35d49b70f3e33ffe32aa202111
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.54.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.53.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.0
1
+ 1.55.0
@@ -2783,7 +2783,7 @@ module Aws::Amplify
2783
2783
  params: params,
2784
2784
  config: config)
2785
2785
  context[:gem_name] = 'aws-sdk-amplify'
2786
- context[:gem_version] = '1.53.0'
2786
+ context[:gem_version] = '1.55.0'
2787
2787
  Seahorse::Client::Request.new(handlers, context)
2788
2788
  end
2789
2789
 
@@ -14,6 +14,7 @@ module Aws::Amplify
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Amplify::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::Amplify
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-amplify/customizations'
52
52
  # @!group service
53
53
  module Aws::Amplify
54
54
 
55
- GEM_VERSION = '1.53.0'
55
+ GEM_VERSION = '1.55.0'
56
56
 
57
57
  end