aws-sdk-devopsguru 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.
@@ -0,0 +1,190 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::DevOpsGuru
11
+
12
+ # When DevOpsGuru returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::DevOpsGuru::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all DevOpsGuru errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::DevOpsGuru::Errors::ServiceError
20
+ # # rescues all DevOpsGuru API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {AccessDeniedException}
31
+ # * {ConflictException}
32
+ # * {InternalServerException}
33
+ # * {ResourceNotFoundException}
34
+ # * {ServiceQuotaExceededException}
35
+ # * {ThrottlingException}
36
+ # * {ValidationException}
37
+ #
38
+ # Additionally, error classes are dynamically generated for service errors based on the error code
39
+ # if they are not defined above.
40
+ module Errors
41
+
42
+ extend Aws::Errors::DynamicErrors
43
+
44
+ class AccessDeniedException < ServiceError
45
+
46
+ # @param [Seahorse::Client::RequestContext] context
47
+ # @param [String] message
48
+ # @param [Aws::DevOpsGuru::Types::AccessDeniedException] data
49
+ def initialize(context, message, data = Aws::EmptyStructure.new)
50
+ super(context, message, data)
51
+ end
52
+
53
+ # @return [String]
54
+ def message
55
+ @message || @data[:message]
56
+ end
57
+ end
58
+
59
+ class ConflictException < ServiceError
60
+
61
+ # @param [Seahorse::Client::RequestContext] context
62
+ # @param [String] message
63
+ # @param [Aws::DevOpsGuru::Types::ConflictException] data
64
+ def initialize(context, message, data = Aws::EmptyStructure.new)
65
+ super(context, message, data)
66
+ end
67
+
68
+ # @return [String]
69
+ def message
70
+ @message || @data[:message]
71
+ end
72
+
73
+ # @return [String]
74
+ def resource_id
75
+ @data[:resource_id]
76
+ end
77
+
78
+ # @return [String]
79
+ def resource_type
80
+ @data[:resource_type]
81
+ end
82
+ end
83
+
84
+ class InternalServerException < ServiceError
85
+
86
+ # @param [Seahorse::Client::RequestContext] context
87
+ # @param [String] message
88
+ # @param [Aws::DevOpsGuru::Types::InternalServerException] data
89
+ def initialize(context, message, data = Aws::EmptyStructure.new)
90
+ super(context, message, data)
91
+ end
92
+
93
+ # @return [String]
94
+ def message
95
+ @message || @data[:message]
96
+ end
97
+ end
98
+
99
+ class ResourceNotFoundException < ServiceError
100
+
101
+ # @param [Seahorse::Client::RequestContext] context
102
+ # @param [String] message
103
+ # @param [Aws::DevOpsGuru::Types::ResourceNotFoundException] data
104
+ def initialize(context, message, data = Aws::EmptyStructure.new)
105
+ super(context, message, data)
106
+ end
107
+
108
+ # @return [String]
109
+ def message
110
+ @message || @data[:message]
111
+ end
112
+
113
+ # @return [String]
114
+ def resource_id
115
+ @data[:resource_id]
116
+ end
117
+
118
+ # @return [String]
119
+ def resource_type
120
+ @data[:resource_type]
121
+ end
122
+ end
123
+
124
+ class ServiceQuotaExceededException < ServiceError
125
+
126
+ # @param [Seahorse::Client::RequestContext] context
127
+ # @param [String] message
128
+ # @param [Aws::DevOpsGuru::Types::ServiceQuotaExceededException] data
129
+ def initialize(context, message, data = Aws::EmptyStructure.new)
130
+ super(context, message, data)
131
+ end
132
+
133
+ # @return [String]
134
+ def message
135
+ @message || @data[:message]
136
+ end
137
+ end
138
+
139
+ class ThrottlingException < ServiceError
140
+
141
+ # @param [Seahorse::Client::RequestContext] context
142
+ # @param [String] message
143
+ # @param [Aws::DevOpsGuru::Types::ThrottlingException] data
144
+ def initialize(context, message, data = Aws::EmptyStructure.new)
145
+ super(context, message, data)
146
+ end
147
+
148
+ # @return [String]
149
+ def message
150
+ @message || @data[:message]
151
+ end
152
+
153
+ # @return [String]
154
+ def quota_code
155
+ @data[:quota_code]
156
+ end
157
+
158
+ # @return [String]
159
+ def service_code
160
+ @data[:service_code]
161
+ end
162
+ end
163
+
164
+ class ValidationException < ServiceError
165
+
166
+ # @param [Seahorse::Client::RequestContext] context
167
+ # @param [String] message
168
+ # @param [Aws::DevOpsGuru::Types::ValidationException] data
169
+ def initialize(context, message, data = Aws::EmptyStructure.new)
170
+ super(context, message, data)
171
+ end
172
+
173
+ # @return [String]
174
+ def fields
175
+ @data[:fields]
176
+ end
177
+
178
+ # @return [String]
179
+ def message
180
+ @message || @data[:message]
181
+ end
182
+
183
+ # @return [String]
184
+ def reason
185
+ @data[:reason]
186
+ end
187
+ end
188
+
189
+ end
190
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::DevOpsGuru
11
+
12
+ class Resource
13
+
14
+ # @param options ({})
15
+ # @option options [Client] :client
16
+ def initialize(options = {})
17
+ @client = options[:client] || Client.new(options)
18
+ end
19
+
20
+ # @return [Client]
21
+ def client
22
+ @client
23
+ end
24
+
25
+ end
26
+ end
@@ -0,0 +1,1929 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::DevOpsGuru
11
+ module Types
12
+
13
+ # @!attribute [rw] message
14
+ # @return [String]
15
+ #
16
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AccessDeniedException AWS API Documentation
17
+ #
18
+ class AccessDeniedException < Struct.new(
19
+ :message)
20
+ SENSITIVE = []
21
+ include Aws::Structure
22
+ end
23
+
24
+ # @note When making an API call, you may pass AddNotificationChannelRequest
25
+ # data as a hash:
26
+ #
27
+ # {
28
+ # config: { # required
29
+ # sns: { # required
30
+ # topic_arn: "__stringMin36Max1024PatternArnAwsAZ09SnsAZ09D12",
31
+ # },
32
+ # },
33
+ # }
34
+ #
35
+ # @!attribute [rw] config
36
+ # @return [Types::NotificationChannelConfig]
37
+ #
38
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AddNotificationChannelRequest AWS API Documentation
39
+ #
40
+ class AddNotificationChannelRequest < Struct.new(
41
+ :config)
42
+ SENSITIVE = []
43
+ include Aws::Structure
44
+ end
45
+
46
+ # @!attribute [rw] id
47
+ # @return [String]
48
+ #
49
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AddNotificationChannelResponse AWS API Documentation
50
+ #
51
+ class AddNotificationChannelResponse < Struct.new(
52
+ :id)
53
+ SENSITIVE = []
54
+ include Aws::Structure
55
+ end
56
+
57
+ # @!attribute [rw] cloud_watch_metrics
58
+ # @return [Array<Types::CloudWatchMetricsDetail>]
59
+ #
60
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalySourceDetails AWS API Documentation
61
+ #
62
+ class AnomalySourceDetails < Struct.new(
63
+ :cloud_watch_metrics)
64
+ SENSITIVE = []
65
+ include Aws::Structure
66
+ end
67
+
68
+ # @!attribute [rw] end_time
69
+ # @return [Time]
70
+ #
71
+ # @!attribute [rw] start_time
72
+ # @return [Time]
73
+ #
74
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/AnomalyTimeRange AWS API Documentation
75
+ #
76
+ class AnomalyTimeRange < Struct.new(
77
+ :end_time,
78
+ :start_time)
79
+ SENSITIVE = []
80
+ include Aws::Structure
81
+ end
82
+
83
+ # @note When making an API call, you may pass CloudFormationCollection
84
+ # data as a hash:
85
+ #
86
+ # {
87
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
88
+ # }
89
+ #
90
+ # @!attribute [rw] stack_names
91
+ # @return [Array<String>]
92
+ #
93
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudFormationCollection AWS API Documentation
94
+ #
95
+ class CloudFormationCollection < Struct.new(
96
+ :stack_names)
97
+ SENSITIVE = []
98
+ include Aws::Structure
99
+ end
100
+
101
+ # @!attribute [rw] stack_names
102
+ # @return [Array<String>]
103
+ #
104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudFormationCollectionFilter AWS API Documentation
105
+ #
106
+ class CloudFormationCollectionFilter < Struct.new(
107
+ :stack_names)
108
+ SENSITIVE = []
109
+ include Aws::Structure
110
+ end
111
+
112
+ # @!attribute [rw] insight
113
+ # @return [Types::InsightHealth]
114
+ #
115
+ # @!attribute [rw] stack_name
116
+ # @return [String]
117
+ #
118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudFormationHealth AWS API Documentation
119
+ #
120
+ class CloudFormationHealth < Struct.new(
121
+ :insight,
122
+ :stack_name)
123
+ SENSITIVE = []
124
+ include Aws::Structure
125
+ end
126
+
127
+ # @!attribute [rw] dimensions
128
+ # @return [Array<Types::CloudWatchMetricsDimension>]
129
+ #
130
+ # @!attribute [rw] metric_name
131
+ # @return [String]
132
+ #
133
+ # @!attribute [rw] namespace
134
+ # @return [String]
135
+ #
136
+ # @!attribute [rw] period
137
+ # @return [Integer]
138
+ #
139
+ # @!attribute [rw] stat
140
+ # @return [String]
141
+ #
142
+ # @!attribute [rw] unit
143
+ # @return [String]
144
+ #
145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudWatchMetricsDetail AWS API Documentation
146
+ #
147
+ class CloudWatchMetricsDetail < Struct.new(
148
+ :dimensions,
149
+ :metric_name,
150
+ :namespace,
151
+ :period,
152
+ :stat,
153
+ :unit)
154
+ SENSITIVE = []
155
+ include Aws::Structure
156
+ end
157
+
158
+ # @!attribute [rw] name
159
+ # @return [String]
160
+ #
161
+ # @!attribute [rw] value
162
+ # @return [String]
163
+ #
164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/CloudWatchMetricsDimension AWS API Documentation
165
+ #
166
+ class CloudWatchMetricsDimension < Struct.new(
167
+ :name,
168
+ :value)
169
+ SENSITIVE = []
170
+ include Aws::Structure
171
+ end
172
+
173
+ # @!attribute [rw] message
174
+ # @return [String]
175
+ #
176
+ # @!attribute [rw] resource_id
177
+ # @return [String]
178
+ #
179
+ # @!attribute [rw] resource_type
180
+ # @return [String]
181
+ #
182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ConflictException AWS API Documentation
183
+ #
184
+ class ConflictException < Struct.new(
185
+ :message,
186
+ :resource_id,
187
+ :resource_type)
188
+ SENSITIVE = []
189
+ include Aws::Structure
190
+ end
191
+
192
+ # @api private
193
+ #
194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealthRequest AWS API Documentation
195
+ #
196
+ class DescribeAccountHealthRequest < Aws::EmptyStructure; end
197
+
198
+ # @!attribute [rw] metrics_analyzed
199
+ # @return [Integer]
200
+ #
201
+ # @!attribute [rw] open_proactive_insights
202
+ # @return [Integer]
203
+ #
204
+ # @!attribute [rw] open_reactive_insights
205
+ # @return [Integer]
206
+ #
207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealthResponse AWS API Documentation
208
+ #
209
+ class DescribeAccountHealthResponse < Struct.new(
210
+ :metrics_analyzed,
211
+ :open_proactive_insights,
212
+ :open_reactive_insights)
213
+ SENSITIVE = []
214
+ include Aws::Structure
215
+ end
216
+
217
+ # @note When making an API call, you may pass DescribeAccountOverviewRequest
218
+ # data as a hash:
219
+ #
220
+ # {
221
+ # from_time: Time.now, # required
222
+ # to_time: Time.now,
223
+ # }
224
+ #
225
+ # @!attribute [rw] from_time
226
+ # @return [Time]
227
+ #
228
+ # @!attribute [rw] to_time
229
+ # @return [Time]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountOverviewRequest AWS API Documentation
232
+ #
233
+ class DescribeAccountOverviewRequest < Struct.new(
234
+ :from_time,
235
+ :to_time)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # @!attribute [rw] mean_time_to_recover_in_milliseconds
241
+ # @return [Integer]
242
+ #
243
+ # @!attribute [rw] proactive_insights
244
+ # @return [Integer]
245
+ #
246
+ # @!attribute [rw] reactive_insights
247
+ # @return [Integer]
248
+ #
249
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountOverviewResponse AWS API Documentation
250
+ #
251
+ class DescribeAccountOverviewResponse < Struct.new(
252
+ :mean_time_to_recover_in_milliseconds,
253
+ :proactive_insights,
254
+ :reactive_insights)
255
+ SENSITIVE = []
256
+ include Aws::Structure
257
+ end
258
+
259
+ # @note When making an API call, you may pass DescribeAnomalyRequest
260
+ # data as a hash:
261
+ #
262
+ # {
263
+ # id: "__string", # required
264
+ # }
265
+ #
266
+ # @!attribute [rw] id
267
+ # @return [String]
268
+ #
269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomalyRequest AWS API Documentation
270
+ #
271
+ class DescribeAnomalyRequest < Struct.new(
272
+ :id)
273
+ SENSITIVE = []
274
+ include Aws::Structure
275
+ end
276
+
277
+ # @!attribute [rw] proactive_anomaly
278
+ # @return [Types::ProactiveAnomaly]
279
+ #
280
+ # @!attribute [rw] reactive_anomaly
281
+ # @return [Types::ReactiveAnomaly]
282
+ #
283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAnomalyResponse AWS API Documentation
284
+ #
285
+ class DescribeAnomalyResponse < Struct.new(
286
+ :proactive_anomaly,
287
+ :reactive_anomaly)
288
+ SENSITIVE = []
289
+ include Aws::Structure
290
+ end
291
+
292
+ # @note When making an API call, you may pass DescribeInsightRequest
293
+ # data as a hash:
294
+ #
295
+ # {
296
+ # id: "__string", # required
297
+ # }
298
+ #
299
+ # @!attribute [rw] id
300
+ # @return [String]
301
+ #
302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsightRequest AWS API Documentation
303
+ #
304
+ class DescribeInsightRequest < Struct.new(
305
+ :id)
306
+ SENSITIVE = []
307
+ include Aws::Structure
308
+ end
309
+
310
+ # @!attribute [rw] proactive_insight
311
+ # @return [Types::ProactiveInsight]
312
+ #
313
+ # @!attribute [rw] reactive_insight
314
+ # @return [Types::ReactiveInsight]
315
+ #
316
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeInsightResponse AWS API Documentation
317
+ #
318
+ class DescribeInsightResponse < Struct.new(
319
+ :proactive_insight,
320
+ :reactive_insight)
321
+ SENSITIVE = []
322
+ include Aws::Structure
323
+ end
324
+
325
+ # @note When making an API call, you may pass DescribeResourceCollectionHealthRequest
326
+ # data as a hash:
327
+ #
328
+ # {
329
+ # next_token: "__string",
330
+ # resource_collection_type: "__string", # required
331
+ # }
332
+ #
333
+ # @!attribute [rw] next_token
334
+ # @return [String]
335
+ #
336
+ # @!attribute [rw] resource_collection_type
337
+ # @return [String]
338
+ #
339
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealthRequest AWS API Documentation
340
+ #
341
+ class DescribeResourceCollectionHealthRequest < Struct.new(
342
+ :next_token,
343
+ :resource_collection_type)
344
+ SENSITIVE = []
345
+ include Aws::Structure
346
+ end
347
+
348
+ # @!attribute [rw] cloud_formation
349
+ # @return [Array<Types::CloudFormationHealth>]
350
+ #
351
+ # @!attribute [rw] next_token
352
+ # @return [String]
353
+ #
354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeResourceCollectionHealthResponse AWS API Documentation
355
+ #
356
+ class DescribeResourceCollectionHealthResponse < Struct.new(
357
+ :cloud_formation,
358
+ :next_token)
359
+ SENSITIVE = []
360
+ include Aws::Structure
361
+ end
362
+
363
+ # @api private
364
+ #
365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeServiceIntegrationRequest AWS API Documentation
366
+ #
367
+ class DescribeServiceIntegrationRequest < Aws::EmptyStructure; end
368
+
369
+ # @!attribute [rw] service_integration
370
+ # @return [Types::ServiceIntegrationConfig]
371
+ #
372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeServiceIntegrationResponse AWS API Documentation
373
+ #
374
+ class DescribeServiceIntegrationResponse < Struct.new(
375
+ :service_integration)
376
+ SENSITIVE = []
377
+ include Aws::Structure
378
+ end
379
+
380
+ # @note When making an API call, you may pass EndTimeRange
381
+ # data as a hash:
382
+ #
383
+ # {
384
+ # from_time: Time.now,
385
+ # to_time: Time.now,
386
+ # }
387
+ #
388
+ # @!attribute [rw] from_time
389
+ # @return [Time]
390
+ #
391
+ # @!attribute [rw] to_time
392
+ # @return [Time]
393
+ #
394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/EndTimeRange AWS API Documentation
395
+ #
396
+ class EndTimeRange < Struct.new(
397
+ :from_time,
398
+ :to_time)
399
+ SENSITIVE = []
400
+ include Aws::Structure
401
+ end
402
+
403
+ # @!attribute [rw] data_source
404
+ # @return [String]
405
+ #
406
+ # @!attribute [rw] event_class
407
+ # @return [String]
408
+ #
409
+ # @!attribute [rw] event_source
410
+ # @return [String]
411
+ #
412
+ # @!attribute [rw] id
413
+ # @return [String]
414
+ #
415
+ # @!attribute [rw] name
416
+ # @return [String]
417
+ #
418
+ # @!attribute [rw] resource_collection
419
+ # @return [Types::ResourceCollection]
420
+ #
421
+ # @!attribute [rw] resources
422
+ # @return [Array<Types::EventResource>]
423
+ #
424
+ # @!attribute [rw] time
425
+ # @return [Time]
426
+ #
427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/Event AWS API Documentation
428
+ #
429
+ class Event < Struct.new(
430
+ :data_source,
431
+ :event_class,
432
+ :event_source,
433
+ :id,
434
+ :name,
435
+ :resource_collection,
436
+ :resources,
437
+ :time)
438
+ SENSITIVE = []
439
+ include Aws::Structure
440
+ end
441
+
442
+ # @!attribute [rw] arn
443
+ # @return [String]
444
+ #
445
+ # @!attribute [rw] name
446
+ # @return [String]
447
+ #
448
+ # @!attribute [rw] type
449
+ # @return [String]
450
+ #
451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/EventResource AWS API Documentation
452
+ #
453
+ class EventResource < Struct.new(
454
+ :arn,
455
+ :name,
456
+ :type)
457
+ SENSITIVE = []
458
+ include Aws::Structure
459
+ end
460
+
461
+ # @note When making an API call, you may pass EventTimeRange
462
+ # data as a hash:
463
+ #
464
+ # {
465
+ # from_time: Time.now, # required
466
+ # to_time: Time.now, # required
467
+ # }
468
+ #
469
+ # @!attribute [rw] from_time
470
+ # @return [Time]
471
+ #
472
+ # @!attribute [rw] to_time
473
+ # @return [Time]
474
+ #
475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/EventTimeRange AWS API Documentation
476
+ #
477
+ class EventTimeRange < Struct.new(
478
+ :from_time,
479
+ :to_time)
480
+ SENSITIVE = []
481
+ include Aws::Structure
482
+ end
483
+
484
+ # @note When making an API call, you may pass GetResourceCollectionRequest
485
+ # data as a hash:
486
+ #
487
+ # {
488
+ # next_token: "__string",
489
+ # resource_collection_type: "__string", # required
490
+ # }
491
+ #
492
+ # @!attribute [rw] next_token
493
+ # @return [String]
494
+ #
495
+ # @!attribute [rw] resource_collection_type
496
+ # @return [String]
497
+ #
498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/GetResourceCollectionRequest AWS API Documentation
499
+ #
500
+ class GetResourceCollectionRequest < Struct.new(
501
+ :next_token,
502
+ :resource_collection_type)
503
+ SENSITIVE = []
504
+ include Aws::Structure
505
+ end
506
+
507
+ # @!attribute [rw] next_token
508
+ # @return [String]
509
+ #
510
+ # @!attribute [rw] resource_collection
511
+ # @return [Types::ResourceCollectionFilter]
512
+ #
513
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/GetResourceCollectionResponse AWS API Documentation
514
+ #
515
+ class GetResourceCollectionResponse < Struct.new(
516
+ :next_token,
517
+ :resource_collection)
518
+ SENSITIVE = []
519
+ include Aws::Structure
520
+ end
521
+
522
+ # @note When making an API call, you may pass InsightFeedback
523
+ # data as a hash:
524
+ #
525
+ # {
526
+ # feedback: "VALID_COLLECTION", # accepts VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT
527
+ # id: "__stringMin1Max100PatternW",
528
+ # }
529
+ #
530
+ # @!attribute [rw] feedback
531
+ # @return [String]
532
+ #
533
+ # @!attribute [rw] id
534
+ # @return [String]
535
+ #
536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/InsightFeedback AWS API Documentation
537
+ #
538
+ class InsightFeedback < Struct.new(
539
+ :feedback,
540
+ :id)
541
+ SENSITIVE = []
542
+ include Aws::Structure
543
+ end
544
+
545
+ # @!attribute [rw] mean_time_to_recover_in_milliseconds
546
+ # @return [Integer]
547
+ #
548
+ # @!attribute [rw] open_proactive_insights
549
+ # @return [Integer]
550
+ #
551
+ # @!attribute [rw] open_reactive_insights
552
+ # @return [Integer]
553
+ #
554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/InsightHealth AWS API Documentation
555
+ #
556
+ class InsightHealth < Struct.new(
557
+ :mean_time_to_recover_in_milliseconds,
558
+ :open_proactive_insights,
559
+ :open_reactive_insights)
560
+ SENSITIVE = []
561
+ include Aws::Structure
562
+ end
563
+
564
+ # @!attribute [rw] end_time
565
+ # @return [Time]
566
+ #
567
+ # @!attribute [rw] start_time
568
+ # @return [Time]
569
+ #
570
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/InsightTimeRange AWS API Documentation
571
+ #
572
+ class InsightTimeRange < Struct.new(
573
+ :end_time,
574
+ :start_time)
575
+ SENSITIVE = []
576
+ include Aws::Structure
577
+ end
578
+
579
+ # @!attribute [rw] message
580
+ # @return [String]
581
+ #
582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/InternalServerException AWS API Documentation
583
+ #
584
+ class InternalServerException < Struct.new(
585
+ :message)
586
+ SENSITIVE = []
587
+ include Aws::Structure
588
+ end
589
+
590
+ # @note When making an API call, you may pass ListAnomaliesForInsightRequest
591
+ # data as a hash:
592
+ #
593
+ # {
594
+ # insight_id: "__string", # required
595
+ # max_results: 1,
596
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
597
+ # start_time_range: {
598
+ # from_time: Time.now,
599
+ # to_time: Time.now,
600
+ # },
601
+ # }
602
+ #
603
+ # @!attribute [rw] insight_id
604
+ # @return [String]
605
+ #
606
+ # @!attribute [rw] max_results
607
+ # @return [Integer]
608
+ #
609
+ # @!attribute [rw] next_token
610
+ # @return [String]
611
+ #
612
+ # @!attribute [rw] start_time_range
613
+ # @return [Types::StartTimeRange]
614
+ #
615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsightRequest AWS API Documentation
616
+ #
617
+ class ListAnomaliesForInsightRequest < Struct.new(
618
+ :insight_id,
619
+ :max_results,
620
+ :next_token,
621
+ :start_time_range)
622
+ SENSITIVE = []
623
+ include Aws::Structure
624
+ end
625
+
626
+ # @!attribute [rw] next_token
627
+ # @return [String]
628
+ #
629
+ # @!attribute [rw] proactive_anomalies
630
+ # @return [Array<Types::ProactiveAnomalySummary>]
631
+ #
632
+ # @!attribute [rw] reactive_anomalies
633
+ # @return [Array<Types::ReactiveAnomalySummary>]
634
+ #
635
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListAnomaliesForInsightResponse AWS API Documentation
636
+ #
637
+ class ListAnomaliesForInsightResponse < Struct.new(
638
+ :next_token,
639
+ :proactive_anomalies,
640
+ :reactive_anomalies)
641
+ SENSITIVE = []
642
+ include Aws::Structure
643
+ end
644
+
645
+ # @note When making an API call, you may pass ListEventsFilters
646
+ # data as a hash:
647
+ #
648
+ # {
649
+ # data_source: "AWS_CLOUD_TRAIL", # accepts AWS_CLOUD_TRAIL, AWS_CODE_DEPLOY
650
+ # event_class: "INFRASTRUCTURE", # accepts INFRASTRUCTURE, DEPLOYMENT, SECURITY_CHANGE, CONFIG_CHANGE, SCHEMA_CHANGE
651
+ # event_source: "__stringMin10Max50PatternAZAZ09AmazonawsComAwsEvents",
652
+ # event_time_range: {
653
+ # from_time: Time.now, # required
654
+ # to_time: Time.now, # required
655
+ # },
656
+ # insight_id: "__stringMin1Max100PatternW",
657
+ # resource_collection: {
658
+ # cloud_formation: {
659
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
660
+ # },
661
+ # },
662
+ # }
663
+ #
664
+ # @!attribute [rw] data_source
665
+ # @return [String]
666
+ #
667
+ # @!attribute [rw] event_class
668
+ # @return [String]
669
+ #
670
+ # @!attribute [rw] event_source
671
+ # @return [String]
672
+ #
673
+ # @!attribute [rw] event_time_range
674
+ # @return [Types::EventTimeRange]
675
+ #
676
+ # @!attribute [rw] insight_id
677
+ # @return [String]
678
+ #
679
+ # @!attribute [rw] resource_collection
680
+ # @return [Types::ResourceCollection]
681
+ #
682
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListEventsFilters AWS API Documentation
683
+ #
684
+ class ListEventsFilters < Struct.new(
685
+ :data_source,
686
+ :event_class,
687
+ :event_source,
688
+ :event_time_range,
689
+ :insight_id,
690
+ :resource_collection)
691
+ SENSITIVE = []
692
+ include Aws::Structure
693
+ end
694
+
695
+ # @note When making an API call, you may pass ListEventsRequest
696
+ # data as a hash:
697
+ #
698
+ # {
699
+ # filters: { # required
700
+ # data_source: "AWS_CLOUD_TRAIL", # accepts AWS_CLOUD_TRAIL, AWS_CODE_DEPLOY
701
+ # event_class: "INFRASTRUCTURE", # accepts INFRASTRUCTURE, DEPLOYMENT, SECURITY_CHANGE, CONFIG_CHANGE, SCHEMA_CHANGE
702
+ # event_source: "__stringMin10Max50PatternAZAZ09AmazonawsComAwsEvents",
703
+ # event_time_range: {
704
+ # from_time: Time.now, # required
705
+ # to_time: Time.now, # required
706
+ # },
707
+ # insight_id: "__stringMin1Max100PatternW",
708
+ # resource_collection: {
709
+ # cloud_formation: {
710
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
711
+ # },
712
+ # },
713
+ # },
714
+ # max_results: 1,
715
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
716
+ # }
717
+ #
718
+ # @!attribute [rw] filters
719
+ # @return [Types::ListEventsFilters]
720
+ #
721
+ # @!attribute [rw] max_results
722
+ # @return [Integer]
723
+ #
724
+ # @!attribute [rw] next_token
725
+ # @return [String]
726
+ #
727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListEventsRequest AWS API Documentation
728
+ #
729
+ class ListEventsRequest < Struct.new(
730
+ :filters,
731
+ :max_results,
732
+ :next_token)
733
+ SENSITIVE = []
734
+ include Aws::Structure
735
+ end
736
+
737
+ # @!attribute [rw] events
738
+ # @return [Array<Types::Event>]
739
+ #
740
+ # @!attribute [rw] next_token
741
+ # @return [String]
742
+ #
743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListEventsResponse AWS API Documentation
744
+ #
745
+ class ListEventsResponse < Struct.new(
746
+ :events,
747
+ :next_token)
748
+ SENSITIVE = []
749
+ include Aws::Structure
750
+ end
751
+
752
+ # @note When making an API call, you may pass ListInsightsAnyStatusFilter
753
+ # data as a hash:
754
+ #
755
+ # {
756
+ # start_time_range: { # required
757
+ # from_time: Time.now,
758
+ # to_time: Time.now,
759
+ # },
760
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
761
+ # }
762
+ #
763
+ # @!attribute [rw] start_time_range
764
+ # @return [Types::StartTimeRange]
765
+ #
766
+ # @!attribute [rw] type
767
+ # @return [String]
768
+ #
769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsAnyStatusFilter AWS API Documentation
770
+ #
771
+ class ListInsightsAnyStatusFilter < Struct.new(
772
+ :start_time_range,
773
+ :type)
774
+ SENSITIVE = []
775
+ include Aws::Structure
776
+ end
777
+
778
+ # @note When making an API call, you may pass ListInsightsClosedStatusFilter
779
+ # data as a hash:
780
+ #
781
+ # {
782
+ # end_time_range: { # required
783
+ # from_time: Time.now,
784
+ # to_time: Time.now,
785
+ # },
786
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
787
+ # }
788
+ #
789
+ # @!attribute [rw] end_time_range
790
+ # @return [Types::EndTimeRange]
791
+ #
792
+ # @!attribute [rw] type
793
+ # @return [String]
794
+ #
795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsClosedStatusFilter AWS API Documentation
796
+ #
797
+ class ListInsightsClosedStatusFilter < Struct.new(
798
+ :end_time_range,
799
+ :type)
800
+ SENSITIVE = []
801
+ include Aws::Structure
802
+ end
803
+
804
+ # @note When making an API call, you may pass ListInsightsOngoingStatusFilter
805
+ # data as a hash:
806
+ #
807
+ # {
808
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
809
+ # }
810
+ #
811
+ # @!attribute [rw] type
812
+ # @return [String]
813
+ #
814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsOngoingStatusFilter AWS API Documentation
815
+ #
816
+ class ListInsightsOngoingStatusFilter < Struct.new(
817
+ :type)
818
+ SENSITIVE = []
819
+ include Aws::Structure
820
+ end
821
+
822
+ # @note When making an API call, you may pass ListInsightsRequest
823
+ # data as a hash:
824
+ #
825
+ # {
826
+ # max_results: 1,
827
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
828
+ # status_filter: { # required
829
+ # any: {
830
+ # start_time_range: { # required
831
+ # from_time: Time.now,
832
+ # to_time: Time.now,
833
+ # },
834
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
835
+ # },
836
+ # closed: {
837
+ # end_time_range: { # required
838
+ # from_time: Time.now,
839
+ # to_time: Time.now,
840
+ # },
841
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
842
+ # },
843
+ # ongoing: {
844
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
845
+ # },
846
+ # },
847
+ # }
848
+ #
849
+ # @!attribute [rw] max_results
850
+ # @return [Integer]
851
+ #
852
+ # @!attribute [rw] next_token
853
+ # @return [String]
854
+ #
855
+ # @!attribute [rw] status_filter
856
+ # @return [Types::ListInsightsStatusFilter]
857
+ #
858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsRequest AWS API Documentation
859
+ #
860
+ class ListInsightsRequest < Struct.new(
861
+ :max_results,
862
+ :next_token,
863
+ :status_filter)
864
+ SENSITIVE = []
865
+ include Aws::Structure
866
+ end
867
+
868
+ # @!attribute [rw] next_token
869
+ # @return [String]
870
+ #
871
+ # @!attribute [rw] proactive_insights
872
+ # @return [Array<Types::ProactiveInsightSummary>]
873
+ #
874
+ # @!attribute [rw] reactive_insights
875
+ # @return [Array<Types::ReactiveInsightSummary>]
876
+ #
877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsResponse AWS API Documentation
878
+ #
879
+ class ListInsightsResponse < Struct.new(
880
+ :next_token,
881
+ :proactive_insights,
882
+ :reactive_insights)
883
+ SENSITIVE = []
884
+ include Aws::Structure
885
+ end
886
+
887
+ # @note When making an API call, you may pass ListInsightsStatusFilter
888
+ # data as a hash:
889
+ #
890
+ # {
891
+ # any: {
892
+ # start_time_range: { # required
893
+ # from_time: Time.now,
894
+ # to_time: Time.now,
895
+ # },
896
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
897
+ # },
898
+ # closed: {
899
+ # end_time_range: { # required
900
+ # from_time: Time.now,
901
+ # to_time: Time.now,
902
+ # },
903
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
904
+ # },
905
+ # ongoing: {
906
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
907
+ # },
908
+ # }
909
+ #
910
+ # @!attribute [rw] any
911
+ # @return [Types::ListInsightsAnyStatusFilter]
912
+ #
913
+ # @!attribute [rw] closed
914
+ # @return [Types::ListInsightsClosedStatusFilter]
915
+ #
916
+ # @!attribute [rw] ongoing
917
+ # @return [Types::ListInsightsOngoingStatusFilter]
918
+ #
919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListInsightsStatusFilter AWS API Documentation
920
+ #
921
+ class ListInsightsStatusFilter < Struct.new(
922
+ :any,
923
+ :closed,
924
+ :ongoing)
925
+ SENSITIVE = []
926
+ include Aws::Structure
927
+ end
928
+
929
+ # @note When making an API call, you may pass ListNotificationChannelsRequest
930
+ # data as a hash:
931
+ #
932
+ # {
933
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
934
+ # }
935
+ #
936
+ # @!attribute [rw] next_token
937
+ # @return [String]
938
+ #
939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListNotificationChannelsRequest AWS API Documentation
940
+ #
941
+ class ListNotificationChannelsRequest < Struct.new(
942
+ :next_token)
943
+ SENSITIVE = []
944
+ include Aws::Structure
945
+ end
946
+
947
+ # @!attribute [rw] channels
948
+ # @return [Array<Types::NotificationChannel>]
949
+ #
950
+ # @!attribute [rw] next_token
951
+ # @return [String]
952
+ #
953
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListNotificationChannelsResponse AWS API Documentation
954
+ #
955
+ class ListNotificationChannelsResponse < Struct.new(
956
+ :channels,
957
+ :next_token)
958
+ SENSITIVE = []
959
+ include Aws::Structure
960
+ end
961
+
962
+ # @note When making an API call, you may pass ListRecommendationsRequest
963
+ # data as a hash:
964
+ #
965
+ # {
966
+ # insight_id: "__stringMin1Max100PatternW", # required
967
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
968
+ # }
969
+ #
970
+ # @!attribute [rw] insight_id
971
+ # @return [String]
972
+ #
973
+ # @!attribute [rw] next_token
974
+ # @return [String]
975
+ #
976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendationsRequest AWS API Documentation
977
+ #
978
+ class ListRecommendationsRequest < Struct.new(
979
+ :insight_id,
980
+ :next_token)
981
+ SENSITIVE = []
982
+ include Aws::Structure
983
+ end
984
+
985
+ # @!attribute [rw] next_token
986
+ # @return [String]
987
+ #
988
+ # @!attribute [rw] recommendations
989
+ # @return [Array<Types::Recommendation>]
990
+ #
991
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ListRecommendationsResponse AWS API Documentation
992
+ #
993
+ class ListRecommendationsResponse < Struct.new(
994
+ :next_token,
995
+ :recommendations)
996
+ SENSITIVE = []
997
+ include Aws::Structure
998
+ end
999
+
1000
+ # @!attribute [rw] config
1001
+ # @return [Types::NotificationChannelConfig]
1002
+ #
1003
+ # @!attribute [rw] id
1004
+ # @return [String]
1005
+ #
1006
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationChannel AWS API Documentation
1007
+ #
1008
+ class NotificationChannel < Struct.new(
1009
+ :config,
1010
+ :id)
1011
+ SENSITIVE = []
1012
+ include Aws::Structure
1013
+ end
1014
+
1015
+ # @note When making an API call, you may pass NotificationChannelConfig
1016
+ # data as a hash:
1017
+ #
1018
+ # {
1019
+ # sns: { # required
1020
+ # topic_arn: "__stringMin36Max1024PatternArnAwsAZ09SnsAZ09D12",
1021
+ # },
1022
+ # }
1023
+ #
1024
+ # @!attribute [rw] sns
1025
+ # @return [Types::SnsChannelConfig]
1026
+ #
1027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/NotificationChannelConfig AWS API Documentation
1028
+ #
1029
+ class NotificationChannelConfig < Struct.new(
1030
+ :sns)
1031
+ SENSITIVE = []
1032
+ include Aws::Structure
1033
+ end
1034
+
1035
+ # @!attribute [rw] opt_in_status
1036
+ # @return [String]
1037
+ #
1038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/OpsCenterIntegration AWS API Documentation
1039
+ #
1040
+ class OpsCenterIntegration < Struct.new(
1041
+ :opt_in_status)
1042
+ SENSITIVE = []
1043
+ include Aws::Structure
1044
+ end
1045
+
1046
+ # @note When making an API call, you may pass OpsCenterIntegrationConfig
1047
+ # data as a hash:
1048
+ #
1049
+ # {
1050
+ # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
1051
+ # }
1052
+ #
1053
+ # @!attribute [rw] opt_in_status
1054
+ # @return [String]
1055
+ #
1056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/OpsCenterIntegrationConfig AWS API Documentation
1057
+ #
1058
+ class OpsCenterIntegrationConfig < Struct.new(
1059
+ :opt_in_status)
1060
+ SENSITIVE = []
1061
+ include Aws::Structure
1062
+ end
1063
+
1064
+ # @!attribute [rw] end_time
1065
+ # @return [Time]
1066
+ #
1067
+ # @!attribute [rw] start_time
1068
+ # @return [Time]
1069
+ #
1070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PredictionTimeRange AWS API Documentation
1071
+ #
1072
+ class PredictionTimeRange < Struct.new(
1073
+ :end_time,
1074
+ :start_time)
1075
+ SENSITIVE = []
1076
+ include Aws::Structure
1077
+ end
1078
+
1079
+ # @!attribute [rw] anomaly_time_range
1080
+ # @return [Types::AnomalyTimeRange]
1081
+ #
1082
+ # @!attribute [rw] associated_insight_id
1083
+ # @return [String]
1084
+ #
1085
+ # @!attribute [rw] id
1086
+ # @return [String]
1087
+ #
1088
+ # @!attribute [rw] limit
1089
+ # @return [Float]
1090
+ #
1091
+ # @!attribute [rw] prediction_time_range
1092
+ # @return [Types::PredictionTimeRange]
1093
+ #
1094
+ # @!attribute [rw] resource_collection
1095
+ # @return [Types::ResourceCollection]
1096
+ #
1097
+ # @!attribute [rw] severity
1098
+ # @return [String]
1099
+ #
1100
+ # @!attribute [rw] source_details
1101
+ # @return [Types::AnomalySourceDetails]
1102
+ #
1103
+ # @!attribute [rw] status
1104
+ # @return [String]
1105
+ #
1106
+ # @!attribute [rw] update_time
1107
+ # @return [Time]
1108
+ #
1109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveAnomaly AWS API Documentation
1110
+ #
1111
+ class ProactiveAnomaly < Struct.new(
1112
+ :anomaly_time_range,
1113
+ :associated_insight_id,
1114
+ :id,
1115
+ :limit,
1116
+ :prediction_time_range,
1117
+ :resource_collection,
1118
+ :severity,
1119
+ :source_details,
1120
+ :status,
1121
+ :update_time)
1122
+ SENSITIVE = []
1123
+ include Aws::Structure
1124
+ end
1125
+
1126
+ # @!attribute [rw] anomaly_time_range
1127
+ # @return [Types::AnomalyTimeRange]
1128
+ #
1129
+ # @!attribute [rw] associated_insight_id
1130
+ # @return [String]
1131
+ #
1132
+ # @!attribute [rw] id
1133
+ # @return [String]
1134
+ #
1135
+ # @!attribute [rw] limit
1136
+ # @return [Float]
1137
+ #
1138
+ # @!attribute [rw] prediction_time_range
1139
+ # @return [Types::PredictionTimeRange]
1140
+ #
1141
+ # @!attribute [rw] resource_collection
1142
+ # @return [Types::ResourceCollection]
1143
+ #
1144
+ # @!attribute [rw] severity
1145
+ # @return [String]
1146
+ #
1147
+ # @!attribute [rw] source_details
1148
+ # @return [Types::AnomalySourceDetails]
1149
+ #
1150
+ # @!attribute [rw] status
1151
+ # @return [String]
1152
+ #
1153
+ # @!attribute [rw] update_time
1154
+ # @return [Time]
1155
+ #
1156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveAnomalySummary AWS API Documentation
1157
+ #
1158
+ class ProactiveAnomalySummary < Struct.new(
1159
+ :anomaly_time_range,
1160
+ :associated_insight_id,
1161
+ :id,
1162
+ :limit,
1163
+ :prediction_time_range,
1164
+ :resource_collection,
1165
+ :severity,
1166
+ :source_details,
1167
+ :status,
1168
+ :update_time)
1169
+ SENSITIVE = []
1170
+ include Aws::Structure
1171
+ end
1172
+
1173
+ # @!attribute [rw] id
1174
+ # @return [String]
1175
+ #
1176
+ # @!attribute [rw] insight_time_range
1177
+ # @return [Types::InsightTimeRange]
1178
+ #
1179
+ # @!attribute [rw] name
1180
+ # @return [String]
1181
+ #
1182
+ # @!attribute [rw] prediction_time_range
1183
+ # @return [Types::PredictionTimeRange]
1184
+ #
1185
+ # @!attribute [rw] resource_collection
1186
+ # @return [Types::ResourceCollection]
1187
+ #
1188
+ # @!attribute [rw] severity
1189
+ # @return [String]
1190
+ #
1191
+ # @!attribute [rw] ssm_ops_item_id
1192
+ # @return [String]
1193
+ #
1194
+ # @!attribute [rw] status
1195
+ # @return [String]
1196
+ #
1197
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveInsight AWS API Documentation
1198
+ #
1199
+ class ProactiveInsight < Struct.new(
1200
+ :id,
1201
+ :insight_time_range,
1202
+ :name,
1203
+ :prediction_time_range,
1204
+ :resource_collection,
1205
+ :severity,
1206
+ :ssm_ops_item_id,
1207
+ :status)
1208
+ SENSITIVE = []
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # @!attribute [rw] id
1213
+ # @return [String]
1214
+ #
1215
+ # @!attribute [rw] insight_time_range
1216
+ # @return [Types::InsightTimeRange]
1217
+ #
1218
+ # @!attribute [rw] name
1219
+ # @return [String]
1220
+ #
1221
+ # @!attribute [rw] prediction_time_range
1222
+ # @return [Types::PredictionTimeRange]
1223
+ #
1224
+ # @!attribute [rw] resource_collection
1225
+ # @return [Types::ResourceCollection]
1226
+ #
1227
+ # @!attribute [rw] severity
1228
+ # @return [String]
1229
+ #
1230
+ # @!attribute [rw] status
1231
+ # @return [String]
1232
+ #
1233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ProactiveInsightSummary AWS API Documentation
1234
+ #
1235
+ class ProactiveInsightSummary < Struct.new(
1236
+ :id,
1237
+ :insight_time_range,
1238
+ :name,
1239
+ :prediction_time_range,
1240
+ :resource_collection,
1241
+ :severity,
1242
+ :status)
1243
+ SENSITIVE = []
1244
+ include Aws::Structure
1245
+ end
1246
+
1247
+ # @note When making an API call, you may pass PutFeedbackRequest
1248
+ # data as a hash:
1249
+ #
1250
+ # {
1251
+ # insight_feedback: {
1252
+ # feedback: "VALID_COLLECTION", # accepts VALID_COLLECTION, RECOMMENDATION_USEFUL, ALERT_TOO_SENSITIVE, DATA_NOISY_ANOMALY, DATA_INCORRECT
1253
+ # id: "__stringMin1Max100PatternW",
1254
+ # },
1255
+ # }
1256
+ #
1257
+ # @!attribute [rw] insight_feedback
1258
+ # @return [Types::InsightFeedback]
1259
+ #
1260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PutFeedbackRequest AWS API Documentation
1261
+ #
1262
+ class PutFeedbackRequest < Struct.new(
1263
+ :insight_feedback)
1264
+ SENSITIVE = []
1265
+ include Aws::Structure
1266
+ end
1267
+
1268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/PutFeedbackResponse AWS API Documentation
1269
+ #
1270
+ class PutFeedbackResponse < Aws::EmptyStructure; end
1271
+
1272
+ # @!attribute [rw] anomaly_time_range
1273
+ # @return [Types::AnomalyTimeRange]
1274
+ #
1275
+ # @!attribute [rw] associated_insight_id
1276
+ # @return [String]
1277
+ #
1278
+ # @!attribute [rw] id
1279
+ # @return [String]
1280
+ #
1281
+ # @!attribute [rw] resource_collection
1282
+ # @return [Types::ResourceCollection]
1283
+ #
1284
+ # @!attribute [rw] severity
1285
+ # @return [String]
1286
+ #
1287
+ # @!attribute [rw] source_details
1288
+ # @return [Types::AnomalySourceDetails]
1289
+ #
1290
+ # @!attribute [rw] status
1291
+ # @return [String]
1292
+ #
1293
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomaly AWS API Documentation
1294
+ #
1295
+ class ReactiveAnomaly < Struct.new(
1296
+ :anomaly_time_range,
1297
+ :associated_insight_id,
1298
+ :id,
1299
+ :resource_collection,
1300
+ :severity,
1301
+ :source_details,
1302
+ :status)
1303
+ SENSITIVE = []
1304
+ include Aws::Structure
1305
+ end
1306
+
1307
+ # @!attribute [rw] anomaly_time_range
1308
+ # @return [Types::AnomalyTimeRange]
1309
+ #
1310
+ # @!attribute [rw] associated_insight_id
1311
+ # @return [String]
1312
+ #
1313
+ # @!attribute [rw] id
1314
+ # @return [String]
1315
+ #
1316
+ # @!attribute [rw] resource_collection
1317
+ # @return [Types::ResourceCollection]
1318
+ #
1319
+ # @!attribute [rw] severity
1320
+ # @return [String]
1321
+ #
1322
+ # @!attribute [rw] source_details
1323
+ # @return [Types::AnomalySourceDetails]
1324
+ #
1325
+ # @!attribute [rw] status
1326
+ # @return [String]
1327
+ #
1328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveAnomalySummary AWS API Documentation
1329
+ #
1330
+ class ReactiveAnomalySummary < Struct.new(
1331
+ :anomaly_time_range,
1332
+ :associated_insight_id,
1333
+ :id,
1334
+ :resource_collection,
1335
+ :severity,
1336
+ :source_details,
1337
+ :status)
1338
+ SENSITIVE = []
1339
+ include Aws::Structure
1340
+ end
1341
+
1342
+ # @!attribute [rw] id
1343
+ # @return [String]
1344
+ #
1345
+ # @!attribute [rw] insight_time_range
1346
+ # @return [Types::InsightTimeRange]
1347
+ #
1348
+ # @!attribute [rw] name
1349
+ # @return [String]
1350
+ #
1351
+ # @!attribute [rw] resource_collection
1352
+ # @return [Types::ResourceCollection]
1353
+ #
1354
+ # @!attribute [rw] severity
1355
+ # @return [String]
1356
+ #
1357
+ # @!attribute [rw] ssm_ops_item_id
1358
+ # @return [String]
1359
+ #
1360
+ # @!attribute [rw] status
1361
+ # @return [String]
1362
+ #
1363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveInsight AWS API Documentation
1364
+ #
1365
+ class ReactiveInsight < Struct.new(
1366
+ :id,
1367
+ :insight_time_range,
1368
+ :name,
1369
+ :resource_collection,
1370
+ :severity,
1371
+ :ssm_ops_item_id,
1372
+ :status)
1373
+ SENSITIVE = []
1374
+ include Aws::Structure
1375
+ end
1376
+
1377
+ # @!attribute [rw] id
1378
+ # @return [String]
1379
+ #
1380
+ # @!attribute [rw] insight_time_range
1381
+ # @return [Types::InsightTimeRange]
1382
+ #
1383
+ # @!attribute [rw] name
1384
+ # @return [String]
1385
+ #
1386
+ # @!attribute [rw] resource_collection
1387
+ # @return [Types::ResourceCollection]
1388
+ #
1389
+ # @!attribute [rw] severity
1390
+ # @return [String]
1391
+ #
1392
+ # @!attribute [rw] status
1393
+ # @return [String]
1394
+ #
1395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ReactiveInsightSummary AWS API Documentation
1396
+ #
1397
+ class ReactiveInsightSummary < Struct.new(
1398
+ :id,
1399
+ :insight_time_range,
1400
+ :name,
1401
+ :resource_collection,
1402
+ :severity,
1403
+ :status)
1404
+ SENSITIVE = []
1405
+ include Aws::Structure
1406
+ end
1407
+
1408
+ # @!attribute [rw] description
1409
+ # @return [String]
1410
+ #
1411
+ # @!attribute [rw] link
1412
+ # @return [String]
1413
+ #
1414
+ # @!attribute [rw] name
1415
+ # @return [String]
1416
+ #
1417
+ # @!attribute [rw] reason
1418
+ # @return [String]
1419
+ #
1420
+ # @!attribute [rw] related_anomalies
1421
+ # @return [Array<Types::RecommendationRelatedAnomaly>]
1422
+ #
1423
+ # @!attribute [rw] related_events
1424
+ # @return [Array<Types::RecommendationRelatedEvent>]
1425
+ #
1426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/Recommendation AWS API Documentation
1427
+ #
1428
+ class Recommendation < Struct.new(
1429
+ :description,
1430
+ :link,
1431
+ :name,
1432
+ :reason,
1433
+ :related_anomalies,
1434
+ :related_events)
1435
+ SENSITIVE = []
1436
+ include Aws::Structure
1437
+ end
1438
+
1439
+ # @!attribute [rw] resources
1440
+ # @return [Array<Types::RecommendationRelatedAnomalyResource>]
1441
+ #
1442
+ # @!attribute [rw] source_details
1443
+ # @return [Array<Types::RecommendationRelatedAnomalySourceDetail>]
1444
+ #
1445
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomaly AWS API Documentation
1446
+ #
1447
+ class RecommendationRelatedAnomaly < Struct.new(
1448
+ :resources,
1449
+ :source_details)
1450
+ SENSITIVE = []
1451
+ include Aws::Structure
1452
+ end
1453
+
1454
+ # @!attribute [rw] name
1455
+ # @return [String]
1456
+ #
1457
+ # @!attribute [rw] type
1458
+ # @return [String]
1459
+ #
1460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomalyResource AWS API Documentation
1461
+ #
1462
+ class RecommendationRelatedAnomalyResource < Struct.new(
1463
+ :name,
1464
+ :type)
1465
+ SENSITIVE = []
1466
+ include Aws::Structure
1467
+ end
1468
+
1469
+ # @!attribute [rw] cloud_watch_metrics
1470
+ # @return [Array<Types::RecommendationRelatedCloudWatchMetricsSourceDetail>]
1471
+ #
1472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedAnomalySourceDetail AWS API Documentation
1473
+ #
1474
+ class RecommendationRelatedAnomalySourceDetail < Struct.new(
1475
+ :cloud_watch_metrics)
1476
+ SENSITIVE = []
1477
+ include Aws::Structure
1478
+ end
1479
+
1480
+ # @!attribute [rw] metric_name
1481
+ # @return [String]
1482
+ #
1483
+ # @!attribute [rw] namespace
1484
+ # @return [String]
1485
+ #
1486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedCloudWatchMetricsSourceDetail AWS API Documentation
1487
+ #
1488
+ class RecommendationRelatedCloudWatchMetricsSourceDetail < Struct.new(
1489
+ :metric_name,
1490
+ :namespace)
1491
+ SENSITIVE = []
1492
+ include Aws::Structure
1493
+ end
1494
+
1495
+ # @!attribute [rw] name
1496
+ # @return [String]
1497
+ #
1498
+ # @!attribute [rw] resources
1499
+ # @return [Array<Types::RecommendationRelatedEventResource>]
1500
+ #
1501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedEvent AWS API Documentation
1502
+ #
1503
+ class RecommendationRelatedEvent < Struct.new(
1504
+ :name,
1505
+ :resources)
1506
+ SENSITIVE = []
1507
+ include Aws::Structure
1508
+ end
1509
+
1510
+ # @!attribute [rw] name
1511
+ # @return [String]
1512
+ #
1513
+ # @!attribute [rw] type
1514
+ # @return [String]
1515
+ #
1516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RecommendationRelatedEventResource AWS API Documentation
1517
+ #
1518
+ class RecommendationRelatedEventResource < Struct.new(
1519
+ :name,
1520
+ :type)
1521
+ SENSITIVE = []
1522
+ include Aws::Structure
1523
+ end
1524
+
1525
+ # @note When making an API call, you may pass RemoveNotificationChannelRequest
1526
+ # data as a hash:
1527
+ #
1528
+ # {
1529
+ # id: "__string", # required
1530
+ # }
1531
+ #
1532
+ # @!attribute [rw] id
1533
+ # @return [String]
1534
+ #
1535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RemoveNotificationChannelRequest AWS API Documentation
1536
+ #
1537
+ class RemoveNotificationChannelRequest < Struct.new(
1538
+ :id)
1539
+ SENSITIVE = []
1540
+ include Aws::Structure
1541
+ end
1542
+
1543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/RemoveNotificationChannelResponse AWS API Documentation
1544
+ #
1545
+ class RemoveNotificationChannelResponse < Aws::EmptyStructure; end
1546
+
1547
+ # @note When making an API call, you may pass ResourceCollection
1548
+ # data as a hash:
1549
+ #
1550
+ # {
1551
+ # cloud_formation: {
1552
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1553
+ # },
1554
+ # }
1555
+ #
1556
+ # @!attribute [rw] cloud_formation
1557
+ # @return [Types::CloudFormationCollection]
1558
+ #
1559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollection AWS API Documentation
1560
+ #
1561
+ class ResourceCollection < Struct.new(
1562
+ :cloud_formation)
1563
+ SENSITIVE = []
1564
+ include Aws::Structure
1565
+ end
1566
+
1567
+ # @!attribute [rw] cloud_formation
1568
+ # @return [Types::CloudFormationCollectionFilter]
1569
+ #
1570
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceCollectionFilter AWS API Documentation
1571
+ #
1572
+ class ResourceCollectionFilter < Struct.new(
1573
+ :cloud_formation)
1574
+ SENSITIVE = []
1575
+ include Aws::Structure
1576
+ end
1577
+
1578
+ # @!attribute [rw] message
1579
+ # @return [String]
1580
+ #
1581
+ # @!attribute [rw] resource_id
1582
+ # @return [String]
1583
+ #
1584
+ # @!attribute [rw] resource_type
1585
+ # @return [String]
1586
+ #
1587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ResourceNotFoundException AWS API Documentation
1588
+ #
1589
+ class ResourceNotFoundException < Struct.new(
1590
+ :message,
1591
+ :resource_id,
1592
+ :resource_type)
1593
+ SENSITIVE = []
1594
+ include Aws::Structure
1595
+ end
1596
+
1597
+ # @note When making an API call, you may pass SearchInsightsFilters
1598
+ # data as a hash:
1599
+ #
1600
+ # {
1601
+ # resource_collection: {
1602
+ # cloud_formation: {
1603
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1604
+ # },
1605
+ # },
1606
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
1607
+ # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
1608
+ # }
1609
+ #
1610
+ # @!attribute [rw] resource_collection
1611
+ # @return [Types::ResourceCollection]
1612
+ #
1613
+ # @!attribute [rw] severities
1614
+ # @return [Array<String>]
1615
+ #
1616
+ # @!attribute [rw] statuses
1617
+ # @return [Array<String>]
1618
+ #
1619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsightsFilters AWS API Documentation
1620
+ #
1621
+ class SearchInsightsFilters < Struct.new(
1622
+ :resource_collection,
1623
+ :severities,
1624
+ :statuses)
1625
+ SENSITIVE = []
1626
+ include Aws::Structure
1627
+ end
1628
+
1629
+ # @note When making an API call, you may pass SearchInsightsRequest
1630
+ # data as a hash:
1631
+ #
1632
+ # {
1633
+ # filters: {
1634
+ # resource_collection: {
1635
+ # cloud_formation: {
1636
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1637
+ # },
1638
+ # },
1639
+ # severities: ["LOW"], # accepts LOW, MEDIUM, HIGH
1640
+ # statuses: ["ONGOING"], # accepts ONGOING, CLOSED
1641
+ # },
1642
+ # max_results: 1,
1643
+ # next_token: "__stringMin36Max36PatternAF098AF094AF094AF094AF0912",
1644
+ # start_time_range: { # required
1645
+ # from_time: Time.now,
1646
+ # to_time: Time.now,
1647
+ # },
1648
+ # type: "REACTIVE", # required, accepts REACTIVE, PROACTIVE
1649
+ # }
1650
+ #
1651
+ # @!attribute [rw] filters
1652
+ # @return [Types::SearchInsightsFilters]
1653
+ #
1654
+ # @!attribute [rw] max_results
1655
+ # @return [Integer]
1656
+ #
1657
+ # @!attribute [rw] next_token
1658
+ # @return [String]
1659
+ #
1660
+ # @!attribute [rw] start_time_range
1661
+ # @return [Types::StartTimeRange]
1662
+ #
1663
+ # @!attribute [rw] type
1664
+ # @return [String]
1665
+ #
1666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsightsRequest AWS API Documentation
1667
+ #
1668
+ class SearchInsightsRequest < Struct.new(
1669
+ :filters,
1670
+ :max_results,
1671
+ :next_token,
1672
+ :start_time_range,
1673
+ :type)
1674
+ SENSITIVE = []
1675
+ include Aws::Structure
1676
+ end
1677
+
1678
+ # @!attribute [rw] next_token
1679
+ # @return [String]
1680
+ #
1681
+ # @!attribute [rw] proactive_insights
1682
+ # @return [Array<Types::ProactiveInsightSummary>]
1683
+ #
1684
+ # @!attribute [rw] reactive_insights
1685
+ # @return [Array<Types::ReactiveInsightSummary>]
1686
+ #
1687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SearchInsightsResponse AWS API Documentation
1688
+ #
1689
+ class SearchInsightsResponse < Struct.new(
1690
+ :next_token,
1691
+ :proactive_insights,
1692
+ :reactive_insights)
1693
+ SENSITIVE = []
1694
+ include Aws::Structure
1695
+ end
1696
+
1697
+ # @!attribute [rw] ops_center
1698
+ # @return [Types::OpsCenterIntegration]
1699
+ #
1700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceIntegrationConfig AWS API Documentation
1701
+ #
1702
+ class ServiceIntegrationConfig < Struct.new(
1703
+ :ops_center)
1704
+ SENSITIVE = []
1705
+ include Aws::Structure
1706
+ end
1707
+
1708
+ # @!attribute [rw] message
1709
+ # @return [String]
1710
+ #
1711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ServiceQuotaExceededException AWS API Documentation
1712
+ #
1713
+ class ServiceQuotaExceededException < Struct.new(
1714
+ :message)
1715
+ SENSITIVE = []
1716
+ include Aws::Structure
1717
+ end
1718
+
1719
+ # @note When making an API call, you may pass SnsChannelConfig
1720
+ # data as a hash:
1721
+ #
1722
+ # {
1723
+ # topic_arn: "__stringMin36Max1024PatternArnAwsAZ09SnsAZ09D12",
1724
+ # }
1725
+ #
1726
+ # @!attribute [rw] topic_arn
1727
+ # @return [String]
1728
+ #
1729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/SnsChannelConfig AWS API Documentation
1730
+ #
1731
+ class SnsChannelConfig < Struct.new(
1732
+ :topic_arn)
1733
+ SENSITIVE = []
1734
+ include Aws::Structure
1735
+ end
1736
+
1737
+ # @note When making an API call, you may pass StartTimeRange
1738
+ # data as a hash:
1739
+ #
1740
+ # {
1741
+ # from_time: Time.now,
1742
+ # to_time: Time.now,
1743
+ # }
1744
+ #
1745
+ # @!attribute [rw] from_time
1746
+ # @return [Time]
1747
+ #
1748
+ # @!attribute [rw] to_time
1749
+ # @return [Time]
1750
+ #
1751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/StartTimeRange AWS API Documentation
1752
+ #
1753
+ class StartTimeRange < Struct.new(
1754
+ :from_time,
1755
+ :to_time)
1756
+ SENSITIVE = []
1757
+ include Aws::Structure
1758
+ end
1759
+
1760
+ # @!attribute [rw] message
1761
+ # @return [String]
1762
+ #
1763
+ # @!attribute [rw] quota_code
1764
+ # @return [String]
1765
+ #
1766
+ # @!attribute [rw] service_code
1767
+ # @return [String]
1768
+ #
1769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ThrottlingException AWS API Documentation
1770
+ #
1771
+ class ThrottlingException < Struct.new(
1772
+ :message,
1773
+ :quota_code,
1774
+ :service_code)
1775
+ SENSITIVE = []
1776
+ include Aws::Structure
1777
+ end
1778
+
1779
+ # @note When making an API call, you may pass UpdateCloudFormationCollectionFilter
1780
+ # data as a hash:
1781
+ #
1782
+ # {
1783
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1784
+ # }
1785
+ #
1786
+ # @!attribute [rw] stack_names
1787
+ # @return [Array<String>]
1788
+ #
1789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateCloudFormationCollectionFilter AWS API Documentation
1790
+ #
1791
+ class UpdateCloudFormationCollectionFilter < Struct.new(
1792
+ :stack_names)
1793
+ SENSITIVE = []
1794
+ include Aws::Structure
1795
+ end
1796
+
1797
+ # @note When making an API call, you may pass UpdateResourceCollectionFilter
1798
+ # data as a hash:
1799
+ #
1800
+ # {
1801
+ # cloud_formation: {
1802
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1803
+ # },
1804
+ # }
1805
+ #
1806
+ # @!attribute [rw] cloud_formation
1807
+ # @return [Types::UpdateCloudFormationCollectionFilter]
1808
+ #
1809
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionFilter AWS API Documentation
1810
+ #
1811
+ class UpdateResourceCollectionFilter < Struct.new(
1812
+ :cloud_formation)
1813
+ SENSITIVE = []
1814
+ include Aws::Structure
1815
+ end
1816
+
1817
+ # @note When making an API call, you may pass UpdateResourceCollectionRequest
1818
+ # data as a hash:
1819
+ #
1820
+ # {
1821
+ # action: "ADD", # required, accepts ADD, REMOVE
1822
+ # resource_collection: { # required
1823
+ # cloud_formation: {
1824
+ # stack_names: ["__stringMin1Max128PatternAZAZAZAZ09"],
1825
+ # },
1826
+ # },
1827
+ # }
1828
+ #
1829
+ # @!attribute [rw] action
1830
+ # @return [String]
1831
+ #
1832
+ # @!attribute [rw] resource_collection
1833
+ # @return [Types::UpdateResourceCollectionFilter]
1834
+ #
1835
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionRequest AWS API Documentation
1836
+ #
1837
+ class UpdateResourceCollectionRequest < Struct.new(
1838
+ :action,
1839
+ :resource_collection)
1840
+ SENSITIVE = []
1841
+ include Aws::Structure
1842
+ end
1843
+
1844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateResourceCollectionResponse AWS API Documentation
1845
+ #
1846
+ class UpdateResourceCollectionResponse < Aws::EmptyStructure; end
1847
+
1848
+ # @note When making an API call, you may pass UpdateServiceIntegrationConfig
1849
+ # data as a hash:
1850
+ #
1851
+ # {
1852
+ # ops_center: {
1853
+ # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
1854
+ # },
1855
+ # }
1856
+ #
1857
+ # @!attribute [rw] ops_center
1858
+ # @return [Types::OpsCenterIntegrationConfig]
1859
+ #
1860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateServiceIntegrationConfig AWS API Documentation
1861
+ #
1862
+ class UpdateServiceIntegrationConfig < Struct.new(
1863
+ :ops_center)
1864
+ SENSITIVE = []
1865
+ include Aws::Structure
1866
+ end
1867
+
1868
+ # @note When making an API call, you may pass UpdateServiceIntegrationRequest
1869
+ # data as a hash:
1870
+ #
1871
+ # {
1872
+ # service_integration: { # required
1873
+ # ops_center: {
1874
+ # opt_in_status: "ENABLED", # accepts ENABLED, DISABLED
1875
+ # },
1876
+ # },
1877
+ # }
1878
+ #
1879
+ # @!attribute [rw] service_integration
1880
+ # @return [Types::UpdateServiceIntegrationConfig]
1881
+ #
1882
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateServiceIntegrationRequest AWS API Documentation
1883
+ #
1884
+ class UpdateServiceIntegrationRequest < Struct.new(
1885
+ :service_integration)
1886
+ SENSITIVE = []
1887
+ include Aws::Structure
1888
+ end
1889
+
1890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/UpdateServiceIntegrationResponse AWS API Documentation
1891
+ #
1892
+ class UpdateServiceIntegrationResponse < Aws::EmptyStructure; end
1893
+
1894
+ # @!attribute [rw] fields
1895
+ # @return [Array<Types::ValidationExceptionField>]
1896
+ #
1897
+ # @!attribute [rw] message
1898
+ # @return [String]
1899
+ #
1900
+ # @!attribute [rw] reason
1901
+ # @return [String]
1902
+ #
1903
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ValidationException AWS API Documentation
1904
+ #
1905
+ class ValidationException < Struct.new(
1906
+ :fields,
1907
+ :message,
1908
+ :reason)
1909
+ SENSITIVE = []
1910
+ include Aws::Structure
1911
+ end
1912
+
1913
+ # @!attribute [rw] message
1914
+ # @return [String]
1915
+ #
1916
+ # @!attribute [rw] name
1917
+ # @return [String]
1918
+ #
1919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/ValidationExceptionField AWS API Documentation
1920
+ #
1921
+ class ValidationExceptionField < Struct.new(
1922
+ :message,
1923
+ :name)
1924
+ SENSITIVE = []
1925
+ include Aws::Structure
1926
+ end
1927
+
1928
+ end
1929
+ end