aws-sdk-eventbridge 1.56.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1140 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module EventBridge
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#activate_event_source-instance_method
77
+ def activate_event_source: (
78
+ name: ::String
79
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
80
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
81
+
82
+ interface _CancelReplayResponseSuccess
83
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelReplayResponse]
84
+ def replay_arn: () -> ::String
85
+ def state: () -> ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
86
+ def state_reason: () -> ::String
87
+ end
88
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#cancel_replay-instance_method
89
+ def cancel_replay: (
90
+ replay_name: ::String
91
+ ) -> _CancelReplayResponseSuccess
92
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelReplayResponseSuccess
93
+
94
+ interface _CreateApiDestinationResponseSuccess
95
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiDestinationResponse]
96
+ def api_destination_arn: () -> ::String
97
+ def api_destination_state: () -> ("ACTIVE" | "INACTIVE")
98
+ def creation_time: () -> ::Time
99
+ def last_modified_time: () -> ::Time
100
+ end
101
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_api_destination-instance_method
102
+ def create_api_destination: (
103
+ name: ::String,
104
+ ?description: ::String,
105
+ connection_arn: ::String,
106
+ invocation_endpoint: ::String,
107
+ http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE"),
108
+ ?invocation_rate_limit_per_second: ::Integer
109
+ ) -> _CreateApiDestinationResponseSuccess
110
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiDestinationResponseSuccess
111
+
112
+ interface _CreateArchiveResponseSuccess
113
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateArchiveResponse]
114
+ def archive_arn: () -> ::String
115
+ def state: () -> ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
116
+ def state_reason: () -> ::String
117
+ def creation_time: () -> ::Time
118
+ end
119
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_archive-instance_method
120
+ def create_archive: (
121
+ archive_name: ::String,
122
+ event_source_arn: ::String,
123
+ ?description: ::String,
124
+ ?event_pattern: ::String,
125
+ ?retention_days: ::Integer
126
+ ) -> _CreateArchiveResponseSuccess
127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateArchiveResponseSuccess
128
+
129
+ interface _CreateConnectionResponseSuccess
130
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
131
+ def connection_arn: () -> ::String
132
+ def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
133
+ def creation_time: () -> ::Time
134
+ def last_modified_time: () -> ::Time
135
+ end
136
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_connection-instance_method
137
+ def create_connection: (
138
+ name: ::String,
139
+ ?description: ::String,
140
+ authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY"),
141
+ auth_parameters: {
142
+ basic_auth_parameters: {
143
+ username: ::String,
144
+ password: ::String
145
+ }?,
146
+ o_auth_parameters: {
147
+ client_parameters: {
148
+ client_id: ::String,
149
+ client_secret: ::String
150
+ },
151
+ authorization_endpoint: ::String,
152
+ http_method: ("GET" | "POST" | "PUT"),
153
+ o_auth_http_parameters: {
154
+ header_parameters: Array[
155
+ {
156
+ key: ::String?,
157
+ value: ::String?,
158
+ is_value_secret: bool?
159
+ },
160
+ ]?,
161
+ query_string_parameters: Array[
162
+ {
163
+ key: ::String?,
164
+ value: ::String?,
165
+ is_value_secret: bool?
166
+ },
167
+ ]?,
168
+ body_parameters: Array[
169
+ {
170
+ key: ::String?,
171
+ value: ::String?,
172
+ is_value_secret: bool?
173
+ },
174
+ ]?
175
+ }?
176
+ }?,
177
+ api_key_auth_parameters: {
178
+ api_key_name: ::String,
179
+ api_key_value: ::String
180
+ }?,
181
+ invocation_http_parameters: {
182
+ header_parameters: Array[
183
+ {
184
+ key: ::String?,
185
+ value: ::String?,
186
+ is_value_secret: bool?
187
+ },
188
+ ]?,
189
+ query_string_parameters: Array[
190
+ {
191
+ key: ::String?,
192
+ value: ::String?,
193
+ is_value_secret: bool?
194
+ },
195
+ ]?,
196
+ body_parameters: Array[
197
+ {
198
+ key: ::String?,
199
+ value: ::String?,
200
+ is_value_secret: bool?
201
+ },
202
+ ]?
203
+ }?
204
+ }
205
+ ) -> _CreateConnectionResponseSuccess
206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
207
+
208
+ interface _CreateEndpointResponseSuccess
209
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEndpointResponse]
210
+ def name: () -> ::String
211
+ def arn: () -> ::String
212
+ def routing_config: () -> Types::RoutingConfig
213
+ def replication_config: () -> Types::ReplicationConfig
214
+ def event_buses: () -> ::Array[Types::EndpointEventBus]
215
+ def role_arn: () -> ::String
216
+ def state: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_endpoint-instance_method
219
+ def create_endpoint: (
220
+ name: ::String,
221
+ ?description: ::String,
222
+ routing_config: {
223
+ failover_config: {
224
+ primary: {
225
+ health_check: ::String
226
+ },
227
+ secondary: {
228
+ route: ::String
229
+ }
230
+ }
231
+ },
232
+ ?replication_config: {
233
+ state: ("ENABLED" | "DISABLED")?
234
+ },
235
+ event_buses: Array[
236
+ {
237
+ event_bus_arn: ::String
238
+ },
239
+ ],
240
+ ?role_arn: ::String
241
+ ) -> _CreateEndpointResponseSuccess
242
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEndpointResponseSuccess
243
+
244
+ interface _CreateEventBusResponseSuccess
245
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventBusResponse]
246
+ def event_bus_arn: () -> ::String
247
+ end
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_event_bus-instance_method
249
+ def create_event_bus: (
250
+ name: ::String,
251
+ ?event_source_name: ::String,
252
+ ?tags: Array[
253
+ {
254
+ key: ::String,
255
+ value: ::String
256
+ },
257
+ ]
258
+ ) -> _CreateEventBusResponseSuccess
259
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventBusResponseSuccess
260
+
261
+ interface _CreatePartnerEventSourceResponseSuccess
262
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePartnerEventSourceResponse]
263
+ def event_source_arn: () -> ::String
264
+ end
265
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_partner_event_source-instance_method
266
+ def create_partner_event_source: (
267
+ name: ::String,
268
+ account: ::String
269
+ ) -> _CreatePartnerEventSourceResponseSuccess
270
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePartnerEventSourceResponseSuccess
271
+
272
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#deactivate_event_source-instance_method
273
+ def deactivate_event_source: (
274
+ name: ::String
275
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
276
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
277
+
278
+ interface _DeauthorizeConnectionResponseSuccess
279
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeauthorizeConnectionResponse]
280
+ def connection_arn: () -> ::String
281
+ def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
282
+ def creation_time: () -> ::Time
283
+ def last_modified_time: () -> ::Time
284
+ def last_authorized_time: () -> ::Time
285
+ end
286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#deauthorize_connection-instance_method
287
+ def deauthorize_connection: (
288
+ name: ::String
289
+ ) -> _DeauthorizeConnectionResponseSuccess
290
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeauthorizeConnectionResponseSuccess
291
+
292
+ interface _DeleteApiDestinationResponseSuccess
293
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApiDestinationResponse]
294
+ end
295
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_api_destination-instance_method
296
+ def delete_api_destination: (
297
+ name: ::String
298
+ ) -> _DeleteApiDestinationResponseSuccess
299
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApiDestinationResponseSuccess
300
+
301
+ interface _DeleteArchiveResponseSuccess
302
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteArchiveResponse]
303
+ end
304
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_archive-instance_method
305
+ def delete_archive: (
306
+ archive_name: ::String
307
+ ) -> _DeleteArchiveResponseSuccess
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteArchiveResponseSuccess
309
+
310
+ interface _DeleteConnectionResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
312
+ def connection_arn: () -> ::String
313
+ def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
314
+ def creation_time: () -> ::Time
315
+ def last_modified_time: () -> ::Time
316
+ def last_authorized_time: () -> ::Time
317
+ end
318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_connection-instance_method
319
+ def delete_connection: (
320
+ name: ::String
321
+ ) -> _DeleteConnectionResponseSuccess
322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
323
+
324
+ interface _DeleteEndpointResponseSuccess
325
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEndpointResponse]
326
+ end
327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_endpoint-instance_method
328
+ def delete_endpoint: (
329
+ name: ::String
330
+ ) -> _DeleteEndpointResponseSuccess
331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEndpointResponseSuccess
332
+
333
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_event_bus-instance_method
334
+ def delete_event_bus: (
335
+ name: ::String
336
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
337
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
338
+
339
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_partner_event_source-instance_method
340
+ def delete_partner_event_source: (
341
+ name: ::String,
342
+ account: ::String
343
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
+
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#delete_rule-instance_method
347
+ def delete_rule: (
348
+ name: ::String,
349
+ ?event_bus_name: ::String,
350
+ ?force: bool
351
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
353
+
354
+ interface _DescribeApiDestinationResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApiDestinationResponse]
356
+ def api_destination_arn: () -> ::String
357
+ def name: () -> ::String
358
+ def description: () -> ::String
359
+ def api_destination_state: () -> ("ACTIVE" | "INACTIVE")
360
+ def connection_arn: () -> ::String
361
+ def invocation_endpoint: () -> ::String
362
+ def http_method: () -> ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE")
363
+ def invocation_rate_limit_per_second: () -> ::Integer
364
+ def creation_time: () -> ::Time
365
+ def last_modified_time: () -> ::Time
366
+ end
367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_api_destination-instance_method
368
+ def describe_api_destination: (
369
+ name: ::String
370
+ ) -> _DescribeApiDestinationResponseSuccess
371
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApiDestinationResponseSuccess
372
+
373
+ interface _DescribeArchiveResponseSuccess
374
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeArchiveResponse]
375
+ def archive_arn: () -> ::String
376
+ def archive_name: () -> ::String
377
+ def event_source_arn: () -> ::String
378
+ def description: () -> ::String
379
+ def event_pattern: () -> ::String
380
+ def state: () -> ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
381
+ def state_reason: () -> ::String
382
+ def retention_days: () -> ::Integer
383
+ def size_bytes: () -> ::Integer
384
+ def event_count: () -> ::Integer
385
+ def creation_time: () -> ::Time
386
+ end
387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_archive-instance_method
388
+ def describe_archive: (
389
+ archive_name: ::String
390
+ ) -> _DescribeArchiveResponseSuccess
391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeArchiveResponseSuccess
392
+
393
+ interface _DescribeConnectionResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectionResponse]
395
+ def connection_arn: () -> ::String
396
+ def name: () -> ::String
397
+ def description: () -> ::String
398
+ def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
399
+ def state_reason: () -> ::String
400
+ def authorization_type: () -> ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
401
+ def secret_arn: () -> ::String
402
+ def auth_parameters: () -> Types::ConnectionAuthResponseParameters
403
+ def creation_time: () -> ::Time
404
+ def last_modified_time: () -> ::Time
405
+ def last_authorized_time: () -> ::Time
406
+ end
407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_connection-instance_method
408
+ def describe_connection: (
409
+ name: ::String
410
+ ) -> _DescribeConnectionResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionResponseSuccess
412
+
413
+ interface _DescribeEndpointResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEndpointResponse]
415
+ def name: () -> ::String
416
+ def description: () -> ::String
417
+ def arn: () -> ::String
418
+ def routing_config: () -> Types::RoutingConfig
419
+ def replication_config: () -> Types::ReplicationConfig
420
+ def event_buses: () -> ::Array[Types::EndpointEventBus]
421
+ def role_arn: () -> ::String
422
+ def endpoint_id: () -> ::String
423
+ def endpoint_url: () -> ::String
424
+ def state: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
425
+ def state_reason: () -> ::String
426
+ def creation_time: () -> ::Time
427
+ def last_modified_time: () -> ::Time
428
+ end
429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_endpoint-instance_method
430
+ def describe_endpoint: (
431
+ name: ::String,
432
+ ?home_region: ::String
433
+ ) -> _DescribeEndpointResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEndpointResponseSuccess
435
+
436
+ interface _DescribeEventBusResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventBusResponse]
438
+ def name: () -> ::String
439
+ def arn: () -> ::String
440
+ def policy: () -> ::String
441
+ end
442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_event_bus-instance_method
443
+ def describe_event_bus: (
444
+ ?name: ::String
445
+ ) -> _DescribeEventBusResponseSuccess
446
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventBusResponseSuccess
447
+
448
+ interface _DescribeEventSourceResponseSuccess
449
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventSourceResponse]
450
+ def arn: () -> ::String
451
+ def created_by: () -> ::String
452
+ def creation_time: () -> ::Time
453
+ def expiration_time: () -> ::Time
454
+ def name: () -> ::String
455
+ def state: () -> ("PENDING" | "ACTIVE" | "DELETED")
456
+ end
457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_event_source-instance_method
458
+ def describe_event_source: (
459
+ name: ::String
460
+ ) -> _DescribeEventSourceResponseSuccess
461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventSourceResponseSuccess
462
+
463
+ interface _DescribePartnerEventSourceResponseSuccess
464
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePartnerEventSourceResponse]
465
+ def arn: () -> ::String
466
+ def name: () -> ::String
467
+ end
468
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_partner_event_source-instance_method
469
+ def describe_partner_event_source: (
470
+ name: ::String
471
+ ) -> _DescribePartnerEventSourceResponseSuccess
472
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePartnerEventSourceResponseSuccess
473
+
474
+ interface _DescribeReplayResponseSuccess
475
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplayResponse]
476
+ def replay_name: () -> ::String
477
+ def replay_arn: () -> ::String
478
+ def description: () -> ::String
479
+ def state: () -> ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
480
+ def state_reason: () -> ::String
481
+ def event_source_arn: () -> ::String
482
+ def destination: () -> Types::ReplayDestination
483
+ def event_start_time: () -> ::Time
484
+ def event_end_time: () -> ::Time
485
+ def event_last_replayed_time: () -> ::Time
486
+ def replay_start_time: () -> ::Time
487
+ def replay_end_time: () -> ::Time
488
+ end
489
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_replay-instance_method
490
+ def describe_replay: (
491
+ replay_name: ::String
492
+ ) -> _DescribeReplayResponseSuccess
493
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplayResponseSuccess
494
+
495
+ interface _DescribeRuleResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRuleResponse]
497
+ def name: () -> ::String
498
+ def arn: () -> ::String
499
+ def event_pattern: () -> ::String
500
+ def schedule_expression: () -> ::String
501
+ def state: () -> ("ENABLED" | "DISABLED" | "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS")
502
+ def description: () -> ::String
503
+ def role_arn: () -> ::String
504
+ def managed_by: () -> ::String
505
+ def event_bus_name: () -> ::String
506
+ def created_by: () -> ::String
507
+ end
508
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_rule-instance_method
509
+ def describe_rule: (
510
+ name: ::String,
511
+ ?event_bus_name: ::String
512
+ ) -> _DescribeRuleResponseSuccess
513
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRuleResponseSuccess
514
+
515
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#disable_rule-instance_method
516
+ def disable_rule: (
517
+ name: ::String,
518
+ ?event_bus_name: ::String
519
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
521
+
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#enable_rule-instance_method
523
+ def enable_rule: (
524
+ name: ::String,
525
+ ?event_bus_name: ::String
526
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
527
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
528
+
529
+ interface _ListApiDestinationsResponseSuccess
530
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApiDestinationsResponse]
531
+ def api_destinations: () -> ::Array[Types::ApiDestination]
532
+ def next_token: () -> ::String
533
+ end
534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_api_destinations-instance_method
535
+ def list_api_destinations: (
536
+ ?name_prefix: ::String,
537
+ ?connection_arn: ::String,
538
+ ?next_token: ::String,
539
+ ?limit: ::Integer
540
+ ) -> _ListApiDestinationsResponseSuccess
541
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApiDestinationsResponseSuccess
542
+
543
+ interface _ListArchivesResponseSuccess
544
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListArchivesResponse]
545
+ def archives: () -> ::Array[Types::Archive]
546
+ def next_token: () -> ::String
547
+ end
548
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_archives-instance_method
549
+ def list_archives: (
550
+ ?name_prefix: ::String,
551
+ ?event_source_arn: ::String,
552
+ ?state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED"),
553
+ ?next_token: ::String,
554
+ ?limit: ::Integer
555
+ ) -> _ListArchivesResponseSuccess
556
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListArchivesResponseSuccess
557
+
558
+ interface _ListConnectionsResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionsResponse]
560
+ def connections: () -> ::Array[Types::Connection]
561
+ def next_token: () -> ::String
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_connections-instance_method
564
+ def list_connections: (
565
+ ?name_prefix: ::String,
566
+ ?connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING"),
567
+ ?next_token: ::String,
568
+ ?limit: ::Integer
569
+ ) -> _ListConnectionsResponseSuccess
570
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
571
+
572
+ interface _ListEndpointsResponseSuccess
573
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEndpointsResponse]
574
+ def endpoints: () -> ::Array[Types::Endpoint]
575
+ def next_token: () -> ::String
576
+ end
577
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_endpoints-instance_method
578
+ def list_endpoints: (
579
+ ?name_prefix: ::String,
580
+ ?home_region: ::String,
581
+ ?next_token: ::String,
582
+ ?max_results: ::Integer
583
+ ) -> _ListEndpointsResponseSuccess
584
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEndpointsResponseSuccess
585
+
586
+ interface _ListEventBusesResponseSuccess
587
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventBusesResponse]
588
+ def event_buses: () -> ::Array[Types::EventBus]
589
+ def next_token: () -> ::String
590
+ end
591
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_event_buses-instance_method
592
+ def list_event_buses: (
593
+ ?name_prefix: ::String,
594
+ ?next_token: ::String,
595
+ ?limit: ::Integer
596
+ ) -> _ListEventBusesResponseSuccess
597
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventBusesResponseSuccess
598
+
599
+ interface _ListEventSourcesResponseSuccess
600
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventSourcesResponse]
601
+ def event_sources: () -> ::Array[Types::EventSource]
602
+ def next_token: () -> ::String
603
+ end
604
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_event_sources-instance_method
605
+ def list_event_sources: (
606
+ ?name_prefix: ::String,
607
+ ?next_token: ::String,
608
+ ?limit: ::Integer
609
+ ) -> _ListEventSourcesResponseSuccess
610
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventSourcesResponseSuccess
611
+
612
+ interface _ListPartnerEventSourceAccountsResponseSuccess
613
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPartnerEventSourceAccountsResponse]
614
+ def partner_event_source_accounts: () -> ::Array[Types::PartnerEventSourceAccount]
615
+ def next_token: () -> ::String
616
+ end
617
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_partner_event_source_accounts-instance_method
618
+ def list_partner_event_source_accounts: (
619
+ event_source_name: ::String,
620
+ ?next_token: ::String,
621
+ ?limit: ::Integer
622
+ ) -> _ListPartnerEventSourceAccountsResponseSuccess
623
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartnerEventSourceAccountsResponseSuccess
624
+
625
+ interface _ListPartnerEventSourcesResponseSuccess
626
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPartnerEventSourcesResponse]
627
+ def partner_event_sources: () -> ::Array[Types::PartnerEventSource]
628
+ def next_token: () -> ::String
629
+ end
630
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_partner_event_sources-instance_method
631
+ def list_partner_event_sources: (
632
+ name_prefix: ::String,
633
+ ?next_token: ::String,
634
+ ?limit: ::Integer
635
+ ) -> _ListPartnerEventSourcesResponseSuccess
636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartnerEventSourcesResponseSuccess
637
+
638
+ interface _ListReplaysResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReplaysResponse]
640
+ def replays: () -> ::Array[Types::Replay]
641
+ def next_token: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_replays-instance_method
644
+ def list_replays: (
645
+ ?name_prefix: ::String,
646
+ ?state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED"),
647
+ ?event_source_arn: ::String,
648
+ ?next_token: ::String,
649
+ ?limit: ::Integer
650
+ ) -> _ListReplaysResponseSuccess
651
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReplaysResponseSuccess
652
+
653
+ interface _ListRuleNamesByTargetResponseSuccess
654
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRuleNamesByTargetResponse]
655
+ def rule_names: () -> ::Array[::String]
656
+ def next_token: () -> ::String
657
+ end
658
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_rule_names_by_target-instance_method
659
+ def list_rule_names_by_target: (
660
+ target_arn: ::String,
661
+ ?event_bus_name: ::String,
662
+ ?next_token: ::String,
663
+ ?limit: ::Integer
664
+ ) -> _ListRuleNamesByTargetResponseSuccess
665
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRuleNamesByTargetResponseSuccess
666
+
667
+ interface _ListRulesResponseSuccess
668
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRulesResponse]
669
+ def rules: () -> ::Array[Types::Rule]
670
+ def next_token: () -> ::String
671
+ end
672
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_rules-instance_method
673
+ def list_rules: (
674
+ ?name_prefix: ::String,
675
+ ?event_bus_name: ::String,
676
+ ?next_token: ::String,
677
+ ?limit: ::Integer
678
+ ) -> _ListRulesResponseSuccess
679
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRulesResponseSuccess
680
+
681
+ interface _ListTagsForResourceResponseSuccess
682
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
683
+ def tags: () -> ::Array[Types::Tag]
684
+ end
685
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_tags_for_resource-instance_method
686
+ def list_tags_for_resource: (
687
+ resource_arn: ::String
688
+ ) -> _ListTagsForResourceResponseSuccess
689
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
690
+
691
+ interface _ListTargetsByRuleResponseSuccess
692
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetsByRuleResponse]
693
+ def targets: () -> ::Array[Types::Target]
694
+ def next_token: () -> ::String
695
+ end
696
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#list_targets_by_rule-instance_method
697
+ def list_targets_by_rule: (
698
+ rule: ::String,
699
+ ?event_bus_name: ::String,
700
+ ?next_token: ::String,
701
+ ?limit: ::Integer
702
+ ) -> _ListTargetsByRuleResponseSuccess
703
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetsByRuleResponseSuccess
704
+
705
+ interface _PutEventsResponseSuccess
706
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEventsResponse]
707
+ def failed_entry_count: () -> ::Integer
708
+ def entries: () -> ::Array[Types::PutEventsResultEntry]
709
+ end
710
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#put_events-instance_method
711
+ def put_events: (
712
+ entries: Array[
713
+ {
714
+ time: ::Time?,
715
+ source: ::String?,
716
+ resources: Array[::String]?,
717
+ detail_type: ::String?,
718
+ detail: ::String?,
719
+ event_bus_name: ::String?,
720
+ trace_header: ::String?
721
+ },
722
+ ],
723
+ ?endpoint_id: ::String
724
+ ) -> _PutEventsResponseSuccess
725
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEventsResponseSuccess
726
+
727
+ interface _PutPartnerEventsResponseSuccess
728
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutPartnerEventsResponse]
729
+ def failed_entry_count: () -> ::Integer
730
+ def entries: () -> ::Array[Types::PutPartnerEventsResultEntry]
731
+ end
732
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#put_partner_events-instance_method
733
+ def put_partner_events: (
734
+ entries: Array[
735
+ {
736
+ time: ::Time?,
737
+ source: ::String?,
738
+ resources: Array[::String]?,
739
+ detail_type: ::String?,
740
+ detail: ::String?
741
+ },
742
+ ]
743
+ ) -> _PutPartnerEventsResponseSuccess
744
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPartnerEventsResponseSuccess
745
+
746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#put_permission-instance_method
747
+ def put_permission: (
748
+ ?event_bus_name: ::String,
749
+ ?action: ::String,
750
+ ?principal: ::String,
751
+ ?statement_id: ::String,
752
+ ?condition: {
753
+ type: ::String,
754
+ key: ::String,
755
+ value: ::String
756
+ },
757
+ ?policy: ::String
758
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
759
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
760
+
761
+ interface _PutRuleResponseSuccess
762
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutRuleResponse]
763
+ def rule_arn: () -> ::String
764
+ end
765
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#put_rule-instance_method
766
+ def put_rule: (
767
+ name: ::String,
768
+ ?schedule_expression: ::String,
769
+ ?event_pattern: ::String,
770
+ ?state: ("ENABLED" | "DISABLED" | "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS"),
771
+ ?description: ::String,
772
+ ?role_arn: ::String,
773
+ ?tags: Array[
774
+ {
775
+ key: ::String,
776
+ value: ::String
777
+ },
778
+ ],
779
+ ?event_bus_name: ::String
780
+ ) -> _PutRuleResponseSuccess
781
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRuleResponseSuccess
782
+
783
+ interface _PutTargetsResponseSuccess
784
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutTargetsResponse]
785
+ def failed_entry_count: () -> ::Integer
786
+ def failed_entries: () -> ::Array[Types::PutTargetsResultEntry]
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#put_targets-instance_method
789
+ def put_targets: (
790
+ rule: ::String,
791
+ ?event_bus_name: ::String,
792
+ targets: Array[
793
+ {
794
+ id: ::String,
795
+ arn: ::String,
796
+ role_arn: ::String?,
797
+ input: ::String?,
798
+ input_path: ::String?,
799
+ input_transformer: {
800
+ input_paths_map: Hash[::String, ::String]?,
801
+ input_template: ::String
802
+ }?,
803
+ kinesis_parameters: {
804
+ partition_key_path: ::String
805
+ }?,
806
+ run_command_parameters: {
807
+ run_command_targets: Array[
808
+ {
809
+ key: ::String,
810
+ values: Array[::String]
811
+ },
812
+ ]
813
+ }?,
814
+ ecs_parameters: {
815
+ task_definition_arn: ::String,
816
+ task_count: ::Integer?,
817
+ launch_type: ("EC2" | "FARGATE" | "EXTERNAL")?,
818
+ network_configuration: {
819
+ awsvpc_configuration: {
820
+ subnets: Array[::String],
821
+ security_groups: Array[::String]?,
822
+ assign_public_ip: ("ENABLED" | "DISABLED")?
823
+ }?
824
+ }?,
825
+ platform_version: ::String?,
826
+ group: ::String?,
827
+ capacity_provider_strategy: Array[
828
+ {
829
+ capacity_provider: ::String,
830
+ weight: ::Integer?,
831
+ base: ::Integer?
832
+ },
833
+ ]?,
834
+ enable_ecs_managed_tags: bool?,
835
+ enable_execute_command: bool?,
836
+ placement_constraints: Array[
837
+ {
838
+ type: ("distinctInstance" | "memberOf")?,
839
+ expression: ::String?
840
+ },
841
+ ]?,
842
+ placement_strategy: Array[
843
+ {
844
+ type: ("random" | "spread" | "binpack")?,
845
+ field: ::String?
846
+ },
847
+ ]?,
848
+ propagate_tags: ("TASK_DEFINITION")?,
849
+ reference_id: ::String?,
850
+ tags: Array[
851
+ {
852
+ key: ::String,
853
+ value: ::String
854
+ },
855
+ ]?
856
+ }?,
857
+ batch_parameters: {
858
+ job_definition: ::String,
859
+ job_name: ::String,
860
+ array_properties: {
861
+ size: ::Integer?
862
+ }?,
863
+ retry_strategy: {
864
+ attempts: ::Integer?
865
+ }?
866
+ }?,
867
+ sqs_parameters: {
868
+ message_group_id: ::String?
869
+ }?,
870
+ http_parameters: {
871
+ path_parameter_values: Array[::String]?,
872
+ header_parameters: Hash[::String, ::String]?,
873
+ query_string_parameters: Hash[::String, ::String]?
874
+ }?,
875
+ redshift_data_parameters: {
876
+ secret_manager_arn: ::String?,
877
+ database: ::String,
878
+ db_user: ::String?,
879
+ sql: ::String?,
880
+ statement_name: ::String?,
881
+ with_event: bool?,
882
+ sqls: Array[::String]?
883
+ }?,
884
+ sage_maker_pipeline_parameters: {
885
+ pipeline_parameter_list: Array[
886
+ {
887
+ name: ::String,
888
+ value: ::String
889
+ },
890
+ ]?
891
+ }?,
892
+ dead_letter_config: {
893
+ arn: ::String?
894
+ }?,
895
+ retry_policy: {
896
+ maximum_retry_attempts: ::Integer?,
897
+ maximum_event_age_in_seconds: ::Integer?
898
+ }?,
899
+ app_sync_parameters: {
900
+ graph_ql_operation: ::String?
901
+ }?
902
+ },
903
+ ]
904
+ ) -> _PutTargetsResponseSuccess
905
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutTargetsResponseSuccess
906
+
907
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#remove_permission-instance_method
908
+ def remove_permission: (
909
+ ?statement_id: ::String,
910
+ ?remove_all_permissions: bool,
911
+ ?event_bus_name: ::String
912
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
913
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
914
+
915
+ interface _RemoveTargetsResponseSuccess
916
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTargetsResponse]
917
+ def failed_entry_count: () -> ::Integer
918
+ def failed_entries: () -> ::Array[Types::RemoveTargetsResultEntry]
919
+ end
920
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#remove_targets-instance_method
921
+ def remove_targets: (
922
+ rule: ::String,
923
+ ?event_bus_name: ::String,
924
+ ids: Array[::String],
925
+ ?force: bool
926
+ ) -> _RemoveTargetsResponseSuccess
927
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTargetsResponseSuccess
928
+
929
+ interface _StartReplayResponseSuccess
930
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReplayResponse]
931
+ def replay_arn: () -> ::String
932
+ def state: () -> ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
933
+ def state_reason: () -> ::String
934
+ def replay_start_time: () -> ::Time
935
+ end
936
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#start_replay-instance_method
937
+ def start_replay: (
938
+ replay_name: ::String,
939
+ ?description: ::String,
940
+ event_source_arn: ::String,
941
+ event_start_time: ::Time,
942
+ event_end_time: ::Time,
943
+ destination: {
944
+ arn: ::String,
945
+ filter_arns: Array[::String]?
946
+ }
947
+ ) -> _StartReplayResponseSuccess
948
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplayResponseSuccess
949
+
950
+ interface _TagResourceResponseSuccess
951
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
952
+ end
953
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#tag_resource-instance_method
954
+ def tag_resource: (
955
+ resource_arn: ::String,
956
+ tags: Array[
957
+ {
958
+ key: ::String,
959
+ value: ::String
960
+ },
961
+ ]
962
+ ) -> _TagResourceResponseSuccess
963
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
964
+
965
+ interface _TestEventPatternResponseSuccess
966
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestEventPatternResponse]
967
+ def result: () -> bool
968
+ end
969
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#test_event_pattern-instance_method
970
+ def test_event_pattern: (
971
+ event_pattern: ::String,
972
+ event: ::String
973
+ ) -> _TestEventPatternResponseSuccess
974
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestEventPatternResponseSuccess
975
+
976
+ interface _UntagResourceResponseSuccess
977
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
978
+ end
979
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#untag_resource-instance_method
980
+ def untag_resource: (
981
+ resource_arn: ::String,
982
+ tag_keys: Array[::String]
983
+ ) -> _UntagResourceResponseSuccess
984
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
985
+
986
+ interface _UpdateApiDestinationResponseSuccess
987
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiDestinationResponse]
988
+ def api_destination_arn: () -> ::String
989
+ def api_destination_state: () -> ("ACTIVE" | "INACTIVE")
990
+ def creation_time: () -> ::Time
991
+ def last_modified_time: () -> ::Time
992
+ end
993
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#update_api_destination-instance_method
994
+ def update_api_destination: (
995
+ name: ::String,
996
+ ?description: ::String,
997
+ ?connection_arn: ::String,
998
+ ?invocation_endpoint: ::String,
999
+ ?http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE"),
1000
+ ?invocation_rate_limit_per_second: ::Integer
1001
+ ) -> _UpdateApiDestinationResponseSuccess
1002
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiDestinationResponseSuccess
1003
+
1004
+ interface _UpdateArchiveResponseSuccess
1005
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateArchiveResponse]
1006
+ def archive_arn: () -> ::String
1007
+ def state: () -> ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
1008
+ def state_reason: () -> ::String
1009
+ def creation_time: () -> ::Time
1010
+ end
1011
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#update_archive-instance_method
1012
+ def update_archive: (
1013
+ archive_name: ::String,
1014
+ ?description: ::String,
1015
+ ?event_pattern: ::String,
1016
+ ?retention_days: ::Integer
1017
+ ) -> _UpdateArchiveResponseSuccess
1018
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateArchiveResponseSuccess
1019
+
1020
+ interface _UpdateConnectionResponseSuccess
1021
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionResponse]
1022
+ def connection_arn: () -> ::String
1023
+ def connection_state: () -> ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
1024
+ def creation_time: () -> ::Time
1025
+ def last_modified_time: () -> ::Time
1026
+ def last_authorized_time: () -> ::Time
1027
+ end
1028
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#update_connection-instance_method
1029
+ def update_connection: (
1030
+ name: ::String,
1031
+ ?description: ::String,
1032
+ ?authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY"),
1033
+ ?auth_parameters: {
1034
+ basic_auth_parameters: {
1035
+ username: ::String?,
1036
+ password: ::String?
1037
+ }?,
1038
+ o_auth_parameters: {
1039
+ client_parameters: {
1040
+ client_id: ::String?,
1041
+ client_secret: ::String?
1042
+ }?,
1043
+ authorization_endpoint: ::String?,
1044
+ http_method: ("GET" | "POST" | "PUT")?,
1045
+ o_auth_http_parameters: {
1046
+ header_parameters: Array[
1047
+ {
1048
+ key: ::String?,
1049
+ value: ::String?,
1050
+ is_value_secret: bool?
1051
+ },
1052
+ ]?,
1053
+ query_string_parameters: Array[
1054
+ {
1055
+ key: ::String?,
1056
+ value: ::String?,
1057
+ is_value_secret: bool?
1058
+ },
1059
+ ]?,
1060
+ body_parameters: Array[
1061
+ {
1062
+ key: ::String?,
1063
+ value: ::String?,
1064
+ is_value_secret: bool?
1065
+ },
1066
+ ]?
1067
+ }?
1068
+ }?,
1069
+ api_key_auth_parameters: {
1070
+ api_key_name: ::String?,
1071
+ api_key_value: ::String?
1072
+ }?,
1073
+ invocation_http_parameters: {
1074
+ header_parameters: Array[
1075
+ {
1076
+ key: ::String?,
1077
+ value: ::String?,
1078
+ is_value_secret: bool?
1079
+ },
1080
+ ]?,
1081
+ query_string_parameters: Array[
1082
+ {
1083
+ key: ::String?,
1084
+ value: ::String?,
1085
+ is_value_secret: bool?
1086
+ },
1087
+ ]?,
1088
+ body_parameters: Array[
1089
+ {
1090
+ key: ::String?,
1091
+ value: ::String?,
1092
+ is_value_secret: bool?
1093
+ },
1094
+ ]?
1095
+ }?
1096
+ }
1097
+ ) -> _UpdateConnectionResponseSuccess
1098
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
1099
+
1100
+ interface _UpdateEndpointResponseSuccess
1101
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEndpointResponse]
1102
+ def name: () -> ::String
1103
+ def arn: () -> ::String
1104
+ def routing_config: () -> Types::RoutingConfig
1105
+ def replication_config: () -> Types::ReplicationConfig
1106
+ def event_buses: () -> ::Array[Types::EndpointEventBus]
1107
+ def role_arn: () -> ::String
1108
+ def endpoint_id: () -> ::String
1109
+ def endpoint_url: () -> ::String
1110
+ def state: () -> ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1111
+ end
1112
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#update_endpoint-instance_method
1113
+ def update_endpoint: (
1114
+ name: ::String,
1115
+ ?description: ::String,
1116
+ ?routing_config: {
1117
+ failover_config: {
1118
+ primary: {
1119
+ health_check: ::String
1120
+ },
1121
+ secondary: {
1122
+ route: ::String
1123
+ }
1124
+ }
1125
+ },
1126
+ ?replication_config: {
1127
+ state: ("ENABLED" | "DISABLED")?
1128
+ },
1129
+ ?event_buses: Array[
1130
+ {
1131
+ event_bus_arn: ::String
1132
+ },
1133
+ ],
1134
+ ?role_arn: ::String
1135
+ ) -> _UpdateEndpointResponseSuccess
1136
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEndpointResponseSuccess
1137
+ end
1138
+ end
1139
+ end
1140
+