aws-sdk-cloudwatchevents 1.27.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-cloudwatchevents.rb +3 -1
- data/lib/aws-sdk-cloudwatchevents/client.rb +28 -21
- data/lib/aws-sdk-cloudwatchevents/client_api.rb +2 -0
- data/lib/aws-sdk-cloudwatchevents/customizations.rb +1 -0
- data/lib/aws-sdk-cloudwatchevents/errors.rb +2 -0
- data/lib/aws-sdk-cloudwatchevents/resource.rb +3 -7
- data/lib/aws-sdk-cloudwatchevents/types.rb +78 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a33765186d38fa8c68c7b49ae168f5fa84aa3675316fe8ae5ae8017347940d0b
|
4
|
+
data.tar.gz: 39a4ff0a3ac996447d7a431ed6b12a9f6c66fced390421f9ed7fd357ec6940e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5ac10bfe8f3e3d4372de8f997e13b727ba5d878af699dc25f9c341e4515734460dfc3e5cb5bdcdbfa99f5d3795c647f51737a44ad63713410314f4059e29122
|
7
|
+
data.tar.gz: a2c4551f06e0a143747186f5380c5bdbee09ab0fd4414007850866b380de41f99bdb6644d50921842015d740168e7c401489fa10eea51ea9882671aaf5a69774
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-cloudwatchevents/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::CloudWatchEvents
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.32.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudwatchevents)
|
|
32
35
|
module Aws::CloudWatchEvents
|
33
36
|
# An API client for CloudWatchEvents. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::CloudWatchEvents::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::CloudWatchEvents
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::CloudWatchEvents
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::CloudWatchEvents
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::CloudWatchEvents
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::CloudWatchEvents
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::CloudWatchEvents
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::CloudWatchEvents
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1964,7 +1971,7 @@ module Aws::CloudWatchEvents
|
|
1964
1971
|
params: params,
|
1965
1972
|
config: config)
|
1966
1973
|
context[:gem_name] = 'aws-sdk-cloudwatchevents'
|
1967
|
-
context[:gem_version] = '1.
|
1974
|
+
context[:gem_version] = '1.32.0'
|
1968
1975
|
Seahorse::Client::Request.new(handlers, context)
|
1969
1976
|
end
|
1970
1977
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CloudWatchEvents
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CloudWatchEvents::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CloudWatchEvents::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CloudWatchEvents::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -23,6 +25,7 @@ module Aws::CloudWatchEvents
|
|
23
25
|
#
|
24
26
|
class ActivateEventSourceRequest < Struct.new(
|
25
27
|
:name)
|
28
|
+
SENSITIVE = []
|
26
29
|
include Aws::Structure
|
27
30
|
end
|
28
31
|
|
@@ -63,6 +66,7 @@ module Aws::CloudWatchEvents
|
|
63
66
|
:subnets,
|
64
67
|
:security_groups,
|
65
68
|
:assign_public_ip)
|
69
|
+
SENSITIVE = []
|
66
70
|
include Aws::Structure
|
67
71
|
end
|
68
72
|
|
@@ -87,6 +91,7 @@ module Aws::CloudWatchEvents
|
|
87
91
|
#
|
88
92
|
class BatchArrayProperties < Struct.new(
|
89
93
|
:size)
|
94
|
+
SENSITIVE = []
|
90
95
|
include Aws::Structure
|
91
96
|
end
|
92
97
|
|
@@ -138,6 +143,7 @@ module Aws::CloudWatchEvents
|
|
138
143
|
:job_name,
|
139
144
|
:array_properties,
|
140
145
|
:retry_strategy)
|
146
|
+
SENSITIVE = []
|
141
147
|
include Aws::Structure
|
142
148
|
end
|
143
149
|
|
@@ -161,6 +167,7 @@ module Aws::CloudWatchEvents
|
|
161
167
|
#
|
162
168
|
class BatchRetryStrategy < Struct.new(
|
163
169
|
:attempts)
|
170
|
+
SENSITIVE = []
|
164
171
|
include Aws::Structure
|
165
172
|
end
|
166
173
|
|
@@ -210,6 +217,7 @@ module Aws::CloudWatchEvents
|
|
210
217
|
:type,
|
211
218
|
:key,
|
212
219
|
:value)
|
220
|
+
SENSITIVE = []
|
213
221
|
include Aws::Structure
|
214
222
|
end
|
215
223
|
|
@@ -253,6 +261,7 @@ module Aws::CloudWatchEvents
|
|
253
261
|
:name,
|
254
262
|
:event_source_name,
|
255
263
|
:tags)
|
264
|
+
SENSITIVE = []
|
256
265
|
include Aws::Structure
|
257
266
|
end
|
258
267
|
|
@@ -264,6 +273,7 @@ module Aws::CloudWatchEvents
|
|
264
273
|
#
|
265
274
|
class CreateEventBusResponse < Struct.new(
|
266
275
|
:event_bus_arn)
|
276
|
+
SENSITIVE = []
|
267
277
|
include Aws::Structure
|
268
278
|
end
|
269
279
|
|
@@ -293,6 +303,7 @@ module Aws::CloudWatchEvents
|
|
293
303
|
class CreatePartnerEventSourceRequest < Struct.new(
|
294
304
|
:name,
|
295
305
|
:account)
|
306
|
+
SENSITIVE = []
|
296
307
|
include Aws::Structure
|
297
308
|
end
|
298
309
|
|
@@ -304,6 +315,7 @@ module Aws::CloudWatchEvents
|
|
304
315
|
#
|
305
316
|
class CreatePartnerEventSourceResponse < Struct.new(
|
306
317
|
:event_source_arn)
|
318
|
+
SENSITIVE = []
|
307
319
|
include Aws::Structure
|
308
320
|
end
|
309
321
|
|
@@ -322,6 +334,7 @@ module Aws::CloudWatchEvents
|
|
322
334
|
#
|
323
335
|
class DeactivateEventSourceRequest < Struct.new(
|
324
336
|
:name)
|
337
|
+
SENSITIVE = []
|
325
338
|
include Aws::Structure
|
326
339
|
end
|
327
340
|
|
@@ -340,6 +353,7 @@ module Aws::CloudWatchEvents
|
|
340
353
|
#
|
341
354
|
class DeleteEventBusRequest < Struct.new(
|
342
355
|
:name)
|
356
|
+
SENSITIVE = []
|
343
357
|
include Aws::Structure
|
344
358
|
end
|
345
359
|
|
@@ -365,6 +379,7 @@ module Aws::CloudWatchEvents
|
|
365
379
|
class DeletePartnerEventSourceRequest < Struct.new(
|
366
380
|
:name,
|
367
381
|
:account)
|
382
|
+
SENSITIVE = []
|
368
383
|
include Aws::Structure
|
369
384
|
end
|
370
385
|
|
@@ -400,6 +415,7 @@ module Aws::CloudWatchEvents
|
|
400
415
|
:name,
|
401
416
|
:event_bus_name,
|
402
417
|
:force)
|
418
|
+
SENSITIVE = []
|
403
419
|
include Aws::Structure
|
404
420
|
end
|
405
421
|
|
@@ -419,6 +435,7 @@ module Aws::CloudWatchEvents
|
|
419
435
|
#
|
420
436
|
class DescribeEventBusRequest < Struct.new(
|
421
437
|
:name)
|
438
|
+
SENSITIVE = []
|
422
439
|
include Aws::Structure
|
423
440
|
end
|
424
441
|
|
@@ -442,6 +459,7 @@ module Aws::CloudWatchEvents
|
|
442
459
|
:name,
|
443
460
|
:arn,
|
444
461
|
:policy)
|
462
|
+
SENSITIVE = []
|
445
463
|
include Aws::Structure
|
446
464
|
end
|
447
465
|
|
@@ -460,6 +478,7 @@ module Aws::CloudWatchEvents
|
|
460
478
|
#
|
461
479
|
class DescribeEventSourceRequest < Struct.new(
|
462
480
|
:name)
|
481
|
+
SENSITIVE = []
|
463
482
|
include Aws::Structure
|
464
483
|
end
|
465
484
|
|
@@ -502,6 +521,7 @@ module Aws::CloudWatchEvents
|
|
502
521
|
:expiration_time,
|
503
522
|
:name,
|
504
523
|
:state)
|
524
|
+
SENSITIVE = []
|
505
525
|
include Aws::Structure
|
506
526
|
end
|
507
527
|
|
@@ -520,6 +540,7 @@ module Aws::CloudWatchEvents
|
|
520
540
|
#
|
521
541
|
class DescribePartnerEventSourceRequest < Struct.new(
|
522
542
|
:name)
|
543
|
+
SENSITIVE = []
|
523
544
|
include Aws::Structure
|
524
545
|
end
|
525
546
|
|
@@ -536,6 +557,7 @@ module Aws::CloudWatchEvents
|
|
536
557
|
class DescribePartnerEventSourceResponse < Struct.new(
|
537
558
|
:arn,
|
538
559
|
:name)
|
560
|
+
SENSITIVE = []
|
539
561
|
include Aws::Structure
|
540
562
|
end
|
541
563
|
|
@@ -561,6 +583,7 @@ module Aws::CloudWatchEvents
|
|
561
583
|
class DescribeRuleRequest < Struct.new(
|
562
584
|
:name,
|
563
585
|
:event_bus_name)
|
586
|
+
SENSITIVE = []
|
564
587
|
include Aws::Structure
|
565
588
|
end
|
566
589
|
|
@@ -621,6 +644,7 @@ module Aws::CloudWatchEvents
|
|
621
644
|
:role_arn,
|
622
645
|
:managed_by,
|
623
646
|
:event_bus_name)
|
647
|
+
SENSITIVE = []
|
624
648
|
include Aws::Structure
|
625
649
|
end
|
626
650
|
|
@@ -646,6 +670,7 @@ module Aws::CloudWatchEvents
|
|
646
670
|
class DisableRuleRequest < Struct.new(
|
647
671
|
:name,
|
648
672
|
:event_bus_name)
|
673
|
+
SENSITIVE = []
|
649
674
|
include Aws::Structure
|
650
675
|
end
|
651
676
|
|
@@ -732,6 +757,7 @@ module Aws::CloudWatchEvents
|
|
732
757
|
:network_configuration,
|
733
758
|
:platform_version,
|
734
759
|
:group)
|
760
|
+
SENSITIVE = []
|
735
761
|
include Aws::Structure
|
736
762
|
end
|
737
763
|
|
@@ -757,6 +783,7 @@ module Aws::CloudWatchEvents
|
|
757
783
|
class EnableRuleRequest < Struct.new(
|
758
784
|
:name,
|
759
785
|
:event_bus_name)
|
786
|
+
SENSITIVE = []
|
760
787
|
include Aws::Structure
|
761
788
|
end
|
762
789
|
|
@@ -787,6 +814,7 @@ module Aws::CloudWatchEvents
|
|
787
814
|
:name,
|
788
815
|
:arn,
|
789
816
|
:policy)
|
817
|
+
SENSITIVE = []
|
790
818
|
include Aws::Structure
|
791
819
|
end
|
792
820
|
|
@@ -834,6 +862,7 @@ module Aws::CloudWatchEvents
|
|
834
862
|
:expiration_time,
|
835
863
|
:name,
|
836
864
|
:state)
|
865
|
+
SENSITIVE = []
|
837
866
|
include Aws::Structure
|
838
867
|
end
|
839
868
|
|
@@ -910,6 +939,7 @@ module Aws::CloudWatchEvents
|
|
910
939
|
class InputTransformer < Struct.new(
|
911
940
|
:input_paths_map,
|
912
941
|
:input_template)
|
942
|
+
SENSITIVE = []
|
913
943
|
include Aws::Structure
|
914
944
|
end
|
915
945
|
|
@@ -958,6 +988,7 @@ module Aws::CloudWatchEvents
|
|
958
988
|
#
|
959
989
|
class KinesisParameters < Struct.new(
|
960
990
|
:partition_key_path)
|
991
|
+
SENSITIVE = []
|
961
992
|
include Aws::Structure
|
962
993
|
end
|
963
994
|
|
@@ -999,6 +1030,7 @@ module Aws::CloudWatchEvents
|
|
999
1030
|
:name_prefix,
|
1000
1031
|
:next_token,
|
1001
1032
|
:limit)
|
1033
|
+
SENSITIVE = []
|
1002
1034
|
include Aws::Structure
|
1003
1035
|
end
|
1004
1036
|
|
@@ -1016,6 +1048,7 @@ module Aws::CloudWatchEvents
|
|
1016
1048
|
class ListEventBusesResponse < Struct.new(
|
1017
1049
|
:event_buses,
|
1018
1050
|
:next_token)
|
1051
|
+
SENSITIVE = []
|
1019
1052
|
include Aws::Structure
|
1020
1053
|
end
|
1021
1054
|
|
@@ -1050,6 +1083,7 @@ module Aws::CloudWatchEvents
|
|
1050
1083
|
:name_prefix,
|
1051
1084
|
:next_token,
|
1052
1085
|
:limit)
|
1086
|
+
SENSITIVE = []
|
1053
1087
|
include Aws::Structure
|
1054
1088
|
end
|
1055
1089
|
|
@@ -1067,6 +1101,7 @@ module Aws::CloudWatchEvents
|
|
1067
1101
|
class ListEventSourcesResponse < Struct.new(
|
1068
1102
|
:event_sources,
|
1069
1103
|
:next_token)
|
1104
|
+
SENSITIVE = []
|
1070
1105
|
include Aws::Structure
|
1071
1106
|
end
|
1072
1107
|
|
@@ -1101,6 +1136,7 @@ module Aws::CloudWatchEvents
|
|
1101
1136
|
:event_source_name,
|
1102
1137
|
:next_token,
|
1103
1138
|
:limit)
|
1139
|
+
SENSITIVE = []
|
1104
1140
|
include Aws::Structure
|
1105
1141
|
end
|
1106
1142
|
|
@@ -1118,6 +1154,7 @@ module Aws::CloudWatchEvents
|
|
1118
1154
|
class ListPartnerEventSourceAccountsResponse < Struct.new(
|
1119
1155
|
:partner_event_source_accounts,
|
1120
1156
|
:next_token)
|
1157
|
+
SENSITIVE = []
|
1121
1158
|
include Aws::Structure
|
1122
1159
|
end
|
1123
1160
|
|
@@ -1152,6 +1189,7 @@ module Aws::CloudWatchEvents
|
|
1152
1189
|
:name_prefix,
|
1153
1190
|
:next_token,
|
1154
1191
|
:limit)
|
1192
|
+
SENSITIVE = []
|
1155
1193
|
include Aws::Structure
|
1156
1194
|
end
|
1157
1195
|
|
@@ -1169,6 +1207,7 @@ module Aws::CloudWatchEvents
|
|
1169
1207
|
class ListPartnerEventSourcesResponse < Struct.new(
|
1170
1208
|
:partner_event_sources,
|
1171
1209
|
:next_token)
|
1210
|
+
SENSITIVE = []
|
1172
1211
|
include Aws::Structure
|
1173
1212
|
end
|
1174
1213
|
|
@@ -1207,6 +1246,7 @@ module Aws::CloudWatchEvents
|
|
1207
1246
|
:event_bus_name,
|
1208
1247
|
:next_token,
|
1209
1248
|
:limit)
|
1249
|
+
SENSITIVE = []
|
1210
1250
|
include Aws::Structure
|
1211
1251
|
end
|
1212
1252
|
|
@@ -1224,6 +1264,7 @@ module Aws::CloudWatchEvents
|
|
1224
1264
|
class ListRuleNamesByTargetResponse < Struct.new(
|
1225
1265
|
:rule_names,
|
1226
1266
|
:next_token)
|
1267
|
+
SENSITIVE = []
|
1227
1268
|
include Aws::Structure
|
1228
1269
|
end
|
1229
1270
|
|
@@ -1262,6 +1303,7 @@ module Aws::CloudWatchEvents
|
|
1262
1303
|
:event_bus_name,
|
1263
1304
|
:next_token,
|
1264
1305
|
:limit)
|
1306
|
+
SENSITIVE = []
|
1265
1307
|
include Aws::Structure
|
1266
1308
|
end
|
1267
1309
|
|
@@ -1279,6 +1321,7 @@ module Aws::CloudWatchEvents
|
|
1279
1321
|
class ListRulesResponse < Struct.new(
|
1280
1322
|
:rules,
|
1281
1323
|
:next_token)
|
1324
|
+
SENSITIVE = []
|
1282
1325
|
include Aws::Structure
|
1283
1326
|
end
|
1284
1327
|
|
@@ -1297,6 +1340,7 @@ module Aws::CloudWatchEvents
|
|
1297
1340
|
#
|
1298
1341
|
class ListTagsForResourceRequest < Struct.new(
|
1299
1342
|
:resource_arn)
|
1343
|
+
SENSITIVE = []
|
1300
1344
|
include Aws::Structure
|
1301
1345
|
end
|
1302
1346
|
|
@@ -1309,6 +1353,7 @@ module Aws::CloudWatchEvents
|
|
1309
1353
|
#
|
1310
1354
|
class ListTagsForResourceResponse < Struct.new(
|
1311
1355
|
:tags)
|
1356
|
+
SENSITIVE = []
|
1312
1357
|
include Aws::Structure
|
1313
1358
|
end
|
1314
1359
|
|
@@ -1347,6 +1392,7 @@ module Aws::CloudWatchEvents
|
|
1347
1392
|
:event_bus_name,
|
1348
1393
|
:next_token,
|
1349
1394
|
:limit)
|
1395
|
+
SENSITIVE = []
|
1350
1396
|
include Aws::Structure
|
1351
1397
|
end
|
1352
1398
|
|
@@ -1364,6 +1410,7 @@ module Aws::CloudWatchEvents
|
|
1364
1410
|
class ListTargetsByRuleResponse < Struct.new(
|
1365
1411
|
:targets,
|
1366
1412
|
:next_token)
|
1413
|
+
SENSITIVE = []
|
1367
1414
|
include Aws::Structure
|
1368
1415
|
end
|
1369
1416
|
|
@@ -1403,6 +1450,7 @@ module Aws::CloudWatchEvents
|
|
1403
1450
|
#
|
1404
1451
|
class NetworkConfiguration < Struct.new(
|
1405
1452
|
:awsvpc_configuration)
|
1453
|
+
SENSITIVE = []
|
1406
1454
|
include Aws::Structure
|
1407
1455
|
end
|
1408
1456
|
|
@@ -1424,6 +1472,7 @@ module Aws::CloudWatchEvents
|
|
1424
1472
|
class PartnerEventSource < Struct.new(
|
1425
1473
|
:arn,
|
1426
1474
|
:name)
|
1475
|
+
SENSITIVE = []
|
1427
1476
|
include Aws::Structure
|
1428
1477
|
end
|
1429
1478
|
|
@@ -1458,6 +1507,7 @@ module Aws::CloudWatchEvents
|
|
1458
1507
|
:creation_time,
|
1459
1508
|
:expiration_time,
|
1460
1509
|
:state)
|
1510
|
+
SENSITIVE = []
|
1461
1511
|
include Aws::Structure
|
1462
1512
|
end
|
1463
1513
|
|
@@ -1494,6 +1544,7 @@ module Aws::CloudWatchEvents
|
|
1494
1544
|
#
|
1495
1545
|
class PutEventsRequest < Struct.new(
|
1496
1546
|
:entries)
|
1547
|
+
SENSITIVE = []
|
1497
1548
|
include Aws::Structure
|
1498
1549
|
end
|
1499
1550
|
|
@@ -1554,6 +1605,7 @@ module Aws::CloudWatchEvents
|
|
1554
1605
|
:detail_type,
|
1555
1606
|
:detail,
|
1556
1607
|
:event_bus_name)
|
1608
|
+
SENSITIVE = []
|
1557
1609
|
include Aws::Structure
|
1558
1610
|
end
|
1559
1611
|
|
@@ -1573,6 +1625,7 @@ module Aws::CloudWatchEvents
|
|
1573
1625
|
class PutEventsResponse < Struct.new(
|
1574
1626
|
:failed_entry_count,
|
1575
1627
|
:entries)
|
1628
|
+
SENSITIVE = []
|
1576
1629
|
include Aws::Structure
|
1577
1630
|
end
|
1578
1631
|
|
@@ -1596,6 +1649,7 @@ module Aws::CloudWatchEvents
|
|
1596
1649
|
:event_id,
|
1597
1650
|
:error_code,
|
1598
1651
|
:error_message)
|
1652
|
+
SENSITIVE = []
|
1599
1653
|
include Aws::Structure
|
1600
1654
|
end
|
1601
1655
|
|
@@ -1622,6 +1676,7 @@ module Aws::CloudWatchEvents
|
|
1622
1676
|
#
|
1623
1677
|
class PutPartnerEventsRequest < Struct.new(
|
1624
1678
|
:entries)
|
1679
|
+
SENSITIVE = []
|
1625
1680
|
include Aws::Structure
|
1626
1681
|
end
|
1627
1682
|
|
@@ -1670,6 +1725,7 @@ module Aws::CloudWatchEvents
|
|
1670
1725
|
:resources,
|
1671
1726
|
:detail_type,
|
1672
1727
|
:detail)
|
1728
|
+
SENSITIVE = []
|
1673
1729
|
include Aws::Structure
|
1674
1730
|
end
|
1675
1731
|
|
@@ -1688,6 +1744,7 @@ module Aws::CloudWatchEvents
|
|
1688
1744
|
class PutPartnerEventsResponse < Struct.new(
|
1689
1745
|
:failed_entry_count,
|
1690
1746
|
:entries)
|
1747
|
+
SENSITIVE = []
|
1691
1748
|
include Aws::Structure
|
1692
1749
|
end
|
1693
1750
|
|
@@ -1711,6 +1768,7 @@ module Aws::CloudWatchEvents
|
|
1711
1768
|
:event_id,
|
1712
1769
|
:error_code,
|
1713
1770
|
:error_message)
|
1771
|
+
SENSITIVE = []
|
1714
1772
|
include Aws::Structure
|
1715
1773
|
end
|
1716
1774
|
|
@@ -1786,6 +1844,7 @@ module Aws::CloudWatchEvents
|
|
1786
1844
|
:principal,
|
1787
1845
|
:statement_id,
|
1788
1846
|
:condition)
|
1847
|
+
SENSITIVE = []
|
1789
1848
|
include Aws::Structure
|
1790
1849
|
end
|
1791
1850
|
|
@@ -1859,6 +1918,7 @@ module Aws::CloudWatchEvents
|
|
1859
1918
|
:role_arn,
|
1860
1919
|
:tags,
|
1861
1920
|
:event_bus_name)
|
1921
|
+
SENSITIVE = []
|
1862
1922
|
include Aws::Structure
|
1863
1923
|
end
|
1864
1924
|
|
@@ -1870,6 +1930,7 @@ module Aws::CloudWatchEvents
|
|
1870
1930
|
#
|
1871
1931
|
class PutRuleResponse < Struct.new(
|
1872
1932
|
:rule_arn)
|
1933
|
+
SENSITIVE = []
|
1873
1934
|
include Aws::Structure
|
1874
1935
|
end
|
1875
1936
|
|
@@ -1953,6 +2014,7 @@ module Aws::CloudWatchEvents
|
|
1953
2014
|
:rule,
|
1954
2015
|
:event_bus_name,
|
1955
2016
|
:targets)
|
2017
|
+
SENSITIVE = []
|
1956
2018
|
include Aws::Structure
|
1957
2019
|
end
|
1958
2020
|
|
@@ -1969,6 +2031,7 @@ module Aws::CloudWatchEvents
|
|
1969
2031
|
class PutTargetsResponse < Struct.new(
|
1970
2032
|
:failed_entry_count,
|
1971
2033
|
:failed_entries)
|
2034
|
+
SENSITIVE = []
|
1972
2035
|
include Aws::Structure
|
1973
2036
|
end
|
1974
2037
|
|
@@ -1994,6 +2057,7 @@ module Aws::CloudWatchEvents
|
|
1994
2057
|
:target_id,
|
1995
2058
|
:error_code,
|
1996
2059
|
:error_message)
|
2060
|
+
SENSITIVE = []
|
1997
2061
|
include Aws::Structure
|
1998
2062
|
end
|
1999
2063
|
|
@@ -2020,6 +2084,7 @@ module Aws::CloudWatchEvents
|
|
2020
2084
|
class RemovePermissionRequest < Struct.new(
|
2021
2085
|
:statement_id,
|
2022
2086
|
:event_bus_name)
|
2087
|
+
SENSITIVE = []
|
2023
2088
|
include Aws::Structure
|
2024
2089
|
end
|
2025
2090
|
|
@@ -2060,6 +2125,7 @@ module Aws::CloudWatchEvents
|
|
2060
2125
|
:event_bus_name,
|
2061
2126
|
:ids,
|
2062
2127
|
:force)
|
2128
|
+
SENSITIVE = []
|
2063
2129
|
include Aws::Structure
|
2064
2130
|
end
|
2065
2131
|
|
@@ -2076,6 +2142,7 @@ module Aws::CloudWatchEvents
|
|
2076
2142
|
class RemoveTargetsResponse < Struct.new(
|
2077
2143
|
:failed_entry_count,
|
2078
2144
|
:failed_entries)
|
2145
|
+
SENSITIVE = []
|
2079
2146
|
include Aws::Structure
|
2080
2147
|
end
|
2081
2148
|
|
@@ -2101,6 +2168,7 @@ module Aws::CloudWatchEvents
|
|
2101
2168
|
:target_id,
|
2102
2169
|
:error_code,
|
2103
2170
|
:error_message)
|
2171
|
+
SENSITIVE = []
|
2104
2172
|
include Aws::Structure
|
2105
2173
|
end
|
2106
2174
|
|
@@ -2175,6 +2243,7 @@ module Aws::CloudWatchEvents
|
|
2175
2243
|
:role_arn,
|
2176
2244
|
:managed_by,
|
2177
2245
|
:event_bus_name)
|
2246
|
+
SENSITIVE = []
|
2178
2247
|
include Aws::Structure
|
2179
2248
|
end
|
2180
2249
|
|
@@ -2202,6 +2271,7 @@ module Aws::CloudWatchEvents
|
|
2202
2271
|
#
|
2203
2272
|
class RunCommandParameters < Struct.new(
|
2204
2273
|
:run_command_targets)
|
2274
|
+
SENSITIVE = []
|
2205
2275
|
include Aws::Structure
|
2206
2276
|
end
|
2207
2277
|
|
@@ -2232,6 +2302,7 @@ module Aws::CloudWatchEvents
|
|
2232
2302
|
class RunCommandTarget < Struct.new(
|
2233
2303
|
:key,
|
2234
2304
|
:values)
|
2305
|
+
SENSITIVE = []
|
2235
2306
|
include Aws::Structure
|
2236
2307
|
end
|
2237
2308
|
|
@@ -2253,6 +2324,7 @@ module Aws::CloudWatchEvents
|
|
2253
2324
|
#
|
2254
2325
|
class SqsParameters < Struct.new(
|
2255
2326
|
:message_group_id)
|
2327
|
+
SENSITIVE = []
|
2256
2328
|
include Aws::Structure
|
2257
2329
|
end
|
2258
2330
|
|
@@ -2281,6 +2353,7 @@ module Aws::CloudWatchEvents
|
|
2281
2353
|
class Tag < Struct.new(
|
2282
2354
|
:key,
|
2283
2355
|
:value)
|
2356
|
+
SENSITIVE = []
|
2284
2357
|
include Aws::Structure
|
2285
2358
|
end
|
2286
2359
|
|
@@ -2310,6 +2383,7 @@ module Aws::CloudWatchEvents
|
|
2310
2383
|
class TagResourceRequest < Struct.new(
|
2311
2384
|
:resource_arn,
|
2312
2385
|
:tags)
|
2386
|
+
SENSITIVE = []
|
2313
2387
|
include Aws::Structure
|
2314
2388
|
end
|
2315
2389
|
|
@@ -2483,6 +2557,7 @@ module Aws::CloudWatchEvents
|
|
2483
2557
|
:ecs_parameters,
|
2484
2558
|
:batch_parameters,
|
2485
2559
|
:sqs_parameters)
|
2560
|
+
SENSITIVE = []
|
2486
2561
|
include Aws::Structure
|
2487
2562
|
end
|
2488
2563
|
|
@@ -2512,6 +2587,7 @@ module Aws::CloudWatchEvents
|
|
2512
2587
|
class TestEventPatternRequest < Struct.new(
|
2513
2588
|
:event_pattern,
|
2514
2589
|
:event)
|
2590
|
+
SENSITIVE = []
|
2515
2591
|
include Aws::Structure
|
2516
2592
|
end
|
2517
2593
|
|
@@ -2523,6 +2599,7 @@ module Aws::CloudWatchEvents
|
|
2523
2599
|
#
|
2524
2600
|
class TestEventPatternResponse < Struct.new(
|
2525
2601
|
:result)
|
2602
|
+
SENSITIVE = []
|
2526
2603
|
include Aws::Structure
|
2527
2604
|
end
|
2528
2605
|
|
@@ -2548,6 +2625,7 @@ module Aws::CloudWatchEvents
|
|
2548
2625
|
class UntagResourceRequest < Struct.new(
|
2549
2626
|
:resource_arn,
|
2550
2627
|
:tag_keys)
|
2628
|
+
SENSITIVE = []
|
2551
2629
|
include Aws::Structure
|
2552
2630
|
end
|
2553
2631
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatchevents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon CloudWatch Events
|