aws-sdk-cloudwatchevents 1.69.0 → 1.70.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1136 @@
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::CloudWatchEvents
9
+ module Types
10
+
11
+ class ActivateEventSourceRequest
12
+ attr_accessor name: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ApiDestination
17
+ attr_accessor api_destination_arn: ::String
18
+ attr_accessor name: ::String
19
+ attr_accessor api_destination_state: ("ACTIVE" | "INACTIVE")
20
+ attr_accessor connection_arn: ::String
21
+ attr_accessor invocation_endpoint: ::String
22
+ attr_accessor http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE")
23
+ attr_accessor invocation_rate_limit_per_second: ::Integer
24
+ attr_accessor creation_time: ::Time
25
+ attr_accessor last_modified_time: ::Time
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class Archive
30
+ attr_accessor archive_name: ::String
31
+ attr_accessor event_source_arn: ::String
32
+ attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
33
+ attr_accessor state_reason: ::String
34
+ attr_accessor retention_days: ::Integer
35
+ attr_accessor size_bytes: ::Integer
36
+ attr_accessor event_count: ::Integer
37
+ attr_accessor creation_time: ::Time
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class AwsVpcConfiguration
42
+ attr_accessor subnets: ::Array[::String]
43
+ attr_accessor security_groups: ::Array[::String]
44
+ attr_accessor assign_public_ip: ("ENABLED" | "DISABLED")
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class BatchArrayProperties
49
+ attr_accessor size: ::Integer
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class BatchParameters
54
+ attr_accessor job_definition: ::String
55
+ attr_accessor job_name: ::String
56
+ attr_accessor array_properties: Types::BatchArrayProperties
57
+ attr_accessor retry_strategy: Types::BatchRetryStrategy
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class BatchRetryStrategy
62
+ attr_accessor attempts: ::Integer
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class CancelReplayRequest
67
+ attr_accessor replay_name: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CancelReplayResponse
72
+ attr_accessor replay_arn: ::String
73
+ attr_accessor state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
74
+ attr_accessor state_reason: ::String
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class CapacityProviderStrategyItem
79
+ attr_accessor capacity_provider: ::String
80
+ attr_accessor weight: ::Integer
81
+ attr_accessor base: ::Integer
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class ConcurrentModificationException < Aws::EmptyStructure
86
+ end
87
+
88
+ class Condition
89
+ attr_accessor type: ::String
90
+ attr_accessor key: ::String
91
+ attr_accessor value: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class Connection
96
+ attr_accessor connection_arn: ::String
97
+ attr_accessor name: ::String
98
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
99
+ attr_accessor state_reason: ::String
100
+ attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
101
+ attr_accessor creation_time: ::Time
102
+ attr_accessor last_modified_time: ::Time
103
+ attr_accessor last_authorized_time: ::Time
104
+ SENSITIVE: []
105
+ end
106
+
107
+ class ConnectionApiKeyAuthResponseParameters
108
+ attr_accessor api_key_name: ::String
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class ConnectionAuthResponseParameters
113
+ attr_accessor basic_auth_parameters: Types::ConnectionBasicAuthResponseParameters
114
+ attr_accessor o_auth_parameters: Types::ConnectionOAuthResponseParameters
115
+ attr_accessor api_key_auth_parameters: Types::ConnectionApiKeyAuthResponseParameters
116
+ attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class ConnectionBasicAuthResponseParameters
121
+ attr_accessor username: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class ConnectionBodyParameter
126
+ attr_accessor key: ::String
127
+ attr_accessor value: ::String
128
+ attr_accessor is_value_secret: bool
129
+ SENSITIVE: [:value]
130
+ end
131
+
132
+ class ConnectionHeaderParameter
133
+ attr_accessor key: ::String
134
+ attr_accessor value: ::String
135
+ attr_accessor is_value_secret: bool
136
+ SENSITIVE: [:value]
137
+ end
138
+
139
+ class ConnectionHttpParameters
140
+ attr_accessor header_parameters: ::Array[Types::ConnectionHeaderParameter]
141
+ attr_accessor query_string_parameters: ::Array[Types::ConnectionQueryStringParameter]
142
+ attr_accessor body_parameters: ::Array[Types::ConnectionBodyParameter]
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class ConnectionOAuthClientResponseParameters
147
+ attr_accessor client_id: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class ConnectionOAuthResponseParameters
152
+ attr_accessor client_parameters: Types::ConnectionOAuthClientResponseParameters
153
+ attr_accessor authorization_endpoint: ::String
154
+ attr_accessor http_method: ("GET" | "POST" | "PUT")
155
+ attr_accessor o_auth_http_parameters: Types::ConnectionHttpParameters
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class ConnectionQueryStringParameter
160
+ attr_accessor key: ::String
161
+ attr_accessor value: ::String
162
+ attr_accessor is_value_secret: bool
163
+ SENSITIVE: [:value]
164
+ end
165
+
166
+ class CreateApiDestinationRequest
167
+ attr_accessor name: ::String
168
+ attr_accessor description: ::String
169
+ attr_accessor connection_arn: ::String
170
+ attr_accessor invocation_endpoint: ::String
171
+ attr_accessor http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE")
172
+ attr_accessor invocation_rate_limit_per_second: ::Integer
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class CreateApiDestinationResponse
177
+ attr_accessor api_destination_arn: ::String
178
+ attr_accessor api_destination_state: ("ACTIVE" | "INACTIVE")
179
+ attr_accessor creation_time: ::Time
180
+ attr_accessor last_modified_time: ::Time
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class CreateArchiveRequest
185
+ attr_accessor archive_name: ::String
186
+ attr_accessor event_source_arn: ::String
187
+ attr_accessor description: ::String
188
+ attr_accessor event_pattern: ::String
189
+ attr_accessor retention_days: ::Integer
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class CreateArchiveResponse
194
+ attr_accessor archive_arn: ::String
195
+ attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
196
+ attr_accessor state_reason: ::String
197
+ attr_accessor creation_time: ::Time
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class CreateConnectionApiKeyAuthRequestParameters
202
+ attr_accessor api_key_name: ::String
203
+ attr_accessor api_key_value: ::String
204
+ SENSITIVE: [:api_key_value]
205
+ end
206
+
207
+ class CreateConnectionAuthRequestParameters
208
+ attr_accessor basic_auth_parameters: Types::CreateConnectionBasicAuthRequestParameters
209
+ attr_accessor o_auth_parameters: Types::CreateConnectionOAuthRequestParameters
210
+ attr_accessor api_key_auth_parameters: Types::CreateConnectionApiKeyAuthRequestParameters
211
+ attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class CreateConnectionBasicAuthRequestParameters
216
+ attr_accessor username: ::String
217
+ attr_accessor password: ::String
218
+ SENSITIVE: [:password]
219
+ end
220
+
221
+ class CreateConnectionOAuthClientRequestParameters
222
+ attr_accessor client_id: ::String
223
+ attr_accessor client_secret: ::String
224
+ SENSITIVE: [:client_secret]
225
+ end
226
+
227
+ class CreateConnectionOAuthRequestParameters
228
+ attr_accessor client_parameters: Types::CreateConnectionOAuthClientRequestParameters
229
+ attr_accessor authorization_endpoint: ::String
230
+ attr_accessor http_method: ("GET" | "POST" | "PUT")
231
+ attr_accessor o_auth_http_parameters: Types::ConnectionHttpParameters
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class CreateConnectionRequest
236
+ attr_accessor name: ::String
237
+ attr_accessor description: ::String
238
+ attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
239
+ attr_accessor auth_parameters: Types::CreateConnectionAuthRequestParameters
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class CreateConnectionResponse
244
+ attr_accessor connection_arn: ::String
245
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
246
+ attr_accessor creation_time: ::Time
247
+ attr_accessor last_modified_time: ::Time
248
+ SENSITIVE: []
249
+ end
250
+
251
+ class CreateEventBusRequest
252
+ attr_accessor name: ::String
253
+ attr_accessor event_source_name: ::String
254
+ attr_accessor tags: ::Array[Types::Tag]
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class CreateEventBusResponse
259
+ attr_accessor event_bus_arn: ::String
260
+ SENSITIVE: []
261
+ end
262
+
263
+ class CreatePartnerEventSourceRequest
264
+ attr_accessor name: ::String
265
+ attr_accessor account: ::String
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class CreatePartnerEventSourceResponse
270
+ attr_accessor event_source_arn: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class DeactivateEventSourceRequest
275
+ attr_accessor name: ::String
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class DeadLetterConfig
280
+ attr_accessor arn: ::String
281
+ SENSITIVE: []
282
+ end
283
+
284
+ class DeauthorizeConnectionRequest
285
+ attr_accessor name: ::String
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class DeauthorizeConnectionResponse
290
+ attr_accessor connection_arn: ::String
291
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
292
+ attr_accessor creation_time: ::Time
293
+ attr_accessor last_modified_time: ::Time
294
+ attr_accessor last_authorized_time: ::Time
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class DeleteApiDestinationRequest
299
+ attr_accessor name: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class DeleteApiDestinationResponse < Aws::EmptyStructure
304
+ end
305
+
306
+ class DeleteArchiveRequest
307
+ attr_accessor archive_name: ::String
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class DeleteArchiveResponse < Aws::EmptyStructure
312
+ end
313
+
314
+ class DeleteConnectionRequest
315
+ attr_accessor name: ::String
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class DeleteConnectionResponse
320
+ attr_accessor connection_arn: ::String
321
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
322
+ attr_accessor creation_time: ::Time
323
+ attr_accessor last_modified_time: ::Time
324
+ attr_accessor last_authorized_time: ::Time
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class DeleteEventBusRequest
329
+ attr_accessor name: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class DeletePartnerEventSourceRequest
334
+ attr_accessor name: ::String
335
+ attr_accessor account: ::String
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class DeleteRuleRequest
340
+ attr_accessor name: ::String
341
+ attr_accessor event_bus_name: ::String
342
+ attr_accessor force: bool
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class DescribeApiDestinationRequest
347
+ attr_accessor name: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class DescribeApiDestinationResponse
352
+ attr_accessor api_destination_arn: ::String
353
+ attr_accessor name: ::String
354
+ attr_accessor description: ::String
355
+ attr_accessor api_destination_state: ("ACTIVE" | "INACTIVE")
356
+ attr_accessor connection_arn: ::String
357
+ attr_accessor invocation_endpoint: ::String
358
+ attr_accessor http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE")
359
+ attr_accessor invocation_rate_limit_per_second: ::Integer
360
+ attr_accessor creation_time: ::Time
361
+ attr_accessor last_modified_time: ::Time
362
+ SENSITIVE: []
363
+ end
364
+
365
+ class DescribeArchiveRequest
366
+ attr_accessor archive_name: ::String
367
+ SENSITIVE: []
368
+ end
369
+
370
+ class DescribeArchiveResponse
371
+ attr_accessor archive_arn: ::String
372
+ attr_accessor archive_name: ::String
373
+ attr_accessor event_source_arn: ::String
374
+ attr_accessor description: ::String
375
+ attr_accessor event_pattern: ::String
376
+ attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
377
+ attr_accessor state_reason: ::String
378
+ attr_accessor retention_days: ::Integer
379
+ attr_accessor size_bytes: ::Integer
380
+ attr_accessor event_count: ::Integer
381
+ attr_accessor creation_time: ::Time
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class DescribeConnectionRequest
386
+ attr_accessor name: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class DescribeConnectionResponse
391
+ attr_accessor connection_arn: ::String
392
+ attr_accessor name: ::String
393
+ attr_accessor description: ::String
394
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
395
+ attr_accessor state_reason: ::String
396
+ attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
397
+ attr_accessor secret_arn: ::String
398
+ attr_accessor auth_parameters: Types::ConnectionAuthResponseParameters
399
+ attr_accessor creation_time: ::Time
400
+ attr_accessor last_modified_time: ::Time
401
+ attr_accessor last_authorized_time: ::Time
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class DescribeEventBusRequest
406
+ attr_accessor name: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class DescribeEventBusResponse
411
+ attr_accessor name: ::String
412
+ attr_accessor arn: ::String
413
+ attr_accessor policy: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class DescribeEventSourceRequest
418
+ attr_accessor name: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class DescribeEventSourceResponse
423
+ attr_accessor arn: ::String
424
+ attr_accessor created_by: ::String
425
+ attr_accessor creation_time: ::Time
426
+ attr_accessor expiration_time: ::Time
427
+ attr_accessor name: ::String
428
+ attr_accessor state: ("PENDING" | "ACTIVE" | "DELETED")
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class DescribePartnerEventSourceRequest
433
+ attr_accessor name: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class DescribePartnerEventSourceResponse
438
+ attr_accessor arn: ::String
439
+ attr_accessor name: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class DescribeReplayRequest
444
+ attr_accessor replay_name: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class DescribeReplayResponse
449
+ attr_accessor replay_name: ::String
450
+ attr_accessor replay_arn: ::String
451
+ attr_accessor description: ::String
452
+ attr_accessor state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
453
+ attr_accessor state_reason: ::String
454
+ attr_accessor event_source_arn: ::String
455
+ attr_accessor destination: Types::ReplayDestination
456
+ attr_accessor event_start_time: ::Time
457
+ attr_accessor event_end_time: ::Time
458
+ attr_accessor event_last_replayed_time: ::Time
459
+ attr_accessor replay_start_time: ::Time
460
+ attr_accessor replay_end_time: ::Time
461
+ SENSITIVE: []
462
+ end
463
+
464
+ class DescribeRuleRequest
465
+ attr_accessor name: ::String
466
+ attr_accessor event_bus_name: ::String
467
+ SENSITIVE: []
468
+ end
469
+
470
+ class DescribeRuleResponse
471
+ attr_accessor name: ::String
472
+ attr_accessor arn: ::String
473
+ attr_accessor event_pattern: ::String
474
+ attr_accessor schedule_expression: ::String
475
+ attr_accessor state: ("ENABLED" | "DISABLED")
476
+ attr_accessor description: ::String
477
+ attr_accessor role_arn: ::String
478
+ attr_accessor managed_by: ::String
479
+ attr_accessor event_bus_name: ::String
480
+ attr_accessor created_by: ::String
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class DisableRuleRequest
485
+ attr_accessor name: ::String
486
+ attr_accessor event_bus_name: ::String
487
+ SENSITIVE: []
488
+ end
489
+
490
+ class EcsParameters
491
+ attr_accessor task_definition_arn: ::String
492
+ attr_accessor task_count: ::Integer
493
+ attr_accessor launch_type: ("EC2" | "FARGATE" | "EXTERNAL")
494
+ attr_accessor network_configuration: Types::NetworkConfiguration
495
+ attr_accessor platform_version: ::String
496
+ attr_accessor group: ::String
497
+ attr_accessor capacity_provider_strategy: ::Array[Types::CapacityProviderStrategyItem]
498
+ attr_accessor enable_ecs_managed_tags: bool
499
+ attr_accessor enable_execute_command: bool
500
+ attr_accessor placement_constraints: ::Array[Types::PlacementConstraint]
501
+ attr_accessor placement_strategy: ::Array[Types::PlacementStrategy]
502
+ attr_accessor propagate_tags: ("TASK_DEFINITION")
503
+ attr_accessor reference_id: ::String
504
+ attr_accessor tags: ::Array[Types::Tag]
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class EnableRuleRequest
509
+ attr_accessor name: ::String
510
+ attr_accessor event_bus_name: ::String
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class EventBus
515
+ attr_accessor name: ::String
516
+ attr_accessor arn: ::String
517
+ attr_accessor policy: ::String
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class EventSource
522
+ attr_accessor arn: ::String
523
+ attr_accessor created_by: ::String
524
+ attr_accessor creation_time: ::Time
525
+ attr_accessor expiration_time: ::Time
526
+ attr_accessor name: ::String
527
+ attr_accessor state: ("PENDING" | "ACTIVE" | "DELETED")
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class HttpParameters
532
+ attr_accessor path_parameter_values: ::Array[::String]
533
+ attr_accessor header_parameters: ::Hash[::String, ::String]
534
+ attr_accessor query_string_parameters: ::Hash[::String, ::String]
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class IllegalStatusException < Aws::EmptyStructure
539
+ end
540
+
541
+ class InputTransformer
542
+ attr_accessor input_paths_map: ::Hash[::String, ::String]
543
+ attr_accessor input_template: ::String
544
+ SENSITIVE: []
545
+ end
546
+
547
+ class InternalException < Aws::EmptyStructure
548
+ end
549
+
550
+ class InvalidEventPatternException < Aws::EmptyStructure
551
+ end
552
+
553
+ class InvalidStateException < Aws::EmptyStructure
554
+ end
555
+
556
+ class KinesisParameters
557
+ attr_accessor partition_key_path: ::String
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class LimitExceededException < Aws::EmptyStructure
562
+ end
563
+
564
+ class ListApiDestinationsRequest
565
+ attr_accessor name_prefix: ::String
566
+ attr_accessor connection_arn: ::String
567
+ attr_accessor next_token: ::String
568
+ attr_accessor limit: ::Integer
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class ListApiDestinationsResponse
573
+ attr_accessor api_destinations: ::Array[Types::ApiDestination]
574
+ attr_accessor next_token: ::String
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class ListArchivesRequest
579
+ attr_accessor name_prefix: ::String
580
+ attr_accessor event_source_arn: ::String
581
+ attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
582
+ attr_accessor next_token: ::String
583
+ attr_accessor limit: ::Integer
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class ListArchivesResponse
588
+ attr_accessor archives: ::Array[Types::Archive]
589
+ attr_accessor next_token: ::String
590
+ SENSITIVE: []
591
+ end
592
+
593
+ class ListConnectionsRequest
594
+ attr_accessor name_prefix: ::String
595
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
596
+ attr_accessor next_token: ::String
597
+ attr_accessor limit: ::Integer
598
+ SENSITIVE: []
599
+ end
600
+
601
+ class ListConnectionsResponse
602
+ attr_accessor connections: ::Array[Types::Connection]
603
+ attr_accessor next_token: ::String
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class ListEventBusesRequest
608
+ attr_accessor name_prefix: ::String
609
+ attr_accessor next_token: ::String
610
+ attr_accessor limit: ::Integer
611
+ SENSITIVE: []
612
+ end
613
+
614
+ class ListEventBusesResponse
615
+ attr_accessor event_buses: ::Array[Types::EventBus]
616
+ attr_accessor next_token: ::String
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class ListEventSourcesRequest
621
+ attr_accessor name_prefix: ::String
622
+ attr_accessor next_token: ::String
623
+ attr_accessor limit: ::Integer
624
+ SENSITIVE: []
625
+ end
626
+
627
+ class ListEventSourcesResponse
628
+ attr_accessor event_sources: ::Array[Types::EventSource]
629
+ attr_accessor next_token: ::String
630
+ SENSITIVE: []
631
+ end
632
+
633
+ class ListPartnerEventSourceAccountsRequest
634
+ attr_accessor event_source_name: ::String
635
+ attr_accessor next_token: ::String
636
+ attr_accessor limit: ::Integer
637
+ SENSITIVE: []
638
+ end
639
+
640
+ class ListPartnerEventSourceAccountsResponse
641
+ attr_accessor partner_event_source_accounts: ::Array[Types::PartnerEventSourceAccount]
642
+ attr_accessor next_token: ::String
643
+ SENSITIVE: []
644
+ end
645
+
646
+ class ListPartnerEventSourcesRequest
647
+ attr_accessor name_prefix: ::String
648
+ attr_accessor next_token: ::String
649
+ attr_accessor limit: ::Integer
650
+ SENSITIVE: []
651
+ end
652
+
653
+ class ListPartnerEventSourcesResponse
654
+ attr_accessor partner_event_sources: ::Array[Types::PartnerEventSource]
655
+ attr_accessor next_token: ::String
656
+ SENSITIVE: []
657
+ end
658
+
659
+ class ListReplaysRequest
660
+ attr_accessor name_prefix: ::String
661
+ attr_accessor state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
662
+ attr_accessor event_source_arn: ::String
663
+ attr_accessor next_token: ::String
664
+ attr_accessor limit: ::Integer
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class ListReplaysResponse
669
+ attr_accessor replays: ::Array[Types::Replay]
670
+ attr_accessor next_token: ::String
671
+ SENSITIVE: []
672
+ end
673
+
674
+ class ListRuleNamesByTargetRequest
675
+ attr_accessor target_arn: ::String
676
+ attr_accessor event_bus_name: ::String
677
+ attr_accessor next_token: ::String
678
+ attr_accessor limit: ::Integer
679
+ SENSITIVE: []
680
+ end
681
+
682
+ class ListRuleNamesByTargetResponse
683
+ attr_accessor rule_names: ::Array[::String]
684
+ attr_accessor next_token: ::String
685
+ SENSITIVE: []
686
+ end
687
+
688
+ class ListRulesRequest
689
+ attr_accessor name_prefix: ::String
690
+ attr_accessor event_bus_name: ::String
691
+ attr_accessor next_token: ::String
692
+ attr_accessor limit: ::Integer
693
+ SENSITIVE: []
694
+ end
695
+
696
+ class ListRulesResponse
697
+ attr_accessor rules: ::Array[Types::Rule]
698
+ attr_accessor next_token: ::String
699
+ SENSITIVE: []
700
+ end
701
+
702
+ class ListTagsForResourceRequest
703
+ attr_accessor resource_arn: ::String
704
+ SENSITIVE: []
705
+ end
706
+
707
+ class ListTagsForResourceResponse
708
+ attr_accessor tags: ::Array[Types::Tag]
709
+ SENSITIVE: []
710
+ end
711
+
712
+ class ListTargetsByRuleRequest
713
+ attr_accessor rule: ::String
714
+ attr_accessor event_bus_name: ::String
715
+ attr_accessor next_token: ::String
716
+ attr_accessor limit: ::Integer
717
+ SENSITIVE: []
718
+ end
719
+
720
+ class ListTargetsByRuleResponse
721
+ attr_accessor targets: ::Array[Types::Target]
722
+ attr_accessor next_token: ::String
723
+ SENSITIVE: []
724
+ end
725
+
726
+ class ManagedRuleException < Aws::EmptyStructure
727
+ end
728
+
729
+ class NetworkConfiguration
730
+ attr_accessor awsvpc_configuration: Types::AwsVpcConfiguration
731
+ SENSITIVE: []
732
+ end
733
+
734
+ class OperationDisabledException < Aws::EmptyStructure
735
+ end
736
+
737
+ class PartnerEventSource
738
+ attr_accessor arn: ::String
739
+ attr_accessor name: ::String
740
+ SENSITIVE: []
741
+ end
742
+
743
+ class PartnerEventSourceAccount
744
+ attr_accessor account: ::String
745
+ attr_accessor creation_time: ::Time
746
+ attr_accessor expiration_time: ::Time
747
+ attr_accessor state: ("PENDING" | "ACTIVE" | "DELETED")
748
+ SENSITIVE: []
749
+ end
750
+
751
+ class PlacementConstraint
752
+ attr_accessor type: ("distinctInstance" | "memberOf")
753
+ attr_accessor expression: ::String
754
+ SENSITIVE: []
755
+ end
756
+
757
+ class PlacementStrategy
758
+ attr_accessor type: ("random" | "spread" | "binpack")
759
+ attr_accessor field: ::String
760
+ SENSITIVE: []
761
+ end
762
+
763
+ class PolicyLengthExceededException < Aws::EmptyStructure
764
+ end
765
+
766
+ class PutEventsRequest
767
+ attr_accessor entries: ::Array[Types::PutEventsRequestEntry]
768
+ SENSITIVE: []
769
+ end
770
+
771
+ class PutEventsRequestEntry
772
+ attr_accessor time: ::Time
773
+ attr_accessor source: ::String
774
+ attr_accessor resources: ::Array[::String]
775
+ attr_accessor detail_type: ::String
776
+ attr_accessor detail: ::String
777
+ attr_accessor event_bus_name: ::String
778
+ attr_accessor trace_header: ::String
779
+ SENSITIVE: []
780
+ end
781
+
782
+ class PutEventsResponse
783
+ attr_accessor failed_entry_count: ::Integer
784
+ attr_accessor entries: ::Array[Types::PutEventsResultEntry]
785
+ SENSITIVE: []
786
+ end
787
+
788
+ class PutEventsResultEntry
789
+ attr_accessor event_id: ::String
790
+ attr_accessor error_code: ::String
791
+ attr_accessor error_message: ::String
792
+ SENSITIVE: []
793
+ end
794
+
795
+ class PutPartnerEventsRequest
796
+ attr_accessor entries: ::Array[Types::PutPartnerEventsRequestEntry]
797
+ SENSITIVE: []
798
+ end
799
+
800
+ class PutPartnerEventsRequestEntry
801
+ attr_accessor time: ::Time
802
+ attr_accessor source: ::String
803
+ attr_accessor resources: ::Array[::String]
804
+ attr_accessor detail_type: ::String
805
+ attr_accessor detail: ::String
806
+ SENSITIVE: []
807
+ end
808
+
809
+ class PutPartnerEventsResponse
810
+ attr_accessor failed_entry_count: ::Integer
811
+ attr_accessor entries: ::Array[Types::PutPartnerEventsResultEntry]
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class PutPartnerEventsResultEntry
816
+ attr_accessor event_id: ::String
817
+ attr_accessor error_code: ::String
818
+ attr_accessor error_message: ::String
819
+ SENSITIVE: []
820
+ end
821
+
822
+ class PutPermissionRequest
823
+ attr_accessor event_bus_name: ::String
824
+ attr_accessor action: ::String
825
+ attr_accessor principal: ::String
826
+ attr_accessor statement_id: ::String
827
+ attr_accessor condition: Types::Condition
828
+ attr_accessor policy: ::String
829
+ SENSITIVE: []
830
+ end
831
+
832
+ class PutRuleRequest
833
+ attr_accessor name: ::String
834
+ attr_accessor schedule_expression: ::String
835
+ attr_accessor event_pattern: ::String
836
+ attr_accessor state: ("ENABLED" | "DISABLED")
837
+ attr_accessor description: ::String
838
+ attr_accessor role_arn: ::String
839
+ attr_accessor tags: ::Array[Types::Tag]
840
+ attr_accessor event_bus_name: ::String
841
+ SENSITIVE: []
842
+ end
843
+
844
+ class PutRuleResponse
845
+ attr_accessor rule_arn: ::String
846
+ SENSITIVE: []
847
+ end
848
+
849
+ class PutTargetsRequest
850
+ attr_accessor rule: ::String
851
+ attr_accessor event_bus_name: ::String
852
+ attr_accessor targets: ::Array[Types::Target]
853
+ SENSITIVE: []
854
+ end
855
+
856
+ class PutTargetsResponse
857
+ attr_accessor failed_entry_count: ::Integer
858
+ attr_accessor failed_entries: ::Array[Types::PutTargetsResultEntry]
859
+ SENSITIVE: []
860
+ end
861
+
862
+ class PutTargetsResultEntry
863
+ attr_accessor target_id: ::String
864
+ attr_accessor error_code: ::String
865
+ attr_accessor error_message: ::String
866
+ SENSITIVE: []
867
+ end
868
+
869
+ class RedshiftDataParameters
870
+ attr_accessor secret_manager_arn: ::String
871
+ attr_accessor database: ::String
872
+ attr_accessor db_user: ::String
873
+ attr_accessor sql: ::String
874
+ attr_accessor statement_name: ::String
875
+ attr_accessor with_event: bool
876
+ SENSITIVE: []
877
+ end
878
+
879
+ class RemovePermissionRequest
880
+ attr_accessor statement_id: ::String
881
+ attr_accessor remove_all_permissions: bool
882
+ attr_accessor event_bus_name: ::String
883
+ SENSITIVE: []
884
+ end
885
+
886
+ class RemoveTargetsRequest
887
+ attr_accessor rule: ::String
888
+ attr_accessor event_bus_name: ::String
889
+ attr_accessor ids: ::Array[::String]
890
+ attr_accessor force: bool
891
+ SENSITIVE: []
892
+ end
893
+
894
+ class RemoveTargetsResponse
895
+ attr_accessor failed_entry_count: ::Integer
896
+ attr_accessor failed_entries: ::Array[Types::RemoveTargetsResultEntry]
897
+ SENSITIVE: []
898
+ end
899
+
900
+ class RemoveTargetsResultEntry
901
+ attr_accessor target_id: ::String
902
+ attr_accessor error_code: ::String
903
+ attr_accessor error_message: ::String
904
+ SENSITIVE: []
905
+ end
906
+
907
+ class Replay
908
+ attr_accessor replay_name: ::String
909
+ attr_accessor event_source_arn: ::String
910
+ attr_accessor state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
911
+ attr_accessor state_reason: ::String
912
+ attr_accessor event_start_time: ::Time
913
+ attr_accessor event_end_time: ::Time
914
+ attr_accessor event_last_replayed_time: ::Time
915
+ attr_accessor replay_start_time: ::Time
916
+ attr_accessor replay_end_time: ::Time
917
+ SENSITIVE: []
918
+ end
919
+
920
+ class ReplayDestination
921
+ attr_accessor arn: ::String
922
+ attr_accessor filter_arns: ::Array[::String]
923
+ SENSITIVE: []
924
+ end
925
+
926
+ class ResourceAlreadyExistsException < Aws::EmptyStructure
927
+ end
928
+
929
+ class ResourceNotFoundException < Aws::EmptyStructure
930
+ end
931
+
932
+ class RetryPolicy
933
+ attr_accessor maximum_retry_attempts: ::Integer
934
+ attr_accessor maximum_event_age_in_seconds: ::Integer
935
+ SENSITIVE: []
936
+ end
937
+
938
+ class Rule
939
+ attr_accessor name: ::String
940
+ attr_accessor arn: ::String
941
+ attr_accessor event_pattern: ::String
942
+ attr_accessor state: ("ENABLED" | "DISABLED")
943
+ attr_accessor description: ::String
944
+ attr_accessor schedule_expression: ::String
945
+ attr_accessor role_arn: ::String
946
+ attr_accessor managed_by: ::String
947
+ attr_accessor event_bus_name: ::String
948
+ SENSITIVE: []
949
+ end
950
+
951
+ class RunCommandParameters
952
+ attr_accessor run_command_targets: ::Array[Types::RunCommandTarget]
953
+ SENSITIVE: []
954
+ end
955
+
956
+ class RunCommandTarget
957
+ attr_accessor key: ::String
958
+ attr_accessor values: ::Array[::String]
959
+ SENSITIVE: []
960
+ end
961
+
962
+ class SageMakerPipelineParameter
963
+ attr_accessor name: ::String
964
+ attr_accessor value: ::String
965
+ SENSITIVE: []
966
+ end
967
+
968
+ class SageMakerPipelineParameters
969
+ attr_accessor pipeline_parameter_list: ::Array[Types::SageMakerPipelineParameter]
970
+ SENSITIVE: []
971
+ end
972
+
973
+ class SqsParameters
974
+ attr_accessor message_group_id: ::String
975
+ SENSITIVE: []
976
+ end
977
+
978
+ class StartReplayRequest
979
+ attr_accessor replay_name: ::String
980
+ attr_accessor description: ::String
981
+ attr_accessor event_source_arn: ::String
982
+ attr_accessor event_start_time: ::Time
983
+ attr_accessor event_end_time: ::Time
984
+ attr_accessor destination: Types::ReplayDestination
985
+ SENSITIVE: []
986
+ end
987
+
988
+ class StartReplayResponse
989
+ attr_accessor replay_arn: ::String
990
+ attr_accessor state: ("STARTING" | "RUNNING" | "CANCELLING" | "COMPLETED" | "CANCELLED" | "FAILED")
991
+ attr_accessor state_reason: ::String
992
+ attr_accessor replay_start_time: ::Time
993
+ SENSITIVE: []
994
+ end
995
+
996
+ class Tag
997
+ attr_accessor key: ::String
998
+ attr_accessor value: ::String
999
+ SENSITIVE: []
1000
+ end
1001
+
1002
+ class TagResourceRequest
1003
+ attr_accessor resource_arn: ::String
1004
+ attr_accessor tags: ::Array[Types::Tag]
1005
+ SENSITIVE: []
1006
+ end
1007
+
1008
+ class TagResourceResponse < Aws::EmptyStructure
1009
+ end
1010
+
1011
+ class Target
1012
+ attr_accessor id: ::String
1013
+ attr_accessor arn: ::String
1014
+ attr_accessor role_arn: ::String
1015
+ attr_accessor input: ::String
1016
+ attr_accessor input_path: ::String
1017
+ attr_accessor input_transformer: Types::InputTransformer
1018
+ attr_accessor kinesis_parameters: Types::KinesisParameters
1019
+ attr_accessor run_command_parameters: Types::RunCommandParameters
1020
+ attr_accessor ecs_parameters: Types::EcsParameters
1021
+ attr_accessor batch_parameters: Types::BatchParameters
1022
+ attr_accessor sqs_parameters: Types::SqsParameters
1023
+ attr_accessor http_parameters: Types::HttpParameters
1024
+ attr_accessor redshift_data_parameters: Types::RedshiftDataParameters
1025
+ attr_accessor sage_maker_pipeline_parameters: Types::SageMakerPipelineParameters
1026
+ attr_accessor dead_letter_config: Types::DeadLetterConfig
1027
+ attr_accessor retry_policy: Types::RetryPolicy
1028
+ SENSITIVE: []
1029
+ end
1030
+
1031
+ class TestEventPatternRequest
1032
+ attr_accessor event_pattern: ::String
1033
+ attr_accessor event: ::String
1034
+ SENSITIVE: []
1035
+ end
1036
+
1037
+ class TestEventPatternResponse
1038
+ attr_accessor result: bool
1039
+ SENSITIVE: []
1040
+ end
1041
+
1042
+ class UntagResourceRequest
1043
+ attr_accessor resource_arn: ::String
1044
+ attr_accessor tag_keys: ::Array[::String]
1045
+ SENSITIVE: []
1046
+ end
1047
+
1048
+ class UntagResourceResponse < Aws::EmptyStructure
1049
+ end
1050
+
1051
+ class UpdateApiDestinationRequest
1052
+ attr_accessor name: ::String
1053
+ attr_accessor description: ::String
1054
+ attr_accessor connection_arn: ::String
1055
+ attr_accessor invocation_endpoint: ::String
1056
+ attr_accessor http_method: ("POST" | "GET" | "HEAD" | "OPTIONS" | "PUT" | "PATCH" | "DELETE")
1057
+ attr_accessor invocation_rate_limit_per_second: ::Integer
1058
+ SENSITIVE: []
1059
+ end
1060
+
1061
+ class UpdateApiDestinationResponse
1062
+ attr_accessor api_destination_arn: ::String
1063
+ attr_accessor api_destination_state: ("ACTIVE" | "INACTIVE")
1064
+ attr_accessor creation_time: ::Time
1065
+ attr_accessor last_modified_time: ::Time
1066
+ SENSITIVE: []
1067
+ end
1068
+
1069
+ class UpdateArchiveRequest
1070
+ attr_accessor archive_name: ::String
1071
+ attr_accessor description: ::String
1072
+ attr_accessor event_pattern: ::String
1073
+ attr_accessor retention_days: ::Integer
1074
+ SENSITIVE: []
1075
+ end
1076
+
1077
+ class UpdateArchiveResponse
1078
+ attr_accessor archive_arn: ::String
1079
+ attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
1080
+ attr_accessor state_reason: ::String
1081
+ attr_accessor creation_time: ::Time
1082
+ SENSITIVE: []
1083
+ end
1084
+
1085
+ class UpdateConnectionApiKeyAuthRequestParameters
1086
+ attr_accessor api_key_name: ::String
1087
+ attr_accessor api_key_value: ::String
1088
+ SENSITIVE: [:api_key_value]
1089
+ end
1090
+
1091
+ class UpdateConnectionAuthRequestParameters
1092
+ attr_accessor basic_auth_parameters: Types::UpdateConnectionBasicAuthRequestParameters
1093
+ attr_accessor o_auth_parameters: Types::UpdateConnectionOAuthRequestParameters
1094
+ attr_accessor api_key_auth_parameters: Types::UpdateConnectionApiKeyAuthRequestParameters
1095
+ attr_accessor invocation_http_parameters: Types::ConnectionHttpParameters
1096
+ SENSITIVE: []
1097
+ end
1098
+
1099
+ class UpdateConnectionBasicAuthRequestParameters
1100
+ attr_accessor username: ::String
1101
+ attr_accessor password: ::String
1102
+ SENSITIVE: [:password]
1103
+ end
1104
+
1105
+ class UpdateConnectionOAuthClientRequestParameters
1106
+ attr_accessor client_id: ::String
1107
+ attr_accessor client_secret: ::String
1108
+ SENSITIVE: [:client_secret]
1109
+ end
1110
+
1111
+ class UpdateConnectionOAuthRequestParameters
1112
+ attr_accessor client_parameters: Types::UpdateConnectionOAuthClientRequestParameters
1113
+ attr_accessor authorization_endpoint: ::String
1114
+ attr_accessor http_method: ("GET" | "POST" | "PUT")
1115
+ attr_accessor o_auth_http_parameters: Types::ConnectionHttpParameters
1116
+ SENSITIVE: []
1117
+ end
1118
+
1119
+ class UpdateConnectionRequest
1120
+ attr_accessor name: ::String
1121
+ attr_accessor description: ::String
1122
+ attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
1123
+ attr_accessor auth_parameters: Types::UpdateConnectionAuthRequestParameters
1124
+ SENSITIVE: []
1125
+ end
1126
+
1127
+ class UpdateConnectionResponse
1128
+ attr_accessor connection_arn: ::String
1129
+ attr_accessor connection_state: ("CREATING" | "UPDATING" | "DELETING" | "AUTHORIZED" | "DEAUTHORIZED" | "AUTHORIZING" | "DEAUTHORIZING")
1130
+ attr_accessor creation_time: ::Time
1131
+ attr_accessor last_modified_time: ::Time
1132
+ attr_accessor last_authorized_time: ::Time
1133
+ SENSITIVE: []
1134
+ end
1135
+ end
1136
+ end