aws-sdk-iotevents 1.44.0 → 1.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotevents/client.rb +1 -1
- data/lib/aws-sdk-iotevents/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iotevents.rb +1 -1
- data/sig/client.rbs +2116 -0
- data/sig/errors.rbs +45 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +809 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,809 @@
|
|
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::IoTEvents
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AcknowledgeFlow
|
12
|
+
attr_accessor enabled: bool
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Action
|
17
|
+
attr_accessor set_variable: Types::SetVariableAction
|
18
|
+
attr_accessor sns: Types::SNSTopicPublishAction
|
19
|
+
attr_accessor iot_topic_publish: Types::IotTopicPublishAction
|
20
|
+
attr_accessor set_timer: Types::SetTimerAction
|
21
|
+
attr_accessor clear_timer: Types::ClearTimerAction
|
22
|
+
attr_accessor reset_timer: Types::ResetTimerAction
|
23
|
+
attr_accessor lambda: Types::LambdaAction
|
24
|
+
attr_accessor iot_events: Types::IotEventsAction
|
25
|
+
attr_accessor sqs: Types::SqsAction
|
26
|
+
attr_accessor firehose: Types::FirehoseAction
|
27
|
+
attr_accessor dynamo_db: Types::DynamoDBAction
|
28
|
+
attr_accessor dynamo_d_bv_2: Types::DynamoDBv2Action
|
29
|
+
attr_accessor iot_site_wise: Types::IotSiteWiseAction
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class AlarmAction
|
34
|
+
attr_accessor sns: Types::SNSTopicPublishAction
|
35
|
+
attr_accessor iot_topic_publish: Types::IotTopicPublishAction
|
36
|
+
attr_accessor lambda: Types::LambdaAction
|
37
|
+
attr_accessor iot_events: Types::IotEventsAction
|
38
|
+
attr_accessor sqs: Types::SqsAction
|
39
|
+
attr_accessor firehose: Types::FirehoseAction
|
40
|
+
attr_accessor dynamo_db: Types::DynamoDBAction
|
41
|
+
attr_accessor dynamo_d_bv_2: Types::DynamoDBv2Action
|
42
|
+
attr_accessor iot_site_wise: Types::IotSiteWiseAction
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class AlarmCapabilities
|
47
|
+
attr_accessor initialization_configuration: Types::InitializationConfiguration
|
48
|
+
attr_accessor acknowledge_flow: Types::AcknowledgeFlow
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class AlarmEventActions
|
53
|
+
attr_accessor alarm_actions: ::Array[Types::AlarmAction]
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class AlarmModelSummary
|
58
|
+
attr_accessor creation_time: ::Time
|
59
|
+
attr_accessor alarm_model_description: ::String
|
60
|
+
attr_accessor alarm_model_name: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class AlarmModelVersionSummary
|
65
|
+
attr_accessor alarm_model_name: ::String
|
66
|
+
attr_accessor alarm_model_arn: ::String
|
67
|
+
attr_accessor alarm_model_version: ::String
|
68
|
+
attr_accessor role_arn: ::String
|
69
|
+
attr_accessor creation_time: ::Time
|
70
|
+
attr_accessor last_update_time: ::Time
|
71
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "FAILED")
|
72
|
+
attr_accessor status_message: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class AlarmNotification
|
77
|
+
attr_accessor notification_actions: ::Array[Types::NotificationAction]
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class AlarmRule
|
82
|
+
attr_accessor simple_rule: Types::SimpleRule
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class AnalysisResult
|
87
|
+
attr_accessor type: ::String
|
88
|
+
attr_accessor level: ("INFO" | "WARNING" | "ERROR")
|
89
|
+
attr_accessor message: ::String
|
90
|
+
attr_accessor locations: ::Array[Types::AnalysisResultLocation]
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class AnalysisResultLocation
|
95
|
+
attr_accessor path: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class AssetPropertyTimestamp
|
100
|
+
attr_accessor time_in_seconds: ::String
|
101
|
+
attr_accessor offset_in_nanos: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class AssetPropertyValue
|
106
|
+
attr_accessor value: Types::AssetPropertyVariant
|
107
|
+
attr_accessor timestamp: Types::AssetPropertyTimestamp
|
108
|
+
attr_accessor quality: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class AssetPropertyVariant
|
113
|
+
attr_accessor string_value: ::String
|
114
|
+
attr_accessor integer_value: ::String
|
115
|
+
attr_accessor double_value: ::String
|
116
|
+
attr_accessor boolean_value: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class Attribute
|
121
|
+
attr_accessor json_path: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class ClearTimerAction
|
126
|
+
attr_accessor timer_name: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class CreateAlarmModelRequest
|
131
|
+
attr_accessor alarm_model_name: ::String
|
132
|
+
attr_accessor alarm_model_description: ::String
|
133
|
+
attr_accessor role_arn: ::String
|
134
|
+
attr_accessor tags: ::Array[Types::Tag]
|
135
|
+
attr_accessor key: ::String
|
136
|
+
attr_accessor severity: ::Integer
|
137
|
+
attr_accessor alarm_rule: Types::AlarmRule
|
138
|
+
attr_accessor alarm_notification: Types::AlarmNotification
|
139
|
+
attr_accessor alarm_event_actions: Types::AlarmEventActions
|
140
|
+
attr_accessor alarm_capabilities: Types::AlarmCapabilities
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateAlarmModelResponse
|
145
|
+
attr_accessor creation_time: ::Time
|
146
|
+
attr_accessor alarm_model_arn: ::String
|
147
|
+
attr_accessor alarm_model_version: ::String
|
148
|
+
attr_accessor last_update_time: ::Time
|
149
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "FAILED")
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class CreateDetectorModelRequest
|
154
|
+
attr_accessor detector_model_name: ::String
|
155
|
+
attr_accessor detector_model_definition: Types::DetectorModelDefinition
|
156
|
+
attr_accessor detector_model_description: ::String
|
157
|
+
attr_accessor key: ::String
|
158
|
+
attr_accessor role_arn: ::String
|
159
|
+
attr_accessor tags: ::Array[Types::Tag]
|
160
|
+
attr_accessor evaluation_method: ("BATCH" | "SERIAL")
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateDetectorModelResponse
|
165
|
+
attr_accessor detector_model_configuration: Types::DetectorModelConfiguration
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CreateInputRequest
|
170
|
+
attr_accessor input_name: ::String
|
171
|
+
attr_accessor input_description: ::String
|
172
|
+
attr_accessor input_definition: Types::InputDefinition
|
173
|
+
attr_accessor tags: ::Array[Types::Tag]
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CreateInputResponse
|
178
|
+
attr_accessor input_configuration: Types::InputConfiguration
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class DeleteAlarmModelRequest
|
183
|
+
attr_accessor alarm_model_name: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DeleteAlarmModelResponse < Aws::EmptyStructure
|
188
|
+
end
|
189
|
+
|
190
|
+
class DeleteDetectorModelRequest
|
191
|
+
attr_accessor detector_model_name: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class DeleteDetectorModelResponse < Aws::EmptyStructure
|
196
|
+
end
|
197
|
+
|
198
|
+
class DeleteInputRequest
|
199
|
+
attr_accessor input_name: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class DeleteInputResponse < Aws::EmptyStructure
|
204
|
+
end
|
205
|
+
|
206
|
+
class DescribeAlarmModelRequest
|
207
|
+
attr_accessor alarm_model_name: ::String
|
208
|
+
attr_accessor alarm_model_version: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class DescribeAlarmModelResponse
|
213
|
+
attr_accessor creation_time: ::Time
|
214
|
+
attr_accessor alarm_model_arn: ::String
|
215
|
+
attr_accessor alarm_model_version: ::String
|
216
|
+
attr_accessor last_update_time: ::Time
|
217
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "FAILED")
|
218
|
+
attr_accessor status_message: ::String
|
219
|
+
attr_accessor alarm_model_name: ::String
|
220
|
+
attr_accessor alarm_model_description: ::String
|
221
|
+
attr_accessor role_arn: ::String
|
222
|
+
attr_accessor key: ::String
|
223
|
+
attr_accessor severity: ::Integer
|
224
|
+
attr_accessor alarm_rule: Types::AlarmRule
|
225
|
+
attr_accessor alarm_notification: Types::AlarmNotification
|
226
|
+
attr_accessor alarm_event_actions: Types::AlarmEventActions
|
227
|
+
attr_accessor alarm_capabilities: Types::AlarmCapabilities
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class DescribeDetectorModelAnalysisRequest
|
232
|
+
attr_accessor analysis_id: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class DescribeDetectorModelAnalysisResponse
|
237
|
+
attr_accessor status: ("RUNNING" | "COMPLETE" | "FAILED")
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class DescribeDetectorModelRequest
|
242
|
+
attr_accessor detector_model_name: ::String
|
243
|
+
attr_accessor detector_model_version: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class DescribeDetectorModelResponse
|
248
|
+
attr_accessor detector_model: Types::DetectorModel
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class DescribeInputRequest
|
253
|
+
attr_accessor input_name: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class DescribeInputResponse
|
258
|
+
attr_accessor input: Types::Input
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class DescribeLoggingOptionsRequest < Aws::EmptyStructure
|
263
|
+
end
|
264
|
+
|
265
|
+
class DescribeLoggingOptionsResponse
|
266
|
+
attr_accessor logging_options: Types::LoggingOptions
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class DetectorDebugOption
|
271
|
+
attr_accessor detector_model_name: ::String
|
272
|
+
attr_accessor key_value: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class DetectorModel
|
277
|
+
attr_accessor detector_model_definition: Types::DetectorModelDefinition
|
278
|
+
attr_accessor detector_model_configuration: Types::DetectorModelConfiguration
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class DetectorModelConfiguration
|
283
|
+
attr_accessor detector_model_name: ::String
|
284
|
+
attr_accessor detector_model_version: ::String
|
285
|
+
attr_accessor detector_model_description: ::String
|
286
|
+
attr_accessor detector_model_arn: ::String
|
287
|
+
attr_accessor role_arn: ::String
|
288
|
+
attr_accessor creation_time: ::Time
|
289
|
+
attr_accessor last_update_time: ::Time
|
290
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "DEPRECATED" | "DRAFT" | "PAUSED" | "FAILED")
|
291
|
+
attr_accessor key: ::String
|
292
|
+
attr_accessor evaluation_method: ("BATCH" | "SERIAL")
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class DetectorModelDefinition
|
297
|
+
attr_accessor states: ::Array[Types::State]
|
298
|
+
attr_accessor initial_state_name: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class DetectorModelSummary
|
303
|
+
attr_accessor detector_model_name: ::String
|
304
|
+
attr_accessor detector_model_description: ::String
|
305
|
+
attr_accessor creation_time: ::Time
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DetectorModelVersionSummary
|
310
|
+
attr_accessor detector_model_name: ::String
|
311
|
+
attr_accessor detector_model_version: ::String
|
312
|
+
attr_accessor detector_model_arn: ::String
|
313
|
+
attr_accessor role_arn: ::String
|
314
|
+
attr_accessor creation_time: ::Time
|
315
|
+
attr_accessor last_update_time: ::Time
|
316
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "DEPRECATED" | "DRAFT" | "PAUSED" | "FAILED")
|
317
|
+
attr_accessor evaluation_method: ("BATCH" | "SERIAL")
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class DynamoDBAction
|
322
|
+
attr_accessor hash_key_type: ::String
|
323
|
+
attr_accessor hash_key_field: ::String
|
324
|
+
attr_accessor hash_key_value: ::String
|
325
|
+
attr_accessor range_key_type: ::String
|
326
|
+
attr_accessor range_key_field: ::String
|
327
|
+
attr_accessor range_key_value: ::String
|
328
|
+
attr_accessor operation: ::String
|
329
|
+
attr_accessor payload_field: ::String
|
330
|
+
attr_accessor table_name: ::String
|
331
|
+
attr_accessor payload: Types::Payload
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DynamoDBv2Action
|
336
|
+
attr_accessor table_name: ::String
|
337
|
+
attr_accessor payload: Types::Payload
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class EmailConfiguration
|
342
|
+
attr_accessor from: ::String
|
343
|
+
attr_accessor content: Types::EmailContent
|
344
|
+
attr_accessor recipients: Types::EmailRecipients
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class EmailContent
|
349
|
+
attr_accessor subject: ::String
|
350
|
+
attr_accessor additional_message: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class EmailRecipients
|
355
|
+
attr_accessor to: ::Array[Types::RecipientDetail]
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class Event
|
360
|
+
attr_accessor event_name: ::String
|
361
|
+
attr_accessor condition: ::String
|
362
|
+
attr_accessor actions: ::Array[Types::Action]
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class FirehoseAction
|
367
|
+
attr_accessor delivery_stream_name: ::String
|
368
|
+
attr_accessor separator: ::String
|
369
|
+
attr_accessor payload: Types::Payload
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class GetDetectorModelAnalysisResultsRequest
|
374
|
+
attr_accessor analysis_id: ::String
|
375
|
+
attr_accessor next_token: ::String
|
376
|
+
attr_accessor max_results: ::Integer
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class GetDetectorModelAnalysisResultsResponse
|
381
|
+
attr_accessor analysis_results: ::Array[Types::AnalysisResult]
|
382
|
+
attr_accessor next_token: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class InitializationConfiguration
|
387
|
+
attr_accessor disabled_on_initialization: bool
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class Input
|
392
|
+
attr_accessor input_configuration: Types::InputConfiguration
|
393
|
+
attr_accessor input_definition: Types::InputDefinition
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class InputConfiguration
|
398
|
+
attr_accessor input_name: ::String
|
399
|
+
attr_accessor input_description: ::String
|
400
|
+
attr_accessor input_arn: ::String
|
401
|
+
attr_accessor creation_time: ::Time
|
402
|
+
attr_accessor last_update_time: ::Time
|
403
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "DELETING")
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class InputDefinition
|
408
|
+
attr_accessor attributes: ::Array[Types::Attribute]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class InputIdentifier
|
413
|
+
attr_accessor iot_events_input_identifier: Types::IotEventsInputIdentifier
|
414
|
+
attr_accessor iot_site_wise_input_identifier: Types::IotSiteWiseInputIdentifier
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class InputSummary
|
419
|
+
attr_accessor input_name: ::String
|
420
|
+
attr_accessor input_description: ::String
|
421
|
+
attr_accessor input_arn: ::String
|
422
|
+
attr_accessor creation_time: ::Time
|
423
|
+
attr_accessor last_update_time: ::Time
|
424
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "DELETING")
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class InternalFailureException
|
429
|
+
attr_accessor message: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class InvalidRequestException
|
434
|
+
attr_accessor message: ::String
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class IotEventsAction
|
439
|
+
attr_accessor input_name: ::String
|
440
|
+
attr_accessor payload: Types::Payload
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class IotEventsInputIdentifier
|
445
|
+
attr_accessor input_name: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class IotSiteWiseAction
|
450
|
+
attr_accessor entry_id: ::String
|
451
|
+
attr_accessor asset_id: ::String
|
452
|
+
attr_accessor property_id: ::String
|
453
|
+
attr_accessor property_alias: ::String
|
454
|
+
attr_accessor property_value: Types::AssetPropertyValue
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class IotSiteWiseAssetModelPropertyIdentifier
|
459
|
+
attr_accessor asset_model_id: ::String
|
460
|
+
attr_accessor property_id: ::String
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class IotSiteWiseInputIdentifier
|
465
|
+
attr_accessor iot_site_wise_asset_model_property_identifier: Types::IotSiteWiseAssetModelPropertyIdentifier
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class IotTopicPublishAction
|
470
|
+
attr_accessor mqtt_topic: ::String
|
471
|
+
attr_accessor payload: Types::Payload
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class LambdaAction
|
476
|
+
attr_accessor function_arn: ::String
|
477
|
+
attr_accessor payload: Types::Payload
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class LimitExceededException
|
482
|
+
attr_accessor message: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class ListAlarmModelVersionsRequest
|
487
|
+
attr_accessor alarm_model_name: ::String
|
488
|
+
attr_accessor next_token: ::String
|
489
|
+
attr_accessor max_results: ::Integer
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class ListAlarmModelVersionsResponse
|
494
|
+
attr_accessor alarm_model_version_summaries: ::Array[Types::AlarmModelVersionSummary]
|
495
|
+
attr_accessor next_token: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class ListAlarmModelsRequest
|
500
|
+
attr_accessor next_token: ::String
|
501
|
+
attr_accessor max_results: ::Integer
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ListAlarmModelsResponse
|
506
|
+
attr_accessor alarm_model_summaries: ::Array[Types::AlarmModelSummary]
|
507
|
+
attr_accessor next_token: ::String
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class ListDetectorModelVersionsRequest
|
512
|
+
attr_accessor detector_model_name: ::String
|
513
|
+
attr_accessor next_token: ::String
|
514
|
+
attr_accessor max_results: ::Integer
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class ListDetectorModelVersionsResponse
|
519
|
+
attr_accessor detector_model_version_summaries: ::Array[Types::DetectorModelVersionSummary]
|
520
|
+
attr_accessor next_token: ::String
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class ListDetectorModelsRequest
|
525
|
+
attr_accessor next_token: ::String
|
526
|
+
attr_accessor max_results: ::Integer
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class ListDetectorModelsResponse
|
531
|
+
attr_accessor detector_model_summaries: ::Array[Types::DetectorModelSummary]
|
532
|
+
attr_accessor next_token: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class ListInputRoutingsRequest
|
537
|
+
attr_accessor input_identifier: Types::InputIdentifier
|
538
|
+
attr_accessor max_results: ::Integer
|
539
|
+
attr_accessor next_token: ::String
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class ListInputRoutingsResponse
|
544
|
+
attr_accessor routed_resources: ::Array[Types::RoutedResource]
|
545
|
+
attr_accessor next_token: ::String
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class ListInputsRequest
|
550
|
+
attr_accessor next_token: ::String
|
551
|
+
attr_accessor max_results: ::Integer
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class ListInputsResponse
|
556
|
+
attr_accessor input_summaries: ::Array[Types::InputSummary]
|
557
|
+
attr_accessor next_token: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class ListTagsForResourceRequest
|
562
|
+
attr_accessor resource_arn: ::String
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class ListTagsForResourceResponse
|
567
|
+
attr_accessor tags: ::Array[Types::Tag]
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class LoggingOptions
|
572
|
+
attr_accessor role_arn: ::String
|
573
|
+
attr_accessor level: ("ERROR" | "INFO" | "DEBUG")
|
574
|
+
attr_accessor enabled: bool
|
575
|
+
attr_accessor detector_debug_options: ::Array[Types::DetectorDebugOption]
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class NotificationAction
|
580
|
+
attr_accessor action: Types::NotificationTargetActions
|
581
|
+
attr_accessor sms_configurations: ::Array[Types::SMSConfiguration]
|
582
|
+
attr_accessor email_configurations: ::Array[Types::EmailConfiguration]
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class NotificationTargetActions
|
587
|
+
attr_accessor lambda_action: Types::LambdaAction
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class OnEnterLifecycle
|
592
|
+
attr_accessor events: ::Array[Types::Event]
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class OnExitLifecycle
|
597
|
+
attr_accessor events: ::Array[Types::Event]
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class OnInputLifecycle
|
602
|
+
attr_accessor events: ::Array[Types::Event]
|
603
|
+
attr_accessor transition_events: ::Array[Types::TransitionEvent]
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class Payload
|
608
|
+
attr_accessor content_expression: ::String
|
609
|
+
attr_accessor type: ("STRING" | "JSON")
|
610
|
+
SENSITIVE: []
|
611
|
+
end
|
612
|
+
|
613
|
+
class PutLoggingOptionsRequest
|
614
|
+
attr_accessor logging_options: Types::LoggingOptions
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class RecipientDetail
|
619
|
+
attr_accessor sso_identity: Types::SSOIdentity
|
620
|
+
SENSITIVE: []
|
621
|
+
end
|
622
|
+
|
623
|
+
class ResetTimerAction
|
624
|
+
attr_accessor timer_name: ::String
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class ResourceAlreadyExistsException
|
629
|
+
attr_accessor message: ::String
|
630
|
+
attr_accessor resource_id: ::String
|
631
|
+
attr_accessor resource_arn: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class ResourceInUseException
|
636
|
+
attr_accessor message: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class ResourceNotFoundException
|
641
|
+
attr_accessor message: ::String
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class RoutedResource
|
646
|
+
attr_accessor name: ::String
|
647
|
+
attr_accessor arn: ::String
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class SMSConfiguration
|
652
|
+
attr_accessor sender_id: ::String
|
653
|
+
attr_accessor additional_message: ::String
|
654
|
+
attr_accessor recipients: ::Array[Types::RecipientDetail]
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class SNSTopicPublishAction
|
659
|
+
attr_accessor target_arn: ::String
|
660
|
+
attr_accessor payload: Types::Payload
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class SSOIdentity
|
665
|
+
attr_accessor identity_store_id: ::String
|
666
|
+
attr_accessor user_id: ::String
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class ServiceUnavailableException
|
671
|
+
attr_accessor message: ::String
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class SetTimerAction
|
676
|
+
attr_accessor timer_name: ::String
|
677
|
+
attr_accessor seconds: ::Integer
|
678
|
+
attr_accessor duration_expression: ::String
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class SetVariableAction
|
683
|
+
attr_accessor variable_name: ::String
|
684
|
+
attr_accessor value: ::String
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class SimpleRule
|
689
|
+
attr_accessor input_property: ::String
|
690
|
+
attr_accessor comparison_operator: ("GREATER" | "GREATER_OR_EQUAL" | "LESS" | "LESS_OR_EQUAL" | "EQUAL" | "NOT_EQUAL")
|
691
|
+
attr_accessor threshold: ::String
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class SqsAction
|
696
|
+
attr_accessor queue_url: ::String
|
697
|
+
attr_accessor use_base_64: bool
|
698
|
+
attr_accessor payload: Types::Payload
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class StartDetectorModelAnalysisRequest
|
703
|
+
attr_accessor detector_model_definition: Types::DetectorModelDefinition
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
707
|
+
class StartDetectorModelAnalysisResponse
|
708
|
+
attr_accessor analysis_id: ::String
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class State
|
713
|
+
attr_accessor state_name: ::String
|
714
|
+
attr_accessor on_input: Types::OnInputLifecycle
|
715
|
+
attr_accessor on_enter: Types::OnEnterLifecycle
|
716
|
+
attr_accessor on_exit: Types::OnExitLifecycle
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class Tag
|
721
|
+
attr_accessor key: ::String
|
722
|
+
attr_accessor value: ::String
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class TagResourceRequest
|
727
|
+
attr_accessor resource_arn: ::String
|
728
|
+
attr_accessor tags: ::Array[Types::Tag]
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class TagResourceResponse < Aws::EmptyStructure
|
733
|
+
end
|
734
|
+
|
735
|
+
class ThrottlingException
|
736
|
+
attr_accessor message: ::String
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class TransitionEvent
|
741
|
+
attr_accessor event_name: ::String
|
742
|
+
attr_accessor condition: ::String
|
743
|
+
attr_accessor actions: ::Array[Types::Action]
|
744
|
+
attr_accessor next_state: ::String
|
745
|
+
SENSITIVE: []
|
746
|
+
end
|
747
|
+
|
748
|
+
class UnsupportedOperationException
|
749
|
+
attr_accessor message: ::String
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class UntagResourceRequest
|
754
|
+
attr_accessor resource_arn: ::String
|
755
|
+
attr_accessor tag_keys: ::Array[::String]
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
760
|
+
end
|
761
|
+
|
762
|
+
class UpdateAlarmModelRequest
|
763
|
+
attr_accessor alarm_model_name: ::String
|
764
|
+
attr_accessor alarm_model_description: ::String
|
765
|
+
attr_accessor role_arn: ::String
|
766
|
+
attr_accessor severity: ::Integer
|
767
|
+
attr_accessor alarm_rule: Types::AlarmRule
|
768
|
+
attr_accessor alarm_notification: Types::AlarmNotification
|
769
|
+
attr_accessor alarm_event_actions: Types::AlarmEventActions
|
770
|
+
attr_accessor alarm_capabilities: Types::AlarmCapabilities
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class UpdateAlarmModelResponse
|
775
|
+
attr_accessor creation_time: ::Time
|
776
|
+
attr_accessor alarm_model_arn: ::String
|
777
|
+
attr_accessor alarm_model_version: ::String
|
778
|
+
attr_accessor last_update_time: ::Time
|
779
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "INACTIVE" | "FAILED")
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class UpdateDetectorModelRequest
|
784
|
+
attr_accessor detector_model_name: ::String
|
785
|
+
attr_accessor detector_model_definition: Types::DetectorModelDefinition
|
786
|
+
attr_accessor detector_model_description: ::String
|
787
|
+
attr_accessor role_arn: ::String
|
788
|
+
attr_accessor evaluation_method: ("BATCH" | "SERIAL")
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class UpdateDetectorModelResponse
|
793
|
+
attr_accessor detector_model_configuration: Types::DetectorModelConfiguration
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class UpdateInputRequest
|
798
|
+
attr_accessor input_name: ::String
|
799
|
+
attr_accessor input_description: ::String
|
800
|
+
attr_accessor input_definition: Types::InputDefinition
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class UpdateInputResponse
|
805
|
+
attr_accessor input_configuration: Types::InputConfiguration
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
end
|
809
|
+
end
|