aws-sdk-pinpointemail 1.45.0 → 1.47.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: 7a9acbf088bdccedd84d6c43c445270b48c83f7756acc1f63a05c6e595233a8c
4
- data.tar.gz: 17e47ba055fd6141a39cdaade82e789c595f1747f971f12ed2b5dba533aad323
3
+ metadata.gz: bb60bd0eae7e751cf4e0be3ec2bb5d89ae7fdd0c38b661ed0a8ca65e2ba6bcdd
4
+ data.tar.gz: 06200ae162b7087cb1027a3567e2438803cb0a574420f3e7a9612673a06e25d4
5
5
  SHA512:
6
- metadata.gz: ce1a744febf098023d78e19b2237e876c972ea3c5dff8b1a725416c4504f49a11ff95e01efaa6001959ac08f9053c70c3b2915da8280836e812be5e8a501aacb
7
- data.tar.gz: d1b6f2ac31f67ae9becc74d1968ad9a112bb745ff84c58987df08b2bd85f97eb390c44d35f5f0653d772c9299c037f132f675b89bbe1e3b8fd901f5a93a46177
6
+ metadata.gz: 628e38ab85c9f43216a20f817db730a1e93f6f8db5384a6a0b1e6fadf46b5355a6771e1830ae728f810f684d41da07b768f07141618c59b32cb68c27b8a137ab
7
+ data.tar.gz: b5a2b4f1b1951f0a55f2dd8da731522a07729f8bdf0f5bebe9ccbfd5d4fb4e278e91f52d8ed507daecf3a02009631a575f3cffaae8af6b62a05972eecb2eed3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.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.46.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.45.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.47.0
@@ -2316,7 +2316,7 @@ module Aws::PinpointEmail
2316
2316
  params: params,
2317
2317
  config: config)
2318
2318
  context[:gem_name] = 'aws-sdk-pinpointemail'
2319
- context[:gem_version] = '1.45.0'
2319
+ context[:gem_version] = '1.47.0'
2320
2320
  Seahorse::Client::Request.new(handlers, context)
2321
2321
  end
2322
2322
 
@@ -14,6 +14,7 @@ module Aws::PinpointEmail
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::PinpointEmail::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::PinpointEmail
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-pinpointemail/customizations'
52
52
  # @!group service
53
53
  module Aws::PinpointEmail
54
54
 
55
- GEM_VERSION = '1.45.0'
55
+ GEM_VERSION = '1.47.0'
56
56
 
57
57
  end