aws-sdk-lookoutmetrics 1.33.0 → 1.35.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lookoutmetrics/client.rb +70 -46
- data/lib/aws-sdk-lookoutmetrics/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-lookoutmetrics.rb +1 -1
- data/sig/client.rbs +710 -0
- data/sig/errors.rbs +47 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +857 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,857 @@
|
|
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::LookoutMetrics
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Action
|
17
|
+
attr_accessor sns_configuration: Types::SNSConfiguration
|
18
|
+
attr_accessor lambda_configuration: Types::LambdaConfiguration
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class ActivateAnomalyDetectorRequest
|
23
|
+
attr_accessor anomaly_detector_arn: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class ActivateAnomalyDetectorResponse < Aws::EmptyStructure
|
28
|
+
end
|
29
|
+
|
30
|
+
class Alert
|
31
|
+
attr_accessor action: Types::Action
|
32
|
+
attr_accessor alert_description: ::String
|
33
|
+
attr_accessor alert_arn: ::String
|
34
|
+
attr_accessor anomaly_detector_arn: ::String
|
35
|
+
attr_accessor alert_name: ::String
|
36
|
+
attr_accessor alert_sensitivity_threshold: ::Integer
|
37
|
+
attr_accessor alert_type: ("SNS" | "LAMBDA")
|
38
|
+
attr_accessor alert_status: ("ACTIVE" | "INACTIVE")
|
39
|
+
attr_accessor last_modification_time: ::Time
|
40
|
+
attr_accessor creation_time: ::Time
|
41
|
+
attr_accessor alert_filters: Types::AlertFilters
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AlertFilters
|
46
|
+
attr_accessor metric_list: ::Array[::String]
|
47
|
+
attr_accessor dimension_filter_list: ::Array[Types::DimensionFilter]
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class AlertSummary
|
52
|
+
attr_accessor alert_arn: ::String
|
53
|
+
attr_accessor anomaly_detector_arn: ::String
|
54
|
+
attr_accessor alert_name: ::String
|
55
|
+
attr_accessor alert_sensitivity_threshold: ::Integer
|
56
|
+
attr_accessor alert_type: ("SNS" | "LAMBDA")
|
57
|
+
attr_accessor alert_status: ("ACTIVE" | "INACTIVE")
|
58
|
+
attr_accessor last_modification_time: ::Time
|
59
|
+
attr_accessor creation_time: ::Time
|
60
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class AnomalyDetectorConfig
|
65
|
+
attr_accessor anomaly_detector_frequency: ("P1D" | "PT1H" | "PT10M" | "PT5M")
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class AnomalyDetectorConfigSummary
|
70
|
+
attr_accessor anomaly_detector_frequency: ("P1D" | "PT1H" | "PT10M" | "PT5M")
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class AnomalyDetectorDataQualityMetric
|
75
|
+
attr_accessor start_timestamp: ::Time
|
76
|
+
attr_accessor metric_set_data_quality_metric_list: ::Array[Types::MetricSetDataQualityMetric]
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class AnomalyDetectorSummary
|
81
|
+
attr_accessor anomaly_detector_arn: ::String
|
82
|
+
attr_accessor anomaly_detector_name: ::String
|
83
|
+
attr_accessor anomaly_detector_description: ::String
|
84
|
+
attr_accessor creation_time: ::Time
|
85
|
+
attr_accessor last_modification_time: ::Time
|
86
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "DELETING" | "FAILED" | "INACTIVE" | "LEARNING" | "BACK_TEST_ACTIVATING" | "BACK_TEST_ACTIVE" | "BACK_TEST_COMPLETE" | "DEACTIVATED" | "DEACTIVATING")
|
87
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class AnomalyGroup
|
92
|
+
attr_accessor start_time: ::String
|
93
|
+
attr_accessor end_time: ::String
|
94
|
+
attr_accessor anomaly_group_id: ::String
|
95
|
+
attr_accessor anomaly_group_score: ::Float
|
96
|
+
attr_accessor primary_metric_name: ::String
|
97
|
+
attr_accessor metric_level_impact_list: ::Array[Types::MetricLevelImpact]
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class AnomalyGroupStatistics
|
102
|
+
attr_accessor evaluation_start_date: ::String
|
103
|
+
attr_accessor total_count: ::Integer
|
104
|
+
attr_accessor itemized_metric_stats_list: ::Array[Types::ItemizedMetricStats]
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class AnomalyGroupSummary
|
109
|
+
attr_accessor start_time: ::String
|
110
|
+
attr_accessor end_time: ::String
|
111
|
+
attr_accessor anomaly_group_id: ::String
|
112
|
+
attr_accessor anomaly_group_score: ::Float
|
113
|
+
attr_accessor primary_metric_name: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class AnomalyGroupTimeSeries
|
118
|
+
attr_accessor anomaly_group_id: ::String
|
119
|
+
attr_accessor time_series_id: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class AnomalyGroupTimeSeriesFeedback
|
124
|
+
attr_accessor anomaly_group_id: ::String
|
125
|
+
attr_accessor time_series_id: ::String
|
126
|
+
attr_accessor is_anomaly: bool
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class AppFlowConfig
|
131
|
+
attr_accessor role_arn: ::String
|
132
|
+
attr_accessor flow_name: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class AthenaSourceConfig
|
137
|
+
attr_accessor role_arn: ::String
|
138
|
+
attr_accessor database_name: ::String
|
139
|
+
attr_accessor data_catalog: ::String
|
140
|
+
attr_accessor table_name: ::String
|
141
|
+
attr_accessor work_group_name: ::String
|
142
|
+
attr_accessor s3_results_path: ::String
|
143
|
+
attr_accessor back_test_configuration: Types::BackTestConfiguration
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class AttributeValue
|
148
|
+
attr_accessor s: ::String
|
149
|
+
attr_accessor n: ::String
|
150
|
+
attr_accessor b: ::String
|
151
|
+
attr_accessor ss: ::Array[::String]
|
152
|
+
attr_accessor ns: ::Array[::String]
|
153
|
+
attr_accessor bs: ::Array[::String]
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class AutoDetectionMetricSource
|
158
|
+
attr_accessor s3_source_config: Types::AutoDetectionS3SourceConfig
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class AutoDetectionS3SourceConfig
|
163
|
+
attr_accessor templated_path_list: ::Array[::String]
|
164
|
+
attr_accessor historical_data_path_list: ::Array[::String]
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class BackTestAnomalyDetectorRequest
|
169
|
+
attr_accessor anomaly_detector_arn: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class BackTestAnomalyDetectorResponse < Aws::EmptyStructure
|
174
|
+
end
|
175
|
+
|
176
|
+
class BackTestConfiguration
|
177
|
+
attr_accessor run_back_test_mode: bool
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class CloudWatchConfig
|
182
|
+
attr_accessor role_arn: ::String
|
183
|
+
attr_accessor back_test_configuration: Types::BackTestConfiguration
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ConflictException
|
188
|
+
attr_accessor message: ::String
|
189
|
+
attr_accessor resource_id: ::String
|
190
|
+
attr_accessor resource_type: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class ContributionMatrix
|
195
|
+
attr_accessor dimension_contribution_list: ::Array[Types::DimensionContribution]
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateAlertRequest
|
200
|
+
attr_accessor alert_name: ::String
|
201
|
+
attr_accessor alert_sensitivity_threshold: ::Integer
|
202
|
+
attr_accessor alert_description: ::String
|
203
|
+
attr_accessor anomaly_detector_arn: ::String
|
204
|
+
attr_accessor action: Types::Action
|
205
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
206
|
+
attr_accessor alert_filters: Types::AlertFilters
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class CreateAlertResponse
|
211
|
+
attr_accessor alert_arn: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class CreateAnomalyDetectorRequest
|
216
|
+
attr_accessor anomaly_detector_name: ::String
|
217
|
+
attr_accessor anomaly_detector_description: ::String
|
218
|
+
attr_accessor anomaly_detector_config: Types::AnomalyDetectorConfig
|
219
|
+
attr_accessor kms_key_arn: ::String
|
220
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateAnomalyDetectorResponse
|
225
|
+
attr_accessor anomaly_detector_arn: ::String
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class CreateMetricSetRequest
|
230
|
+
attr_accessor anomaly_detector_arn: ::String
|
231
|
+
attr_accessor metric_set_name: ::String
|
232
|
+
attr_accessor metric_set_description: ::String
|
233
|
+
attr_accessor metric_list: ::Array[Types::Metric]
|
234
|
+
attr_accessor offset: ::Integer
|
235
|
+
attr_accessor timestamp_column: Types::TimestampColumn
|
236
|
+
attr_accessor dimension_list: ::Array[::String]
|
237
|
+
attr_accessor metric_set_frequency: ("P1D" | "PT1H" | "PT10M" | "PT5M")
|
238
|
+
attr_accessor metric_source: Types::MetricSource
|
239
|
+
attr_accessor timezone: ::String
|
240
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
241
|
+
attr_accessor dimension_filter_list: ::Array[Types::MetricSetDimensionFilter]
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class CreateMetricSetResponse
|
246
|
+
attr_accessor metric_set_arn: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class CsvFormatDescriptor
|
251
|
+
attr_accessor file_compression: ("NONE" | "GZIP")
|
252
|
+
attr_accessor charset: ::String
|
253
|
+
attr_accessor contains_header: bool
|
254
|
+
attr_accessor delimiter: ::String
|
255
|
+
attr_accessor header_list: ::Array[::String]
|
256
|
+
attr_accessor quote_symbol: ::String
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class DataQualityMetric
|
261
|
+
attr_accessor metric_type: ("COLUMN_COMPLETENESS" | "DIMENSION_UNIQUENESS" | "TIME_SERIES_COUNT" | "ROWS_PROCESSED" | "ROWS_PARTIAL_COMPLIANCE" | "INVALID_ROWS_COMPLIANCE" | "BACKTEST_TRAINING_DATA_START_TIME_STAMP" | "BACKTEST_TRAINING_DATA_END_TIME_STAMP" | "BACKTEST_INFERENCE_DATA_START_TIME_STAMP" | "BACKTEST_INFERENCE_DATA_END_TIME_STAMP")
|
262
|
+
attr_accessor metric_description: ::String
|
263
|
+
attr_accessor related_column_name: ::String
|
264
|
+
attr_accessor metric_value: ::Float
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class DeactivateAnomalyDetectorRequest
|
269
|
+
attr_accessor anomaly_detector_arn: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class DeactivateAnomalyDetectorResponse < Aws::EmptyStructure
|
274
|
+
end
|
275
|
+
|
276
|
+
class DeleteAlertRequest
|
277
|
+
attr_accessor alert_arn: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DeleteAlertResponse < Aws::EmptyStructure
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteAnomalyDetectorRequest
|
285
|
+
attr_accessor anomaly_detector_arn: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteAnomalyDetectorResponse < Aws::EmptyStructure
|
290
|
+
end
|
291
|
+
|
292
|
+
class DescribeAlertRequest
|
293
|
+
attr_accessor alert_arn: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class DescribeAlertResponse
|
298
|
+
attr_accessor alert: Types::Alert
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class DescribeAnomalyDetectionExecutionsRequest
|
303
|
+
attr_accessor anomaly_detector_arn: ::String
|
304
|
+
attr_accessor timestamp: ::String
|
305
|
+
attr_accessor max_results: ::Integer
|
306
|
+
attr_accessor next_token: ::String
|
307
|
+
SENSITIVE: []
|
308
|
+
end
|
309
|
+
|
310
|
+
class DescribeAnomalyDetectionExecutionsResponse
|
311
|
+
attr_accessor execution_list: ::Array[Types::ExecutionStatus]
|
312
|
+
attr_accessor next_token: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class DescribeAnomalyDetectorRequest
|
317
|
+
attr_accessor anomaly_detector_arn: ::String
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class DescribeAnomalyDetectorResponse
|
322
|
+
attr_accessor anomaly_detector_arn: ::String
|
323
|
+
attr_accessor anomaly_detector_name: ::String
|
324
|
+
attr_accessor anomaly_detector_description: ::String
|
325
|
+
attr_accessor anomaly_detector_config: Types::AnomalyDetectorConfigSummary
|
326
|
+
attr_accessor creation_time: ::Time
|
327
|
+
attr_accessor last_modification_time: ::Time
|
328
|
+
attr_accessor status: ("ACTIVE" | "ACTIVATING" | "DELETING" | "FAILED" | "INACTIVE" | "LEARNING" | "BACK_TEST_ACTIVATING" | "BACK_TEST_ACTIVE" | "BACK_TEST_COMPLETE" | "DEACTIVATED" | "DEACTIVATING")
|
329
|
+
attr_accessor failure_reason: ::String
|
330
|
+
attr_accessor kms_key_arn: ::String
|
331
|
+
attr_accessor failure_type: ("ACTIVATION_FAILURE" | "BACK_TEST_ACTIVATION_FAILURE" | "DELETION_FAILURE" | "DEACTIVATION_FAILURE")
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DescribeMetricSetRequest
|
336
|
+
attr_accessor metric_set_arn: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class DescribeMetricSetResponse
|
341
|
+
attr_accessor metric_set_arn: ::String
|
342
|
+
attr_accessor anomaly_detector_arn: ::String
|
343
|
+
attr_accessor metric_set_name: ::String
|
344
|
+
attr_accessor metric_set_description: ::String
|
345
|
+
attr_accessor creation_time: ::Time
|
346
|
+
attr_accessor last_modification_time: ::Time
|
347
|
+
attr_accessor offset: ::Integer
|
348
|
+
attr_accessor metric_list: ::Array[Types::Metric]
|
349
|
+
attr_accessor timestamp_column: Types::TimestampColumn
|
350
|
+
attr_accessor dimension_list: ::Array[::String]
|
351
|
+
attr_accessor metric_set_frequency: ("P1D" | "PT1H" | "PT10M" | "PT5M")
|
352
|
+
attr_accessor timezone: ::String
|
353
|
+
attr_accessor metric_source: Types::MetricSource
|
354
|
+
attr_accessor dimension_filter_list: ::Array[Types::MetricSetDimensionFilter]
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DetectMetricSetConfigRequest
|
359
|
+
attr_accessor anomaly_detector_arn: ::String
|
360
|
+
attr_accessor auto_detection_metric_source: Types::AutoDetectionMetricSource
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class DetectMetricSetConfigResponse
|
365
|
+
attr_accessor detected_metric_set_config: Types::DetectedMetricSetConfig
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DetectedCsvFormatDescriptor
|
370
|
+
attr_accessor file_compression: Types::DetectedField
|
371
|
+
attr_accessor charset: Types::DetectedField
|
372
|
+
attr_accessor contains_header: Types::DetectedField
|
373
|
+
attr_accessor delimiter: Types::DetectedField
|
374
|
+
attr_accessor header_list: Types::DetectedField
|
375
|
+
attr_accessor quote_symbol: Types::DetectedField
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class DetectedField
|
380
|
+
attr_accessor value: Types::AttributeValue
|
381
|
+
attr_accessor confidence: ("HIGH" | "LOW" | "NONE")
|
382
|
+
attr_accessor message: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DetectedFileFormatDescriptor
|
387
|
+
attr_accessor csv_format_descriptor: Types::DetectedCsvFormatDescriptor
|
388
|
+
attr_accessor json_format_descriptor: Types::DetectedJsonFormatDescriptor
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class DetectedJsonFormatDescriptor
|
393
|
+
attr_accessor file_compression: Types::DetectedField
|
394
|
+
attr_accessor charset: Types::DetectedField
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class DetectedMetricSetConfig
|
399
|
+
attr_accessor offset: Types::DetectedField
|
400
|
+
attr_accessor metric_set_frequency: Types::DetectedField
|
401
|
+
attr_accessor metric_source: Types::DetectedMetricSource
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class DetectedMetricSource
|
406
|
+
attr_accessor s3_source_config: Types::DetectedS3SourceConfig
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class DetectedS3SourceConfig
|
411
|
+
attr_accessor file_format_descriptor: Types::DetectedFileFormatDescriptor
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class DimensionContribution
|
416
|
+
attr_accessor dimension_name: ::String
|
417
|
+
attr_accessor dimension_value_contribution_list: ::Array[Types::DimensionValueContribution]
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DimensionFilter
|
422
|
+
attr_accessor dimension_name: ::String
|
423
|
+
attr_accessor dimension_value_list: ::Array[::String]
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class DimensionNameValue
|
428
|
+
attr_accessor dimension_name: ::String
|
429
|
+
attr_accessor dimension_value: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class DimensionValueContribution
|
434
|
+
attr_accessor dimension_value: ::String
|
435
|
+
attr_accessor contribution_score: ::Float
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class ExecutionStatus
|
440
|
+
attr_accessor timestamp: ::String
|
441
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "FAILED_TO_SCHEDULE")
|
442
|
+
attr_accessor failure_reason: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class FileFormatDescriptor
|
447
|
+
attr_accessor csv_format_descriptor: Types::CsvFormatDescriptor
|
448
|
+
attr_accessor json_format_descriptor: Types::JsonFormatDescriptor
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class Filter
|
453
|
+
attr_accessor dimension_value: ::String
|
454
|
+
attr_accessor filter_operation: ("EQUALS")
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetAnomalyGroupRequest
|
459
|
+
attr_accessor anomaly_group_id: ::String
|
460
|
+
attr_accessor anomaly_detector_arn: ::String
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class GetAnomalyGroupResponse
|
465
|
+
attr_accessor anomaly_group: Types::AnomalyGroup
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class GetDataQualityMetricsRequest
|
470
|
+
attr_accessor anomaly_detector_arn: ::String
|
471
|
+
attr_accessor metric_set_arn: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class GetDataQualityMetricsResponse
|
476
|
+
attr_accessor anomaly_detector_data_quality_metric_list: ::Array[Types::AnomalyDetectorDataQualityMetric]
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class GetFeedbackRequest
|
481
|
+
attr_accessor anomaly_detector_arn: ::String
|
482
|
+
attr_accessor anomaly_group_time_series_feedback: Types::AnomalyGroupTimeSeries
|
483
|
+
attr_accessor max_results: ::Integer
|
484
|
+
attr_accessor next_token: ::String
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class GetFeedbackResponse
|
489
|
+
attr_accessor anomaly_group_time_series_feedback: ::Array[Types::TimeSeriesFeedback]
|
490
|
+
attr_accessor next_token: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class GetSampleDataRequest
|
495
|
+
attr_accessor s3_source_config: Types::SampleDataS3SourceConfig
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class GetSampleDataResponse
|
500
|
+
attr_accessor header_values: ::Array[::String]
|
501
|
+
attr_accessor sample_rows: ::Array[::Array[::String]]
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class InterMetricImpactDetails
|
506
|
+
attr_accessor metric_name: ::String
|
507
|
+
attr_accessor anomaly_group_id: ::String
|
508
|
+
attr_accessor relationship_type: ("CAUSE_OF_INPUT_ANOMALY_GROUP" | "EFFECT_OF_INPUT_ANOMALY_GROUP")
|
509
|
+
attr_accessor contribution_percentage: ::Float
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class InternalServerException
|
514
|
+
attr_accessor message: ::String
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class ItemizedMetricStats
|
519
|
+
attr_accessor metric_name: ::String
|
520
|
+
attr_accessor occurrence_count: ::Integer
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class JsonFormatDescriptor
|
525
|
+
attr_accessor file_compression: ("NONE" | "GZIP")
|
526
|
+
attr_accessor charset: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class LambdaConfiguration
|
531
|
+
attr_accessor role_arn: ::String
|
532
|
+
attr_accessor lambda_arn: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class ListAlertsRequest
|
537
|
+
attr_accessor anomaly_detector_arn: ::String
|
538
|
+
attr_accessor next_token: ::String
|
539
|
+
attr_accessor max_results: ::Integer
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class ListAlertsResponse
|
544
|
+
attr_accessor alert_summary_list: ::Array[Types::AlertSummary]
|
545
|
+
attr_accessor next_token: ::String
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class ListAnomalyDetectorsRequest
|
550
|
+
attr_accessor max_results: ::Integer
|
551
|
+
attr_accessor next_token: ::String
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class ListAnomalyDetectorsResponse
|
556
|
+
attr_accessor anomaly_detector_summary_list: ::Array[Types::AnomalyDetectorSummary]
|
557
|
+
attr_accessor next_token: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class ListAnomalyGroupRelatedMetricsRequest
|
562
|
+
attr_accessor anomaly_detector_arn: ::String
|
563
|
+
attr_accessor anomaly_group_id: ::String
|
564
|
+
attr_accessor relationship_type_filter: ("CAUSE_OF_INPUT_ANOMALY_GROUP" | "EFFECT_OF_INPUT_ANOMALY_GROUP")
|
565
|
+
attr_accessor max_results: ::Integer
|
566
|
+
attr_accessor next_token: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class ListAnomalyGroupRelatedMetricsResponse
|
571
|
+
attr_accessor inter_metric_impact_list: ::Array[Types::InterMetricImpactDetails]
|
572
|
+
attr_accessor next_token: ::String
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class ListAnomalyGroupSummariesRequest
|
577
|
+
attr_accessor anomaly_detector_arn: ::String
|
578
|
+
attr_accessor sensitivity_threshold: ::Integer
|
579
|
+
attr_accessor max_results: ::Integer
|
580
|
+
attr_accessor next_token: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class ListAnomalyGroupSummariesResponse
|
585
|
+
attr_accessor anomaly_group_summary_list: ::Array[Types::AnomalyGroupSummary]
|
586
|
+
attr_accessor anomaly_group_statistics: Types::AnomalyGroupStatistics
|
587
|
+
attr_accessor next_token: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class ListAnomalyGroupTimeSeriesRequest
|
592
|
+
attr_accessor anomaly_detector_arn: ::String
|
593
|
+
attr_accessor anomaly_group_id: ::String
|
594
|
+
attr_accessor metric_name: ::String
|
595
|
+
attr_accessor max_results: ::Integer
|
596
|
+
attr_accessor next_token: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ListAnomalyGroupTimeSeriesResponse
|
601
|
+
attr_accessor anomaly_group_id: ::String
|
602
|
+
attr_accessor metric_name: ::String
|
603
|
+
attr_accessor timestamp_list: ::Array[::String]
|
604
|
+
attr_accessor next_token: ::String
|
605
|
+
attr_accessor time_series_list: ::Array[Types::TimeSeries]
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class ListMetricSetsRequest
|
610
|
+
attr_accessor anomaly_detector_arn: ::String
|
611
|
+
attr_accessor max_results: ::Integer
|
612
|
+
attr_accessor next_token: ::String
|
613
|
+
SENSITIVE: []
|
614
|
+
end
|
615
|
+
|
616
|
+
class ListMetricSetsResponse
|
617
|
+
attr_accessor metric_set_summary_list: ::Array[Types::MetricSetSummary]
|
618
|
+
attr_accessor next_token: ::String
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class ListTagsForResourceRequest
|
623
|
+
attr_accessor resource_arn: ::String
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class ListTagsForResourceResponse
|
628
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class Metric
|
633
|
+
attr_accessor metric_name: ::String
|
634
|
+
attr_accessor aggregation_function: ("AVG" | "SUM")
|
635
|
+
attr_accessor namespace: ::String
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class MetricLevelImpact
|
640
|
+
attr_accessor metric_name: ::String
|
641
|
+
attr_accessor num_time_series: ::Integer
|
642
|
+
attr_accessor contribution_matrix: Types::ContributionMatrix
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class MetricSetDataQualityMetric
|
647
|
+
attr_accessor metric_set_arn: ::String
|
648
|
+
attr_accessor data_quality_metric_list: ::Array[Types::DataQualityMetric]
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class MetricSetDimensionFilter
|
653
|
+
attr_accessor name: ::String
|
654
|
+
attr_accessor filter_list: ::Array[Types::Filter]
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class MetricSetSummary
|
659
|
+
attr_accessor metric_set_arn: ::String
|
660
|
+
attr_accessor anomaly_detector_arn: ::String
|
661
|
+
attr_accessor metric_set_description: ::String
|
662
|
+
attr_accessor metric_set_name: ::String
|
663
|
+
attr_accessor creation_time: ::Time
|
664
|
+
attr_accessor last_modification_time: ::Time
|
665
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class MetricSource
|
670
|
+
attr_accessor s3_source_config: Types::S3SourceConfig
|
671
|
+
attr_accessor app_flow_config: Types::AppFlowConfig
|
672
|
+
attr_accessor cloud_watch_config: Types::CloudWatchConfig
|
673
|
+
attr_accessor rds_source_config: Types::RDSSourceConfig
|
674
|
+
attr_accessor redshift_source_config: Types::RedshiftSourceConfig
|
675
|
+
attr_accessor athena_source_config: Types::AthenaSourceConfig
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class PutFeedbackRequest
|
680
|
+
attr_accessor anomaly_detector_arn: ::String
|
681
|
+
attr_accessor anomaly_group_time_series_feedback: Types::AnomalyGroupTimeSeriesFeedback
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class PutFeedbackResponse < Aws::EmptyStructure
|
686
|
+
end
|
687
|
+
|
688
|
+
class RDSSourceConfig
|
689
|
+
attr_accessor db_instance_identifier: ::String
|
690
|
+
attr_accessor database_host: ::String
|
691
|
+
attr_accessor database_port: ::Integer
|
692
|
+
attr_accessor secret_manager_arn: ::String
|
693
|
+
attr_accessor database_name: ::String
|
694
|
+
attr_accessor table_name: ::String
|
695
|
+
attr_accessor role_arn: ::String
|
696
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class RedshiftSourceConfig
|
701
|
+
attr_accessor cluster_identifier: ::String
|
702
|
+
attr_accessor database_host: ::String
|
703
|
+
attr_accessor database_port: ::Integer
|
704
|
+
attr_accessor secret_manager_arn: ::String
|
705
|
+
attr_accessor database_name: ::String
|
706
|
+
attr_accessor table_name: ::String
|
707
|
+
attr_accessor role_arn: ::String
|
708
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class ResourceNotFoundException
|
713
|
+
attr_accessor message: ::String
|
714
|
+
attr_accessor resource_id: ::String
|
715
|
+
attr_accessor resource_type: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class S3SourceConfig
|
720
|
+
attr_accessor role_arn: ::String
|
721
|
+
attr_accessor templated_path_list: ::Array[::String]
|
722
|
+
attr_accessor historical_data_path_list: ::Array[::String]
|
723
|
+
attr_accessor file_format_descriptor: Types::FileFormatDescriptor
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class SNSConfiguration
|
728
|
+
attr_accessor role_arn: ::String
|
729
|
+
attr_accessor sns_topic_arn: ::String
|
730
|
+
attr_accessor sns_format: ("LONG_TEXT" | "SHORT_TEXT" | "JSON")
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class SampleDataS3SourceConfig
|
735
|
+
attr_accessor role_arn: ::String
|
736
|
+
attr_accessor templated_path_list: ::Array[::String]
|
737
|
+
attr_accessor historical_data_path_list: ::Array[::String]
|
738
|
+
attr_accessor file_format_descriptor: Types::FileFormatDescriptor
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class ServiceQuotaExceededException
|
743
|
+
attr_accessor message: ::String
|
744
|
+
attr_accessor resource_id: ::String
|
745
|
+
attr_accessor resource_type: ::String
|
746
|
+
attr_accessor quota_code: ::String
|
747
|
+
attr_accessor service_code: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class TagResourceRequest
|
752
|
+
attr_accessor resource_arn: ::String
|
753
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class TagResourceResponse < Aws::EmptyStructure
|
758
|
+
end
|
759
|
+
|
760
|
+
class TimeSeries
|
761
|
+
attr_accessor time_series_id: ::String
|
762
|
+
attr_accessor dimension_list: ::Array[Types::DimensionNameValue]
|
763
|
+
attr_accessor metric_value_list: ::Array[::Float]
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class TimeSeriesFeedback
|
768
|
+
attr_accessor time_series_id: ::String
|
769
|
+
attr_accessor is_anomaly: bool
|
770
|
+
SENSITIVE: []
|
771
|
+
end
|
772
|
+
|
773
|
+
class TimestampColumn
|
774
|
+
attr_accessor column_name: ::String
|
775
|
+
attr_accessor column_format: ::String
|
776
|
+
SENSITIVE: []
|
777
|
+
end
|
778
|
+
|
779
|
+
class TooManyRequestsException
|
780
|
+
attr_accessor message: ::String
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class UntagResourceRequest
|
785
|
+
attr_accessor resource_arn: ::String
|
786
|
+
attr_accessor tag_keys: ::Array[::String]
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
791
|
+
end
|
792
|
+
|
793
|
+
class UpdateAlertRequest
|
794
|
+
attr_accessor alert_arn: ::String
|
795
|
+
attr_accessor alert_description: ::String
|
796
|
+
attr_accessor alert_sensitivity_threshold: ::Integer
|
797
|
+
attr_accessor action: Types::Action
|
798
|
+
attr_accessor alert_filters: Types::AlertFilters
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class UpdateAlertResponse
|
803
|
+
attr_accessor alert_arn: ::String
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
807
|
+
class UpdateAnomalyDetectorRequest
|
808
|
+
attr_accessor anomaly_detector_arn: ::String
|
809
|
+
attr_accessor kms_key_arn: ::String
|
810
|
+
attr_accessor anomaly_detector_description: ::String
|
811
|
+
attr_accessor anomaly_detector_config: Types::AnomalyDetectorConfig
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class UpdateAnomalyDetectorResponse
|
816
|
+
attr_accessor anomaly_detector_arn: ::String
|
817
|
+
SENSITIVE: []
|
818
|
+
end
|
819
|
+
|
820
|
+
class UpdateMetricSetRequest
|
821
|
+
attr_accessor metric_set_arn: ::String
|
822
|
+
attr_accessor metric_set_description: ::String
|
823
|
+
attr_accessor metric_list: ::Array[Types::Metric]
|
824
|
+
attr_accessor offset: ::Integer
|
825
|
+
attr_accessor timestamp_column: Types::TimestampColumn
|
826
|
+
attr_accessor dimension_list: ::Array[::String]
|
827
|
+
attr_accessor metric_set_frequency: ("P1D" | "PT1H" | "PT10M" | "PT5M")
|
828
|
+
attr_accessor metric_source: Types::MetricSource
|
829
|
+
attr_accessor dimension_filter_list: ::Array[Types::MetricSetDimensionFilter]
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class UpdateMetricSetResponse
|
834
|
+
attr_accessor metric_set_arn: ::String
|
835
|
+
SENSITIVE: []
|
836
|
+
end
|
837
|
+
|
838
|
+
class ValidationException
|
839
|
+
attr_accessor message: ::String
|
840
|
+
attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER")
|
841
|
+
attr_accessor fields: ::Array[Types::ValidationExceptionField]
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class ValidationExceptionField
|
846
|
+
attr_accessor name: ::String
|
847
|
+
attr_accessor message: ::String
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class VpcConfiguration
|
852
|
+
attr_accessor subnet_id_list: ::Array[::String]
|
853
|
+
attr_accessor security_group_id_list: ::Array[::String]
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
end
|
857
|
+
end
|