aws-sdk-eventbridgev2 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-eventbridgev2/client.rb +2322 -0
- data/lib/aws-sdk-eventbridgev2/client_api.rb +1266 -0
- data/lib/aws-sdk-eventbridgev2/customizations.rb +0 -0
- data/lib/aws-sdk-eventbridgev2/endpoint_parameters.rb +98 -0
- data/lib/aws-sdk-eventbridgev2/endpoint_provider.rb +95 -0
- data/lib/aws-sdk-eventbridgev2/endpoints.rb +166 -0
- data/lib/aws-sdk-eventbridgev2/errors.rb +298 -0
- data/lib/aws-sdk-eventbridgev2/plugins/endpoints.rb +102 -0
- data/lib/aws-sdk-eventbridgev2/resource.rb +26 -0
- data/lib/aws-sdk-eventbridgev2/types.rb +3185 -0
- data/lib/aws-sdk-eventbridgev2/waiters.rb +178 -0
- data/lib/aws-sdk-eventbridgev2.rb +62 -0
- data/sig/client.rbs +641 -0
- data/sig/errors.rbs +61 -0
- data/sig/params.rbs +72 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +787 -0
- data/sig/waiters.rbs +33 -0
- metadata +98 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,787 @@
|
|
|
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::EventBridgeV2
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AwsServiceEventsSourceConfiguration
|
|
17
|
+
attr_accessor aws_service: ::String
|
|
18
|
+
attr_accessor pattern: ::String
|
|
19
|
+
attr_accessor on_failure_configuration: Types::OnFailureConfiguration
|
|
20
|
+
SENSITIVE: [:pattern]
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class BatchConfiguration
|
|
24
|
+
attr_accessor max_batch_size: ::Integer
|
|
25
|
+
attr_accessor max_batch_window_in_seconds: ::Integer
|
|
26
|
+
SENSITIVE: []
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class ConcurrentModificationException
|
|
30
|
+
attr_accessor message: ::String
|
|
31
|
+
SENSITIVE: []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class ConflictException
|
|
35
|
+
attr_accessor message: ::String
|
|
36
|
+
SENSITIVE: []
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
class ConfluentPublicRegistryConfiguration
|
|
40
|
+
attr_accessor connection_arn: ::String
|
|
41
|
+
SENSITIVE: []
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
class CreateEventBusRequest
|
|
45
|
+
attr_accessor name: ::String
|
|
46
|
+
attr_accessor description: ::String
|
|
47
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
48
|
+
attr_accessor storage_configuration: Types::StorageConfiguration
|
|
49
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
50
|
+
attr_accessor client_token: ::String
|
|
51
|
+
SENSITIVE: []
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
class CreateEventBusResponse
|
|
55
|
+
attr_accessor event_bus_arn: ::String
|
|
56
|
+
attr_accessor name: ::String
|
|
57
|
+
attr_accessor description: ::String
|
|
58
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
59
|
+
attr_accessor storage_configuration: Types::StorageConfigurationOutput
|
|
60
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ACTIVE" | "DELETE_FAILED")
|
|
61
|
+
attr_accessor state_reason: ::String
|
|
62
|
+
attr_accessor creation_time: ::Time
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class CreateEventSourceRequest
|
|
67
|
+
attr_accessor name: ::String
|
|
68
|
+
attr_accessor event_bus_arn: ::String
|
|
69
|
+
attr_accessor configuration: Types::EventSourceConfiguration
|
|
70
|
+
attr_accessor description: ::String
|
|
71
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
72
|
+
attr_accessor client_token: ::String
|
|
73
|
+
SENSITIVE: []
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
class CreateEventSourceResponse
|
|
77
|
+
attr_accessor event_source_arn: ::String
|
|
78
|
+
attr_accessor name: ::String
|
|
79
|
+
attr_accessor event_bus_arn: ::String
|
|
80
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
81
|
+
attr_accessor creation_time: ::Time
|
|
82
|
+
SENSITIVE: []
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
class CreateSubscriberRequest
|
|
86
|
+
attr_accessor name: ::String
|
|
87
|
+
attr_accessor event_bus_arn: ::String
|
|
88
|
+
attr_accessor invoke_configuration: Types::InvokeConfiguration
|
|
89
|
+
attr_accessor description: ::String
|
|
90
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
|
91
|
+
attr_accessor type: ("FIFO" | "UNORDERED")
|
|
92
|
+
attr_accessor starting_position: ("LATEST" | "POINT_IN_TIME")
|
|
93
|
+
attr_accessor point_in_time_configuration: Types::PointInTimeConfiguration
|
|
94
|
+
attr_accessor batch_configuration: Types::BatchConfiguration
|
|
95
|
+
attr_accessor transformer: Types::Transformer
|
|
96
|
+
attr_accessor retry_policy: Types::RetryPolicy
|
|
97
|
+
attr_accessor on_failure_configuration: Types::OnFailureConfiguration
|
|
98
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
|
99
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
100
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
101
|
+
attr_accessor client_token: ::String
|
|
102
|
+
SENSITIVE: []
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
class CreateSubscriberResponse
|
|
106
|
+
attr_accessor subscriber_arn: ::String
|
|
107
|
+
attr_accessor name: ::String
|
|
108
|
+
attr_accessor event_bus_arn: ::String
|
|
109
|
+
attr_accessor type: ("FIFO" | "UNORDERED")
|
|
110
|
+
attr_accessor starting_position: ("LATEST" | "POINT_IN_TIME")
|
|
111
|
+
attr_accessor point_in_time_configuration: Types::PointInTimeConfiguration
|
|
112
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
113
|
+
attr_accessor creation_time: ::Time
|
|
114
|
+
SENSITIVE: []
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
class DeduplicationConfiguration
|
|
118
|
+
attr_accessor deduplication_type: ("CONTENT_BASED")
|
|
119
|
+
SENSITIVE: []
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
class DeleteEventBusRequest
|
|
123
|
+
attr_accessor event_bus_arn: ::String
|
|
124
|
+
SENSITIVE: []
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class DeleteEventBusResponse < Aws::EmptyStructure
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
class DeleteEventSourceRequest
|
|
131
|
+
attr_accessor event_source_arn: ::String
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class DeleteEventSourceResponse < Aws::EmptyStructure
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
class DeleteResourcePolicyRequest
|
|
139
|
+
attr_accessor resource_arn: ::String
|
|
140
|
+
attr_accessor policy_name: ::String
|
|
141
|
+
attr_accessor expected_revision_id: ::String
|
|
142
|
+
SENSITIVE: []
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class DeleteResourcePolicyResponse
|
|
146
|
+
attr_accessor revision_id: ::String
|
|
147
|
+
SENSITIVE: []
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
class DeleteSubscriberRequest
|
|
151
|
+
attr_accessor subscriber_arn: ::String
|
|
152
|
+
SENSITIVE: []
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
class DeleteSubscriberResponse < Aws::EmptyStructure
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
class DescribeEventBusRequest
|
|
159
|
+
attr_accessor event_bus_arn: ::String
|
|
160
|
+
SENSITIVE: []
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
class DescribeEventBusResponse
|
|
164
|
+
attr_accessor event_bus_arn: ::String
|
|
165
|
+
attr_accessor name: ::String
|
|
166
|
+
attr_accessor description: ::String
|
|
167
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
168
|
+
attr_accessor storage_configuration: Types::StorageConfigurationOutput
|
|
169
|
+
attr_accessor creation_time: ::Time
|
|
170
|
+
attr_accessor last_modified_time: ::Time
|
|
171
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ACTIVE" | "DELETE_FAILED")
|
|
172
|
+
attr_accessor state_reason: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class DescribeEventSourceRequest
|
|
177
|
+
attr_accessor event_source_arn: ::String
|
|
178
|
+
SENSITIVE: []
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class DescribeEventSourceResponse
|
|
182
|
+
attr_accessor event_source_arn: ::String
|
|
183
|
+
attr_accessor name: ::String
|
|
184
|
+
attr_accessor event_bus_arn: ::String
|
|
185
|
+
attr_accessor configuration: Types::EventSourceConfiguration
|
|
186
|
+
attr_accessor description: ::String
|
|
187
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
188
|
+
attr_accessor revoked: bool
|
|
189
|
+
attr_accessor creation_time: ::Time
|
|
190
|
+
attr_accessor last_modified_time: ::Time
|
|
191
|
+
SENSITIVE: []
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
class DescribeSubscriberRequest
|
|
195
|
+
attr_accessor subscriber_arn: ::String
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
class DescribeSubscriberResponse
|
|
200
|
+
attr_accessor subscriber_arn: ::String
|
|
201
|
+
attr_accessor name: ::String
|
|
202
|
+
attr_accessor event_bus_arn: ::String
|
|
203
|
+
attr_accessor invoke_configuration: Types::InvokeConfiguration
|
|
204
|
+
attr_accessor description: ::String
|
|
205
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
|
206
|
+
attr_accessor type: ("FIFO" | "UNORDERED")
|
|
207
|
+
attr_accessor starting_position: ("LATEST" | "POINT_IN_TIME")
|
|
208
|
+
attr_accessor point_in_time_configuration: Types::PointInTimeConfiguration
|
|
209
|
+
attr_accessor batch_configuration: Types::BatchConfiguration
|
|
210
|
+
attr_accessor transformer: Types::Transformer
|
|
211
|
+
attr_accessor retry_policy: Types::RetryPolicy
|
|
212
|
+
attr_accessor on_failure_configuration: Types::OnFailureConfiguration
|
|
213
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
|
214
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
215
|
+
attr_accessor revoked: bool
|
|
216
|
+
attr_accessor creation_time: ::Time
|
|
217
|
+
attr_accessor last_modified_time: ::Time
|
|
218
|
+
SENSITIVE: []
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
class EncryptionConfiguration
|
|
222
|
+
attr_accessor kms_key_identifier: ::String
|
|
223
|
+
SENSITIVE: []
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
class EventBusSummary
|
|
227
|
+
attr_accessor name: ::String
|
|
228
|
+
attr_accessor event_bus_arn: ::String
|
|
229
|
+
attr_accessor description: ::String
|
|
230
|
+
attr_accessor creation_time: ::Time
|
|
231
|
+
attr_accessor last_modified_time: ::Time
|
|
232
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ACTIVE" | "DELETE_FAILED")
|
|
233
|
+
attr_accessor state_reason: ::String
|
|
234
|
+
attr_accessor event_bus_account_id: ::String
|
|
235
|
+
SENSITIVE: []
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
class EventBusV2Parameters
|
|
239
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
240
|
+
attr_accessor system_metadata: Types::EventBusV2SystemMetadata
|
|
241
|
+
attr_accessor deduplication_configuration: Types::DeduplicationConfiguration
|
|
242
|
+
SENSITIVE: []
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
class EventBusV2SystemMetadata
|
|
246
|
+
attr_accessor event_group_id: ::String
|
|
247
|
+
attr_accessor deduplication_id: ::String
|
|
248
|
+
SENSITIVE: []
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
class EventSourceConfiguration
|
|
252
|
+
attr_accessor aws_service_events_configuration: Types::AwsServiceEventsSourceConfiguration
|
|
253
|
+
attr_accessor partner_events_configuration: Types::PartnerEventsSourceConfiguration
|
|
254
|
+
attr_accessor unknown: untyped
|
|
255
|
+
SENSITIVE: []
|
|
256
|
+
|
|
257
|
+
class AwsServiceEventsConfiguration < EventSourceConfiguration
|
|
258
|
+
end
|
|
259
|
+
class PartnerEventsConfiguration < EventSourceConfiguration
|
|
260
|
+
end
|
|
261
|
+
class Unknown < EventSourceConfiguration
|
|
262
|
+
end
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
class EventSourceSummary
|
|
266
|
+
attr_accessor event_source_arn: ::String
|
|
267
|
+
attr_accessor name: ::String
|
|
268
|
+
attr_accessor event_bus_arn: ::String
|
|
269
|
+
attr_accessor type: ("AWS_SERVICE_EVENTS" | "PARTNER_EVENTS")
|
|
270
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
271
|
+
attr_accessor revoked: bool
|
|
272
|
+
attr_accessor creation_time: ::Time
|
|
273
|
+
attr_accessor last_modified_time: ::Time
|
|
274
|
+
attr_accessor event_source_account_id: ::String
|
|
275
|
+
SENSITIVE: []
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
class Filter
|
|
279
|
+
attr_accessor pattern: ::String
|
|
280
|
+
attr_accessor scope: ("DATA" | "METADATA" | "SYSTEM_METADATA")
|
|
281
|
+
SENSITIVE: [:pattern]
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
class FilterConfiguration
|
|
285
|
+
attr_accessor language: ("EVENT_BRIDGE_PATTERN")
|
|
286
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
287
|
+
SENSITIVE: []
|
|
288
|
+
end
|
|
289
|
+
|
|
290
|
+
class GetResourcePolicyRequest
|
|
291
|
+
attr_accessor resource_arn: ::String
|
|
292
|
+
attr_accessor policy_name: ::String
|
|
293
|
+
SENSITIVE: []
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
class GetResourcePolicyResponse
|
|
297
|
+
attr_accessor resource_arn: ::String
|
|
298
|
+
attr_accessor policy_document: ::String
|
|
299
|
+
attr_accessor policy_name: ::String
|
|
300
|
+
attr_accessor revision_id: ::String
|
|
301
|
+
SENSITIVE: []
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
class HttpParameters
|
|
305
|
+
attr_accessor path_parameter_values: ::Array[::String]
|
|
306
|
+
attr_accessor header_parameters: ::Hash[::String, ::String]
|
|
307
|
+
attr_accessor query_string_parameters: ::Hash[::String, ::String]
|
|
308
|
+
attr_accessor invocation_timeout_seconds: ::String
|
|
309
|
+
SENSITIVE: []
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
class IdempotentParameterMismatchException
|
|
313
|
+
attr_accessor message: ::String
|
|
314
|
+
SENSITIVE: []
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
class InternalException
|
|
318
|
+
attr_accessor message: ::String
|
|
319
|
+
SENSITIVE: []
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class InvalidInputException
|
|
323
|
+
attr_accessor message: ::String
|
|
324
|
+
SENSITIVE: []
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
class InvalidStateException
|
|
328
|
+
attr_accessor message: ::String
|
|
329
|
+
SENSITIVE: []
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
class InvokeConfiguration
|
|
333
|
+
attr_accessor role_arn: ::String
|
|
334
|
+
attr_accessor lambda_parameters: Types::LambdaParameters
|
|
335
|
+
attr_accessor sqs_parameters: Types::SqsParameters
|
|
336
|
+
attr_accessor sns_parameters: Types::SnsParameters
|
|
337
|
+
attr_accessor kinesis_parameters: Types::KinesisParameters
|
|
338
|
+
attr_accessor step_functions_parameters: Types::StepFunctionsParameters
|
|
339
|
+
attr_accessor http_parameters: Types::HttpParameters
|
|
340
|
+
attr_accessor universal_target_parameters: Types::UniversalTargetParameters
|
|
341
|
+
attr_accessor event_bus_v2_parameters: Types::EventBusV2Parameters
|
|
342
|
+
attr_accessor target_arn: ::String
|
|
343
|
+
SENSITIVE: [:lambda_parameters, :sqs_parameters, :sns_parameters, :kinesis_parameters, :step_functions_parameters, :http_parameters, :universal_target_parameters, :event_bus_v2_parameters]
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
class JsonataConfiguration
|
|
347
|
+
attr_accessor expression: ::String
|
|
348
|
+
SENSITIVE: []
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
class KinesisParameters
|
|
352
|
+
attr_accessor partition_key: ::String
|
|
353
|
+
attr_accessor explicit_hash_key: ::String
|
|
354
|
+
SENSITIVE: []
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
class LambdaParameters
|
|
358
|
+
attr_accessor invocation_type: ("EVENT" | "REQUEST_RESPONSE")
|
|
359
|
+
attr_accessor qualifier: ::String
|
|
360
|
+
attr_accessor durable_execution_name: ::String
|
|
361
|
+
attr_accessor tenant_id: ::String
|
|
362
|
+
attr_accessor invocation_timeout_seconds: ::String
|
|
363
|
+
SENSITIVE: []
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
class LimitExceededException
|
|
367
|
+
attr_accessor message: ::String
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class ListEventBusesRequest
|
|
372
|
+
attr_accessor name_prefix: ::String
|
|
373
|
+
attr_accessor event_bus_account_id: ::String
|
|
374
|
+
attr_accessor next_token: ::String
|
|
375
|
+
attr_accessor max_results: ::Integer
|
|
376
|
+
SENSITIVE: []
|
|
377
|
+
end
|
|
378
|
+
|
|
379
|
+
class ListEventBusesResponse
|
|
380
|
+
attr_accessor event_buses: ::Array[Types::EventBusSummary]
|
|
381
|
+
attr_accessor next_token: ::String
|
|
382
|
+
SENSITIVE: []
|
|
383
|
+
end
|
|
384
|
+
|
|
385
|
+
class ListEventSourcesRequest
|
|
386
|
+
attr_accessor event_bus_arn: ::String
|
|
387
|
+
attr_accessor name_prefix: ::String
|
|
388
|
+
attr_accessor next_token: ::String
|
|
389
|
+
attr_accessor max_results: ::Integer
|
|
390
|
+
SENSITIVE: []
|
|
391
|
+
end
|
|
392
|
+
|
|
393
|
+
class ListEventSourcesResponse
|
|
394
|
+
attr_accessor event_sources: ::Array[Types::EventSourceSummary]
|
|
395
|
+
attr_accessor next_token: ::String
|
|
396
|
+
SENSITIVE: []
|
|
397
|
+
end
|
|
398
|
+
|
|
399
|
+
class ListResourcePoliciesRequest
|
|
400
|
+
attr_accessor resource_arn: ::String
|
|
401
|
+
attr_accessor next_token: ::String
|
|
402
|
+
attr_accessor max_results: ::Integer
|
|
403
|
+
SENSITIVE: []
|
|
404
|
+
end
|
|
405
|
+
|
|
406
|
+
class ListResourcePoliciesResponse
|
|
407
|
+
attr_accessor policy_summaries: ::Array[Types::ResourcePolicySummary]
|
|
408
|
+
attr_accessor next_token: ::String
|
|
409
|
+
SENSITIVE: []
|
|
410
|
+
end
|
|
411
|
+
|
|
412
|
+
class ListSubscribersRequest
|
|
413
|
+
attr_accessor event_bus_arn: ::String
|
|
414
|
+
attr_accessor name_prefix: ::String
|
|
415
|
+
attr_accessor next_token: ::String
|
|
416
|
+
attr_accessor max_results: ::Integer
|
|
417
|
+
SENSITIVE: []
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
class ListSubscribersResponse
|
|
421
|
+
attr_accessor subscribers: ::Array[Types::SubscriberSummary]
|
|
422
|
+
attr_accessor next_token: ::String
|
|
423
|
+
SENSITIVE: []
|
|
424
|
+
end
|
|
425
|
+
|
|
426
|
+
class ListTagsForResourceRequest
|
|
427
|
+
attr_accessor resource_arn: ::String
|
|
428
|
+
SENSITIVE: []
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
class ListTagsForResourceResponse
|
|
432
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
433
|
+
SENSITIVE: []
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
class LogConfiguration
|
|
437
|
+
attr_accessor level: ("OFF" | "ERROR" | "INFO")
|
|
438
|
+
attr_accessor include_payload: ("FULL" | "ON_ERROR_ONLY")
|
|
439
|
+
SENSITIVE: []
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
class OnFailureConfiguration
|
|
443
|
+
attr_accessor arn: ::String
|
|
444
|
+
SENSITIVE: []
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
class PartnerEventsSourceConfiguration
|
|
448
|
+
attr_accessor partner_event_source_arn: ::String
|
|
449
|
+
attr_accessor pattern: ::String
|
|
450
|
+
attr_accessor partner_bus_kms_key_identifier: ::String
|
|
451
|
+
attr_accessor on_failure_configuration: Types::OnFailureConfiguration
|
|
452
|
+
SENSITIVE: [:pattern]
|
|
453
|
+
end
|
|
454
|
+
|
|
455
|
+
class PointInTimeConfiguration
|
|
456
|
+
attr_accessor point_type: ("HORIZON" | "TIMESTAMP")
|
|
457
|
+
attr_accessor starting_point: ::Time
|
|
458
|
+
attr_accessor end_point: ::Time
|
|
459
|
+
SENSITIVE: []
|
|
460
|
+
end
|
|
461
|
+
|
|
462
|
+
class PolicyLengthExceededException
|
|
463
|
+
attr_accessor message: ::String
|
|
464
|
+
SENSITIVE: []
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
class PublicPolicyException
|
|
468
|
+
attr_accessor message: ::String
|
|
469
|
+
SENSITIVE: []
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
class PutEventsRequest
|
|
473
|
+
attr_accessor event_bus_arn: ::String
|
|
474
|
+
attr_accessor entries: ::Array[Types::PutEventsRequestEntry]
|
|
475
|
+
attr_accessor deduplication_configuration: Types::DeduplicationConfiguration
|
|
476
|
+
SENSITIVE: []
|
|
477
|
+
end
|
|
478
|
+
|
|
479
|
+
class PutEventsRequestEntry
|
|
480
|
+
attr_accessor source: ::String
|
|
481
|
+
attr_accessor detail_type: ::String
|
|
482
|
+
attr_accessor detail: ::String
|
|
483
|
+
attr_accessor resources: ::Array[::String]
|
|
484
|
+
attr_accessor time: ::Time
|
|
485
|
+
attr_accessor system_metadata: Types::PutEventsSystemMetadata
|
|
486
|
+
SENSITIVE: [:detail]
|
|
487
|
+
end
|
|
488
|
+
|
|
489
|
+
class PutEventsResponse
|
|
490
|
+
attr_accessor failed_entry_count: ::Integer
|
|
491
|
+
attr_accessor entries: ::Array[Types::PutEventsResultEntry]
|
|
492
|
+
SENSITIVE: []
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
class PutEventsResultEntry
|
|
496
|
+
attr_accessor event_id: ::String
|
|
497
|
+
attr_accessor sequence_number: ::String
|
|
498
|
+
attr_accessor success_code: ("PUBLISHED" | "DEDUPLICATED")
|
|
499
|
+
attr_accessor error_code: ::String
|
|
500
|
+
attr_accessor error_message: ::String
|
|
501
|
+
SENSITIVE: []
|
|
502
|
+
end
|
|
503
|
+
|
|
504
|
+
class PutEventsSystemMetadata
|
|
505
|
+
attr_accessor event_group_id: ::String
|
|
506
|
+
attr_accessor deduplication_id: ::String
|
|
507
|
+
SENSITIVE: []
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
class PutRawEventsRequest
|
|
511
|
+
attr_accessor event_bus_arn: ::String
|
|
512
|
+
attr_accessor entries: ::Array[Types::PutRawEventsRequestEntry]
|
|
513
|
+
attr_accessor schema_registry_configuration: Types::SchemaRegistryConfiguration
|
|
514
|
+
attr_accessor deduplication_configuration: Types::DeduplicationConfiguration
|
|
515
|
+
SENSITIVE: []
|
|
516
|
+
end
|
|
517
|
+
|
|
518
|
+
class PutRawEventsRequestEntry
|
|
519
|
+
attr_accessor data: ::String
|
|
520
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
521
|
+
attr_accessor system_metadata: Types::PutRawEventsSystemMetadata
|
|
522
|
+
SENSITIVE: [:data]
|
|
523
|
+
end
|
|
524
|
+
|
|
525
|
+
class PutRawEventsResponse
|
|
526
|
+
attr_accessor failed_entry_count: ::Integer
|
|
527
|
+
attr_accessor entries: ::Array[Types::PutRawEventsResultEntry]
|
|
528
|
+
SENSITIVE: []
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
class PutRawEventsResultEntry
|
|
532
|
+
attr_accessor event_id: ::String
|
|
533
|
+
attr_accessor sequence_number: ::String
|
|
534
|
+
attr_accessor success_code: ("PUBLISHED" | "DEDUPLICATED")
|
|
535
|
+
attr_accessor error_code: ::String
|
|
536
|
+
attr_accessor error_message: ::String
|
|
537
|
+
SENSITIVE: []
|
|
538
|
+
end
|
|
539
|
+
|
|
540
|
+
class PutRawEventsSystemMetadata
|
|
541
|
+
attr_accessor content_type: ::String
|
|
542
|
+
attr_accessor deduplication_id: ::String
|
|
543
|
+
attr_accessor event_group_id: ::String
|
|
544
|
+
SENSITIVE: []
|
|
545
|
+
end
|
|
546
|
+
|
|
547
|
+
class PutResourcePolicyRequest
|
|
548
|
+
attr_accessor resource_arn: ::String
|
|
549
|
+
attr_accessor policy_document: ::String
|
|
550
|
+
attr_accessor policy_name: ::String
|
|
551
|
+
attr_accessor expected_revision_id: ::String
|
|
552
|
+
SENSITIVE: []
|
|
553
|
+
end
|
|
554
|
+
|
|
555
|
+
class PutResourcePolicyResponse
|
|
556
|
+
attr_accessor resource_arn: ::String
|
|
557
|
+
attr_accessor policy_name: ::String
|
|
558
|
+
attr_accessor revision_id: ::String
|
|
559
|
+
SENSITIVE: []
|
|
560
|
+
end
|
|
561
|
+
|
|
562
|
+
class ResourceAlreadyExistsException
|
|
563
|
+
attr_accessor message: ::String
|
|
564
|
+
SENSITIVE: []
|
|
565
|
+
end
|
|
566
|
+
|
|
567
|
+
class ResourceInUseException
|
|
568
|
+
attr_accessor message: ::String
|
|
569
|
+
SENSITIVE: []
|
|
570
|
+
end
|
|
571
|
+
|
|
572
|
+
class ResourceNotFoundException
|
|
573
|
+
attr_accessor message: ::String
|
|
574
|
+
SENSITIVE: []
|
|
575
|
+
end
|
|
576
|
+
|
|
577
|
+
class ResourcePolicySummary
|
|
578
|
+
attr_accessor policy_name: ::String
|
|
579
|
+
attr_accessor revision_id: ::String
|
|
580
|
+
SENSITIVE: []
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
class RetryPolicy
|
|
584
|
+
attr_accessor max_retry_attempts: ::Integer
|
|
585
|
+
attr_accessor max_event_age_in_seconds: ::Integer
|
|
586
|
+
attr_accessor retry_strategy: ("ALL")
|
|
587
|
+
SENSITIVE: []
|
|
588
|
+
end
|
|
589
|
+
|
|
590
|
+
class RevokeResourceRequest
|
|
591
|
+
attr_accessor arn: ::String
|
|
592
|
+
SENSITIVE: []
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
class RevokeResourceResponse
|
|
596
|
+
attr_accessor arn: ::String
|
|
597
|
+
SENSITIVE: []
|
|
598
|
+
end
|
|
599
|
+
|
|
600
|
+
class SchemaRegistryConfiguration
|
|
601
|
+
attr_accessor registry_uri: ::String
|
|
602
|
+
attr_accessor confluent_public_registry_configuration: Types::ConfluentPublicRegistryConfiguration
|
|
603
|
+
SENSITIVE: []
|
|
604
|
+
end
|
|
605
|
+
|
|
606
|
+
class SchemaRegistryUnavailableException
|
|
607
|
+
attr_accessor message: ::String
|
|
608
|
+
SENSITIVE: []
|
|
609
|
+
end
|
|
610
|
+
|
|
611
|
+
class SnsMessageAttributeValue
|
|
612
|
+
attr_accessor data_type: ::String
|
|
613
|
+
attr_accessor string_value: ::String
|
|
614
|
+
attr_accessor binary_value: ::String
|
|
615
|
+
SENSITIVE: []
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
class SnsParameters
|
|
619
|
+
attr_accessor message_group_id: ::String
|
|
620
|
+
attr_accessor message_deduplication_id: ::String
|
|
621
|
+
attr_accessor subject: ::String
|
|
622
|
+
attr_accessor message_structure: ::String
|
|
623
|
+
attr_accessor message_attributes: ::Hash[::String, Types::SnsMessageAttributeValue]
|
|
624
|
+
SENSITIVE: []
|
|
625
|
+
end
|
|
626
|
+
|
|
627
|
+
class SqsMessageAttributeValue
|
|
628
|
+
attr_accessor data_type: ::String
|
|
629
|
+
attr_accessor string_value: ::String
|
|
630
|
+
attr_accessor binary_value: ::String
|
|
631
|
+
SENSITIVE: []
|
|
632
|
+
end
|
|
633
|
+
|
|
634
|
+
class SqsParameters
|
|
635
|
+
attr_accessor message_group_id: ::String
|
|
636
|
+
attr_accessor message_deduplication_id: ::String
|
|
637
|
+
attr_accessor delay_seconds: ::String
|
|
638
|
+
attr_accessor message_attributes: ::Hash[::String, Types::SqsMessageAttributeValue]
|
|
639
|
+
attr_accessor message_system_attributes: ::Hash[::String, Types::SqsMessageAttributeValue]
|
|
640
|
+
SENSITIVE: []
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
class StepFunctionsParameters
|
|
644
|
+
attr_accessor invocation_type: ("EVENT" | "REQUEST_RESPONSE")
|
|
645
|
+
attr_accessor name: ::String
|
|
646
|
+
attr_accessor trace_header: ::String
|
|
647
|
+
attr_accessor invocation_timeout_seconds: ::String
|
|
648
|
+
SENSITIVE: []
|
|
649
|
+
end
|
|
650
|
+
|
|
651
|
+
class StorageConfiguration
|
|
652
|
+
attr_accessor retention_period_in_days: ::Integer
|
|
653
|
+
SENSITIVE: []
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
class StorageConfigurationOutput
|
|
657
|
+
attr_accessor retention_period_in_days: ::Integer
|
|
658
|
+
attr_accessor retention_window_start_time: ::Time
|
|
659
|
+
SENSITIVE: []
|
|
660
|
+
end
|
|
661
|
+
|
|
662
|
+
class SubscriberSummary
|
|
663
|
+
attr_accessor subscriber_arn: ::String
|
|
664
|
+
attr_accessor name: ::String
|
|
665
|
+
attr_accessor event_bus_arn: ::String
|
|
666
|
+
attr_accessor target_arn: ::String
|
|
667
|
+
attr_accessor type: ("FIFO" | "UNORDERED")
|
|
668
|
+
attr_accessor revoked: bool
|
|
669
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
670
|
+
attr_accessor creation_time: ::Time
|
|
671
|
+
attr_accessor last_modified_time: ::Time
|
|
672
|
+
attr_accessor subscriber_account_id: ::String
|
|
673
|
+
SENSITIVE: []
|
|
674
|
+
end
|
|
675
|
+
|
|
676
|
+
class TagResourceRequest
|
|
677
|
+
attr_accessor resource_arn: ::String
|
|
678
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
679
|
+
SENSITIVE: []
|
|
680
|
+
end
|
|
681
|
+
|
|
682
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
683
|
+
end
|
|
684
|
+
|
|
685
|
+
class ThrottlingException
|
|
686
|
+
attr_accessor message: ::String
|
|
687
|
+
SENSITIVE: []
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
class Transformer
|
|
691
|
+
attr_accessor type: ("RAW" | "WITH_METADATA" | "JSONATA")
|
|
692
|
+
attr_accessor jsonata_configuration: Types::JsonataConfiguration
|
|
693
|
+
SENSITIVE: [:jsonata_configuration]
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
class UniversalTargetParameters
|
|
697
|
+
attr_accessor input: ::String
|
|
698
|
+
attr_accessor invocation_timeout_seconds: ::String
|
|
699
|
+
SENSITIVE: []
|
|
700
|
+
end
|
|
701
|
+
|
|
702
|
+
class UntagResourceRequest
|
|
703
|
+
attr_accessor resource_arn: ::String
|
|
704
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
705
|
+
SENSITIVE: []
|
|
706
|
+
end
|
|
707
|
+
|
|
708
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
709
|
+
end
|
|
710
|
+
|
|
711
|
+
class UpdateEventBusRequest
|
|
712
|
+
attr_accessor event_bus_arn: ::String
|
|
713
|
+
attr_accessor description: ::String
|
|
714
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
715
|
+
attr_accessor storage_configuration: Types::StorageConfiguration
|
|
716
|
+
SENSITIVE: []
|
|
717
|
+
end
|
|
718
|
+
|
|
719
|
+
class UpdateEventBusResponse
|
|
720
|
+
attr_accessor event_bus_arn: ::String
|
|
721
|
+
attr_accessor name: ::String
|
|
722
|
+
attr_accessor description: ::String
|
|
723
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
724
|
+
attr_accessor storage_configuration: Types::StorageConfigurationOutput
|
|
725
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ACTIVE" | "DELETE_FAILED")
|
|
726
|
+
attr_accessor state_reason: ::String
|
|
727
|
+
attr_accessor last_modified_time: ::Time
|
|
728
|
+
SENSITIVE: []
|
|
729
|
+
end
|
|
730
|
+
|
|
731
|
+
class UpdateEventSourceRequest
|
|
732
|
+
attr_accessor event_source_arn: ::String
|
|
733
|
+
attr_accessor configuration: Types::EventSourceConfiguration
|
|
734
|
+
attr_accessor description: ::String
|
|
735
|
+
SENSITIVE: []
|
|
736
|
+
end
|
|
737
|
+
|
|
738
|
+
class UpdateEventSourceResponse
|
|
739
|
+
attr_accessor event_source_arn: ::String
|
|
740
|
+
attr_accessor name: ::String
|
|
741
|
+
attr_accessor event_bus_arn: ::String
|
|
742
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
743
|
+
attr_accessor last_modified_time: ::Time
|
|
744
|
+
SENSITIVE: []
|
|
745
|
+
end
|
|
746
|
+
|
|
747
|
+
class UpdateInvokeConfiguration
|
|
748
|
+
attr_accessor role_arn: ::String
|
|
749
|
+
attr_accessor lambda_parameters: Types::LambdaParameters
|
|
750
|
+
attr_accessor sqs_parameters: Types::SqsParameters
|
|
751
|
+
attr_accessor sns_parameters: Types::SnsParameters
|
|
752
|
+
attr_accessor kinesis_parameters: Types::KinesisParameters
|
|
753
|
+
attr_accessor step_functions_parameters: Types::StepFunctionsParameters
|
|
754
|
+
attr_accessor http_parameters: Types::HttpParameters
|
|
755
|
+
attr_accessor universal_target_parameters: Types::UniversalTargetParameters
|
|
756
|
+
attr_accessor event_bus_v2_parameters: Types::EventBusV2Parameters
|
|
757
|
+
SENSITIVE: [:lambda_parameters, :sqs_parameters, :sns_parameters, :kinesis_parameters, :step_functions_parameters, :http_parameters, :universal_target_parameters, :event_bus_v2_parameters]
|
|
758
|
+
end
|
|
759
|
+
|
|
760
|
+
class UpdateSubscriberRequest
|
|
761
|
+
attr_accessor subscriber_arn: ::String
|
|
762
|
+
attr_accessor description: ::String
|
|
763
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
764
|
+
attr_accessor resume_position: ("LAST_PROCESSED" | "LATEST")
|
|
765
|
+
attr_accessor invoke_configuration: Types::UpdateInvokeConfiguration
|
|
766
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
|
767
|
+
attr_accessor batch_configuration: Types::BatchConfiguration
|
|
768
|
+
attr_accessor transformer: Types::Transformer
|
|
769
|
+
attr_accessor retry_policy: Types::RetryPolicy
|
|
770
|
+
attr_accessor on_failure_configuration: Types::OnFailureConfiguration
|
|
771
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
|
772
|
+
SENSITIVE: []
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
class UpdateSubscriberResponse
|
|
776
|
+
attr_accessor subscriber_arn: ::String
|
|
777
|
+
attr_accessor name: ::String
|
|
778
|
+
attr_accessor event_bus_arn: ::String
|
|
779
|
+
attr_accessor type: ("FIFO" | "UNORDERED")
|
|
780
|
+
attr_accessor starting_position: ("LATEST" | "POINT_IN_TIME")
|
|
781
|
+
attr_accessor point_in_time_configuration: Types::PointInTimeConfiguration
|
|
782
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
|
783
|
+
attr_accessor last_modified_time: ::Time
|
|
784
|
+
SENSITIVE: []
|
|
785
|
+
end
|
|
786
|
+
end
|
|
787
|
+
end
|