aws-sdk-cloudwatchevents 1.68.0 → 1.70.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: cc5ef3b7ee0879bda630db5a53caecf2bf91fff514af2189ae753817b13e7bbe
4
- data.tar.gz: 2e407fc7825ed19b0b20e15dd5b21dd5462f2572905483a27826e9c5b1bcac94
3
+ metadata.gz: 15ce82791a19dc823470ddd2d38790f51136e0447fb44523489fc0aa3f1a68c4
4
+ data.tar.gz: 5403beb79d664e757fb83991dd0f4af5746197064dcde91a8637a61675b33661
5
5
  SHA512:
6
- metadata.gz: e5629ba1a99e1183028d4516606ef61276100a9f8d070996bb0b550f4397eb441afd89e70dc9e5f31ecdf4be915a7fffb9af69e07ece9e6ac89681dfe2124c3b
7
- data.tar.gz: a7dd246f12b5cd51e322d5d1b1696444295555a158a21040be8c572d69ddf2da234f4c70dd210aa2bd557b8407b64d58edf694d6db6a8c2f69d05a1ef94db0cc
6
+ metadata.gz: c13f3182b25600ba893cc8104f90c8469415b5ab2f2e74c5d0d6c9527267e11b0a4db163d7eb77b64f621e37311caa34df8f714353d0617ec446bde634a9f7db
7
+ data.tar.gz: 0f0397ff436c974619691f04fb1aa9b4115ceb01969fac6a0fdd3e5da87678bfe9634f3230d17dabb5167ace6b8a9fe081fe2094a4e5d4a76487c1fe2e49e7bb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.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.69.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.68.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -3374,7 +3374,7 @@ module Aws::CloudWatchEvents
3374
3374
  params: params,
3375
3375
  config: config)
3376
3376
  context[:gem_name] = 'aws-sdk-cloudwatchevents'
3377
- context[:gem_version] = '1.68.0'
3377
+ context[:gem_version] = '1.70.0'
3378
3378
  Seahorse::Client::Request.new(handlers, context)
3379
3379
  end
3380
3380
 
@@ -14,6 +14,7 @@ module Aws::CloudWatchEvents
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::CloudWatchEvents::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::CloudWatchEvents
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-cloudwatchevents/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatchEvents
54
54
 
55
- GEM_VERSION = '1.68.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  end