@aws-sdk/client-devops-guru 3.295.0 → 3.297.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.
Files changed (51) hide show
  1. package/dist-types/DevOpsGuru.d.ts +32 -0
  2. package/dist-types/DevOpsGuruClient.d.ts +24 -4
  3. package/dist-types/commands/AddNotificationChannelCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteInsightCommand.d.ts +16 -0
  5. package/dist-types/commands/DescribeAccountHealthCommand.d.ts +16 -0
  6. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +16 -0
  7. package/dist-types/commands/DescribeAnomalyCommand.d.ts +16 -0
  8. package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeFeedbackCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeInsightCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +16 -0
  16. package/dist-types/commands/GetCostEstimationCommand.d.ts +16 -0
  17. package/dist-types/commands/GetResourceCollectionCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +16 -0
  19. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListEventsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListInsightsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +16 -0
  23. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListRecommendationsCommand.d.ts +16 -0
  26. package/dist-types/commands/PutFeedbackCommand.d.ts +16 -0
  27. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
  28. package/dist-types/commands/SearchInsightsCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +16 -0
  30. package/dist-types/commands/StartCostEstimationCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +16 -0
  34. package/dist-types/models/DevOpsGuruServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +358 -0
  36. package/dist-types/pagination/DescribeOrganizationResourceCollectionHealthPaginator.d.ts +3 -0
  37. package/dist-types/pagination/DescribeResourceCollectionHealthPaginator.d.ts +3 -0
  38. package/dist-types/pagination/GetCostEstimationPaginator.d.ts +3 -0
  39. package/dist-types/pagination/GetResourceCollectionPaginator.d.ts +3 -0
  40. package/dist-types/pagination/Interfaces.d.ts +3 -0
  41. package/dist-types/pagination/ListAnomaliesForInsightPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListAnomalousLogGroupsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListEventsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListInsightsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMonitoredResourcesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListNotificationChannelsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListOrganizationInsightsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/SearchInsightsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/SearchOrganizationInsightsPaginator.d.ts +3 -0
  51. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p> You don't have permissions to perform the requested operation. The user or role that
5
6
  * is making the request must have at least one IAM permissions policy attached that grants
6
7
  * the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access Management</a> in the
@@ -16,6 +17,7 @@ export declare class AccessDeniedException extends __BaseException {
16
17
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
17
18
  }
18
19
  /**
20
+ * @public
19
21
  * <p> Information about the number of open reactive and proactive insights that can be used
20
22
  * to gauge the health of your system. </p>
21
23
  */
@@ -32,6 +34,7 @@ export interface AccountInsightHealth {
32
34
  OpenReactiveInsights?: number;
33
35
  }
34
36
  /**
37
+ * @public
35
38
  * <p> Returns the number of open reactive insights, the number of open proactive insights,
36
39
  * and the number of metrics analyzed in your Amazon Web Services account. Use these numbers to gauge the
37
40
  * health of operations in your Amazon Web Services account. </p>
@@ -48,6 +51,9 @@ export interface AccountHealth {
48
51
  */
49
52
  Insight?: AccountInsightHealth;
50
53
  }
54
+ /**
55
+ * @public
56
+ */
51
57
  export declare enum NotificationMessageType {
52
58
  CLOSED_INSIGHT = "CLOSED_INSIGHT",
53
59
  NEW_ASSOCIATION = "NEW_ASSOCIATION",
@@ -55,12 +61,16 @@ export declare enum NotificationMessageType {
55
61
  NEW_RECOMMENDATION = "NEW_RECOMMENDATION",
56
62
  SEVERITY_UPGRADED = "SEVERITY_UPGRADED"
57
63
  }
64
+ /**
65
+ * @public
66
+ */
58
67
  export declare enum InsightSeverity {
59
68
  HIGH = "HIGH",
60
69
  LOW = "LOW",
61
70
  MEDIUM = "MEDIUM"
62
71
  }
63
72
  /**
73
+ * @public
64
74
  * <p>
65
75
  * The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. You can choose to specify which events or message types to receive notifications for.
66
76
  * You can also choose to specify which severity levels to receive notifications for.
@@ -82,6 +92,7 @@ export interface NotificationFilterConfig {
82
92
  MessageTypes?: (NotificationMessageType | string)[];
83
93
  }
84
94
  /**
95
+ * @public
85
96
  * <p> Contains the Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic. </p>
86
97
  * <p>If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission
87
98
  * to it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics.
@@ -99,6 +110,7 @@ export interface SnsChannelConfig {
99
110
  TopicArn?: string;
100
111
  }
101
112
  /**
113
+ * @public
102
114
  * <p> Information about notification channels you have configured with DevOps Guru.
103
115
  * The one
104
116
  * supported notification channel is Amazon Simple Notification Service (Amazon SNS).</p>
@@ -125,6 +137,9 @@ export interface NotificationChannelConfig {
125
137
  */
126
138
  Filters?: NotificationFilterConfig;
127
139
  }
140
+ /**
141
+ * @public
142
+ */
128
143
  export interface AddNotificationChannelRequest {
129
144
  /**
130
145
  * <p> A <code>NotificationChannelConfig</code> object that specifies what type of
@@ -133,6 +148,9 @@ export interface AddNotificationChannelRequest {
133
148
  */
134
149
  Config: NotificationChannelConfig | undefined;
135
150
  }
151
+ /**
152
+ * @public
153
+ */
136
154
  export interface AddNotificationChannelResponse {
137
155
  /**
138
156
  * <p> The ID of the added notification channel. </p>
@@ -140,6 +158,7 @@ export interface AddNotificationChannelResponse {
140
158
  Id: string | undefined;
141
159
  }
142
160
  /**
161
+ * @public
143
162
  * <p> An exception that is thrown when a conflict occurs. </p>
144
163
  */
145
164
  export declare class ConflictException extends __BaseException {
@@ -160,6 +179,7 @@ export declare class ConflictException extends __BaseException {
160
179
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
161
180
  }
162
181
  /**
182
+ * @public
163
183
  * <p>An internal failure in an Amazon service occurred.</p>
164
184
  */
165
185
  export declare class InternalServerException extends __BaseException {
@@ -177,6 +197,7 @@ export declare class InternalServerException extends __BaseException {
177
197
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
178
198
  }
179
199
  /**
200
+ * @public
180
201
  * <p>A requested resource could not be found</p>
181
202
  */
182
203
  export declare class ResourceNotFoundException extends __BaseException {
@@ -197,6 +218,7 @@ export declare class ResourceNotFoundException extends __BaseException {
197
218
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
198
219
  }
199
220
  /**
221
+ * @public
200
222
  * <p>The request contains a value that exceeds a maximum quota.</p>
201
223
  */
202
224
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -209,6 +231,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
209
231
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
210
232
  }
211
233
  /**
234
+ * @public
212
235
  * <p>The request was denied due to a request throttling.</p>
213
236
  */
214
237
  export declare class ThrottlingException extends __BaseException {
@@ -234,6 +257,7 @@ export declare class ThrottlingException extends __BaseException {
234
257
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
235
258
  }
236
259
  /**
260
+ * @public
237
261
  * <p> The field associated with the validation exception. </p>
238
262
  */
239
263
  export interface ValidationExceptionField {
@@ -247,6 +271,9 @@ export interface ValidationExceptionField {
247
271
  */
248
272
  Message: string | undefined;
249
273
  }
274
+ /**
275
+ * @public
276
+ */
250
277
  export declare enum ValidationExceptionReason {
251
278
  CANNOT_PARSE = "CANNOT_PARSE",
252
279
  FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
@@ -256,6 +283,7 @@ export declare enum ValidationExceptionReason {
256
283
  UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
257
284
  }
258
285
  /**
286
+ * @public
259
287
  * <p> Contains information about data passed in to a field during a request that is not
260
288
  * valid. </p>
261
289
  */
@@ -279,11 +307,15 @@ export declare class ValidationException extends __BaseException {
279
307
  */
280
308
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
281
309
  }
310
+ /**
311
+ * @public
312
+ */
282
313
  export declare enum EventSourceOptInStatus {
283
314
  DISABLED = "DISABLED",
284
315
  ENABLED = "ENABLED"
285
316
  }
286
317
  /**
318
+ * @public
287
319
  * <p>Information about your account's integration with Amazon CodeGuru Profiler. This
288
320
  * returns whether DevOps Guru is configured to consume recommendations generated from Amazon
289
321
  * CodeGuru Profiler.</p>
@@ -295,6 +327,9 @@ export interface AmazonCodeGuruProfilerIntegration {
295
327
  */
296
328
  Status?: EventSourceOptInStatus | string;
297
329
  }
330
+ /**
331
+ * @public
332
+ */
298
333
  export declare enum LogAnomalyType {
299
334
  BLOCK_FORMAT = "BLOCK_FORMAT",
300
335
  FORMAT = "FORMAT",
@@ -306,6 +341,7 @@ export declare enum LogAnomalyType {
306
341
  NUMERICAL_POINT = "NUMERICAL_POINT"
307
342
  }
308
343
  /**
344
+ * @public
309
345
  * <p>
310
346
  * Information about an anomalous log event found within a log group.
311
347
  * </p>
@@ -355,6 +391,7 @@ export interface LogAnomalyClass {
355
391
  LogEventTimestamp?: Date;
356
392
  }
357
393
  /**
394
+ * @public
358
395
  * <p>
359
396
  * A cluster of similar anomalous log events found within a log group.
360
397
  * </p>
@@ -368,6 +405,7 @@ export interface LogAnomalyShowcase {
368
405
  LogAnomalyClasses?: LogAnomalyClass[];
369
406
  }
370
407
  /**
408
+ * @public
371
409
  * <p>
372
410
  * An Amazon CloudWatch log group that contains log anomalies and is used to generate an insight.
373
411
  * </p>
@@ -405,6 +443,7 @@ export interface AnomalousLogGroup {
405
443
  LogAnomalyShowcases?: LogAnomalyShowcase[];
406
444
  }
407
445
  /**
446
+ * @public
408
447
  * <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
409
448
  * is different from <code>AnomalyTimeRange</code>, which specifies the time range when
410
449
  * DevOps Guru actually observes the anomalous behavior. </p>
@@ -420,6 +459,7 @@ export interface AnomalyReportedTimeRange {
420
459
  CloseTime?: Date;
421
460
  }
422
461
  /**
462
+ * @public
423
463
  * <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in the
424
464
  * generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates and
425
465
  * insight with details about the anomalous behavior and suggestions about how to correct
@@ -435,12 +475,16 @@ export interface AnomalyResource {
435
475
  */
436
476
  Type?: string;
437
477
  }
478
+ /**
479
+ * @public
480
+ */
438
481
  export declare enum AnomalySeverity {
439
482
  HIGH = "HIGH",
440
483
  LOW = "LOW",
441
484
  MEDIUM = "MEDIUM"
442
485
  }
443
486
  /**
487
+ * @public
444
488
  * <p> The dimension of an Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
445
489
  * your account for operational problems and anomalous behavior. A dimension is a
446
490
  * name/value pair that is part of the identity of a metric. A metric can have up to 10
@@ -456,12 +500,16 @@ export interface CloudWatchMetricsDimension {
456
500
  */
457
501
  Value?: string;
458
502
  }
503
+ /**
504
+ * @public
505
+ */
459
506
  export declare enum CloudWatchMetricDataStatusCode {
460
507
  COMPLETE = "Complete",
461
508
  INTERNAL_ERROR = "InternalError",
462
509
  PARTIAL_DATA = "PartialData"
463
510
  }
464
511
  /**
512
+ * @public
465
513
  * <p>A pair that contains metric values at the respective timestamp.</p>
466
514
  */
467
515
  export interface TimestampMetricValuePair {
@@ -475,6 +523,7 @@ export interface TimestampMetricValuePair {
475
523
  MetricValue?: number;
476
524
  }
477
525
  /**
526
+ * @public
478
527
  * <p>Contains information about the analyzed metrics that displayed anomalous behavior.
479
528
  * </p>
480
529
  */
@@ -489,6 +538,9 @@ export interface CloudWatchMetricsDataSummary {
489
538
  */
490
539
  StatusCode?: CloudWatchMetricDataStatusCode | string;
491
540
  }
541
+ /**
542
+ * @public
543
+ */
492
544
  export declare enum CloudWatchMetricsStat {
493
545
  AVERAGE = "Average",
494
546
  MAXIMUM = "Maximum",
@@ -500,6 +552,7 @@ export declare enum CloudWatchMetricsStat {
500
552
  SUM = "Sum"
501
553
  }
502
554
  /**
555
+ * @public
503
556
  * <p> Information about an Amazon CloudWatch metric. </p>
504
557
  */
505
558
  export interface CloudWatchMetricsDetail {
@@ -536,6 +589,7 @@ export interface CloudWatchMetricsDetail {
536
589
  MetricDataSummary?: CloudWatchMetricsDataSummary;
537
590
  }
538
591
  /**
592
+ * @public
539
593
  * <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
540
594
  * <code>db.sql</code> dimension group consists of the following dimensions:
541
595
  * <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>,
@@ -710,6 +764,7 @@ export interface PerformanceInsightsMetricDimensionGroup {
710
764
  Limit?: number;
711
765
  }
712
766
  /**
767
+ * @public
713
768
  * <p>A single query to be processed. Use these parameters to query the Performance Insights
714
769
  * <code>GetResourceMetrics</code> API to retrieve the metrics for an anomaly. For more
715
770
  * information, see <code>
@@ -784,6 +839,7 @@ export interface PerformanceInsightsMetricQuery {
784
839
  Filter?: Record<string, string>;
785
840
  }
786
841
  /**
842
+ * @public
787
843
  * <p>Information about a reference metric used to evaluate Performance Insights.</p>
788
844
  */
789
845
  export interface PerformanceInsightsReferenceMetric {
@@ -793,6 +849,7 @@ export interface PerformanceInsightsReferenceMetric {
793
849
  MetricQuery?: PerformanceInsightsMetricQuery;
794
850
  }
795
851
  /**
852
+ * @public
796
853
  * <p>A reference value to compare Performance Insights metrics against to determine if the metrics
797
854
  * demonstrate anomalous behavior.</p>
798
855
  */
@@ -803,6 +860,7 @@ export interface PerformanceInsightsReferenceScalar {
803
860
  Value?: number;
804
861
  }
805
862
  /**
863
+ * @public
806
864
  * <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
807
865
  * console along with the actual metrics it analyzed. Compare these reference values to
808
866
  * your actual metrics to help you understand anomalous behavior that DevOps Guru
@@ -822,6 +880,7 @@ export interface PerformanceInsightsReferenceComparisonValues {
822
880
  ReferenceMetric?: PerformanceInsightsReferenceMetric;
823
881
  }
824
882
  /**
883
+ * @public
825
884
  * <p>Reference data used to evaluate Performance Insights to determine if its performance is anomalous or
826
885
  * not.</p>
827
886
  */
@@ -839,6 +898,7 @@ export interface PerformanceInsightsReferenceData {
839
898
  ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
840
899
  }
841
900
  /**
901
+ * @public
842
902
  * <p>A statistic in a Performance Insights collection.</p>
843
903
  */
844
904
  export interface PerformanceInsightsStat {
@@ -852,6 +912,7 @@ export interface PerformanceInsightsStat {
852
912
  Value?: number;
853
913
  }
854
914
  /**
915
+ * @public
855
916
  * <p>Details about Performance Insights metrics.</p>
856
917
  * <p>Amazon RDS Performance Insights enables you to monitor and explore different
857
918
  * dimensions of database load based on data captured from a running DB instance.
@@ -904,6 +965,7 @@ export interface PerformanceInsightsMetricsDetail {
904
965
  StatsAtBaseline?: PerformanceInsightsStat[];
905
966
  }
906
967
  /**
968
+ * @public
907
969
  * <p> Details about the source of the anomalous operational data that triggered the
908
970
  * anomaly.</p>
909
971
  */
@@ -920,6 +982,7 @@ export interface AnomalySourceDetails {
920
982
  PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
921
983
  }
922
984
  /**
985
+ * @public
923
986
  * <p>Metadata about the detection source that generates proactive anomalies. The anomaly is
924
987
  * detected using analysis of the metric data
925
988
  over a period of time</p>
@@ -938,11 +1001,15 @@ export interface AnomalySourceMetadata {
938
1001
  */
939
1002
  SourceResourceType?: string;
940
1003
  }
1004
+ /**
1005
+ * @public
1006
+ */
941
1007
  export declare enum AnomalyStatus {
942
1008
  CLOSED = "CLOSED",
943
1009
  ONGOING = "ONGOING"
944
1010
  }
945
1011
  /**
1012
+ * @public
946
1013
  * <p> A time range that specifies when the observed unusual behavior in an anomaly started
947
1014
  * and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
948
1015
  * the time range when DevOps Guru opens and then closes an anomaly. </p>
@@ -957,20 +1024,35 @@ export interface AnomalyTimeRange {
957
1024
  */
958
1025
  EndTime?: Date;
959
1026
  }
1027
+ /**
1028
+ * @public
1029
+ */
960
1030
  export declare enum AnomalyType {
961
1031
  CAUSAL = "CAUSAL",
962
1032
  CONTEXTUAL = "CONTEXTUAL"
963
1033
  }
1034
+ /**
1035
+ * @public
1036
+ */
964
1037
  export interface DeleteInsightRequest {
965
1038
  /**
966
1039
  * <p>The ID of the insight.</p>
967
1040
  */
968
1041
  Id: string | undefined;
969
1042
  }
1043
+ /**
1044
+ * @public
1045
+ */
970
1046
  export interface DeleteInsightResponse {
971
1047
  }
1048
+ /**
1049
+ * @public
1050
+ */
972
1051
  export interface DescribeAccountHealthRequest {
973
1052
  }
1053
+ /**
1054
+ * @public
1055
+ */
974
1056
  export interface DescribeAccountHealthResponse {
975
1057
  /**
976
1058
  * <p> An integer that specifies the number of open reactive insights in your Amazon Web Services account.
@@ -999,6 +1081,9 @@ export interface DescribeAccountHealthResponse {
999
1081
  */
1000
1082
  AnalyzedResourceCount?: number;
1001
1083
  }
1084
+ /**
1085
+ * @public
1086
+ */
1002
1087
  export interface DescribeAccountOverviewRequest {
1003
1088
  /**
1004
1089
  * <p> The start of the time range passed in. The start time granularity is at the day
@@ -1013,6 +1098,9 @@ export interface DescribeAccountOverviewRequest {
1013
1098
  */
1014
1099
  ToTime?: Date;
1015
1100
  }
1101
+ /**
1102
+ * @public
1103
+ */
1016
1104
  export interface DescribeAccountOverviewResponse {
1017
1105
  /**
1018
1106
  * <p> An integer that specifies the number of open reactive insights in your Amazon Web Services account
@@ -1030,6 +1118,9 @@ export interface DescribeAccountOverviewResponse {
1030
1118
  */
1031
1119
  MeanTimeToRecoverInMilliseconds: number | undefined;
1032
1120
  }
1121
+ /**
1122
+ * @public
1123
+ */
1033
1124
  export interface DescribeAnomalyRequest {
1034
1125
  /**
1035
1126
  * <p> The ID of the anomaly. </p>
@@ -1041,6 +1132,7 @@ export interface DescribeAnomalyRequest {
1041
1132
  AccountId?: string;
1042
1133
  }
1043
1134
  /**
1135
+ * @public
1044
1136
  * <p> The time range during which anomalous behavior in a proactive anomaly or an insight
1045
1137
  * is expected to occur. </p>
1046
1138
  */
@@ -1056,6 +1148,7 @@ export interface PredictionTimeRange {
1056
1148
  EndTime?: Date;
1057
1149
  }
1058
1150
  /**
1151
+ * @public
1059
1152
  * <p> Information about Amazon Web Services CloudFormation stacks. You can use up to 500
1060
1153
  * stacks to specify which Amazon Web Services resources in your account to analyze. For more
1061
1154
  * information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
@@ -1068,6 +1161,7 @@ export interface CloudFormationCollection {
1068
1161
  StackNames?: string[];
1069
1162
  }
1070
1163
  /**
1164
+ * @public
1071
1165
  * <p>A collection of Amazon Web Services tags.</p>
1072
1166
  * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1073
1167
  * tagging, so you can assign the same tag to resources from different services to indicate
@@ -1133,6 +1227,7 @@ export interface TagCollection {
1133
1227
  TagValues: string[] | undefined;
1134
1228
  }
1135
1229
  /**
1230
+ * @public
1136
1231
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
1137
1232
  * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1138
1233
  * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
@@ -1183,6 +1278,7 @@ export interface ResourceCollection {
1183
1278
  Tags?: TagCollection[];
1184
1279
  }
1185
1280
  /**
1281
+ * @public
1186
1282
  * <p>Information about an anomaly. This object is returned by
1187
1283
  * <code>ListAnomalies</code>.</p>
1188
1284
  */
@@ -1261,6 +1357,7 @@ export interface ProactiveAnomaly {
1261
1357
  Description?: string;
1262
1358
  }
1263
1359
  /**
1360
+ * @public
1264
1361
  * <p>Details about a reactive anomaly. This object is returned by
1265
1362
  * <code>ListAnomalies</code>.</p>
1266
1363
  */
@@ -1341,6 +1438,9 @@ export interface ReactiveAnomaly {
1341
1438
  */
1342
1439
  AnomalyResources?: AnomalyResource[];
1343
1440
  }
1441
+ /**
1442
+ * @public
1443
+ */
1344
1444
  export interface DescribeAnomalyResponse {
1345
1445
  /**
1346
1446
  * <p> A <code>ProactiveAnomaly</code> object that represents the requested anomaly. </p>
@@ -1351,9 +1451,13 @@ export interface DescribeAnomalyResponse {
1351
1451
  */
1352
1452
  ReactiveAnomaly?: ReactiveAnomaly;
1353
1453
  }
1454
+ /**
1455
+ * @public
1456
+ */
1354
1457
  export interface DescribeEventSourcesConfigRequest {
1355
1458
  }
1356
1459
  /**
1460
+ * @public
1357
1461
  * <p>Information about the integration of DevOps Guru as consumer with another AWS service, such
1358
1462
  * as AWS CodeGuru Profiler via EventBridge.</p>
1359
1463
  */
@@ -1364,18 +1468,27 @@ export interface EventSourcesConfig {
1364
1468
  */
1365
1469
  AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
1366
1470
  }
1471
+ /**
1472
+ * @public
1473
+ */
1367
1474
  export interface DescribeEventSourcesConfigResponse {
1368
1475
  /**
1369
1476
  * <p>Lists the event sources in the configuration.</p>
1370
1477
  */
1371
1478
  EventSources?: EventSourcesConfig;
1372
1479
  }
1480
+ /**
1481
+ * @public
1482
+ */
1373
1483
  export interface DescribeFeedbackRequest {
1374
1484
  /**
1375
1485
  * <p> The ID of the insight for which the feedback was provided. </p>
1376
1486
  */
1377
1487
  InsightId?: string;
1378
1488
  }
1489
+ /**
1490
+ * @public
1491
+ */
1379
1492
  export declare enum InsightFeedbackOption {
1380
1493
  ALERT_TOO_SENSITIVE = "ALERT_TOO_SENSITIVE",
1381
1494
  DATA_INCORRECT = "DATA_INCORRECT",
@@ -1384,6 +1497,7 @@ export declare enum InsightFeedbackOption {
1384
1497
  VALID_COLLECTION = "VALID_COLLECTION"
1385
1498
  }
1386
1499
  /**
1500
+ * @public
1387
1501
  * <p> Information about insight feedback received from a customer. </p>
1388
1502
  */
1389
1503
  export interface InsightFeedback {
@@ -1396,12 +1510,18 @@ export interface InsightFeedback {
1396
1510
  */
1397
1511
  Feedback?: InsightFeedbackOption | string;
1398
1512
  }
1513
+ /**
1514
+ * @public
1515
+ */
1399
1516
  export interface DescribeFeedbackResponse {
1400
1517
  /**
1401
1518
  * <p> Information about insight feedback received from a customer. </p>
1402
1519
  */
1403
1520
  InsightFeedback?: InsightFeedback;
1404
1521
  }
1522
+ /**
1523
+ * @public
1524
+ */
1405
1525
  export interface DescribeInsightRequest {
1406
1526
  /**
1407
1527
  * <p> The ID of the insight. </p>
@@ -1413,6 +1533,7 @@ export interface DescribeInsightRequest {
1413
1533
  AccountId?: string;
1414
1534
  }
1415
1535
  /**
1536
+ * @public
1416
1537
  * <p> A time ranged that specifies when the observed behavior in an insight started and
1417
1538
  * ended. </p>
1418
1539
  */
@@ -1426,11 +1547,15 @@ export interface InsightTimeRange {
1426
1547
  */
1427
1548
  EndTime?: Date;
1428
1549
  }
1550
+ /**
1551
+ * @public
1552
+ */
1429
1553
  export declare enum InsightStatus {
1430
1554
  CLOSED = "CLOSED",
1431
1555
  ONGOING = "ONGOING"
1432
1556
  }
1433
1557
  /**
1558
+ * @public
1434
1559
  * <p>Details about a proactive insight. This object is returned by
1435
1560
  * <code>ListInsights</code>.</p>
1436
1561
  */
@@ -1481,6 +1606,7 @@ export interface ProactiveInsight {
1481
1606
  Description?: string;
1482
1607
  }
1483
1608
  /**
1609
+ * @public
1484
1610
  * <p> Information about a reactive insight. This object is returned by
1485
1611
  * <code>ListInsights</code>. </p>
1486
1612
  */
@@ -1525,6 +1651,9 @@ export interface ReactiveInsight {
1525
1651
  */
1526
1652
  Description?: string;
1527
1653
  }
1654
+ /**
1655
+ * @public
1656
+ */
1528
1657
  export interface DescribeInsightResponse {
1529
1658
  /**
1530
1659
  * <p> A <code>ProactiveInsight</code> object that represents the requested insight. </p>
@@ -1535,6 +1664,9 @@ export interface DescribeInsightResponse {
1535
1664
  */
1536
1665
  ReactiveInsight?: ReactiveInsight;
1537
1666
  }
1667
+ /**
1668
+ * @public
1669
+ */
1538
1670
  export interface DescribeOrganizationHealthRequest {
1539
1671
  /**
1540
1672
  * <p>The ID of the Amazon Web Services account.</p>
@@ -1545,6 +1677,9 @@ export interface DescribeOrganizationHealthRequest {
1545
1677
  */
1546
1678
  OrganizationalUnitIds?: string[];
1547
1679
  }
1680
+ /**
1681
+ * @public
1682
+ */
1548
1683
  export interface DescribeOrganizationHealthResponse {
1549
1684
  /**
1550
1685
  * <p>An integer that specifies the number of open reactive insights in your Amazon Web Services
@@ -1567,6 +1702,9 @@ export interface DescribeOrganizationHealthResponse {
1567
1702
  */
1568
1703
  ResourceHours: number | undefined;
1569
1704
  }
1705
+ /**
1706
+ * @public
1707
+ */
1570
1708
  export interface DescribeOrganizationOverviewRequest {
1571
1709
  /**
1572
1710
  * <p> The start of the time range passed in. The start time granularity is at the day
@@ -1589,6 +1727,9 @@ export interface DescribeOrganizationOverviewRequest {
1589
1727
  */
1590
1728
  OrganizationalUnitIds?: string[];
1591
1729
  }
1730
+ /**
1731
+ * @public
1732
+ */
1592
1733
  export interface DescribeOrganizationOverviewResponse {
1593
1734
  /**
1594
1735
  * <p>An integer that specifies the number of open reactive insights in your Amazon Web Services
@@ -1601,12 +1742,18 @@ export interface DescribeOrganizationOverviewResponse {
1601
1742
  */
1602
1743
  ProactiveInsights: number | undefined;
1603
1744
  }
1745
+ /**
1746
+ * @public
1747
+ */
1604
1748
  export declare enum OrganizationResourceCollectionType {
1605
1749
  AWS_ACCOUNT = "AWS_ACCOUNT",
1606
1750
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
1607
1751
  AWS_SERVICE = "AWS_SERVICE",
1608
1752
  AWS_TAGS = "AWS_TAGS"
1609
1753
  }
1754
+ /**
1755
+ * @public
1756
+ */
1610
1757
  export interface DescribeOrganizationResourceCollectionHealthRequest {
1611
1758
  /**
1612
1759
  * <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
@@ -1635,6 +1782,7 @@ export interface DescribeOrganizationResourceCollectionHealthRequest {
1635
1782
  MaxResults?: number;
1636
1783
  }
1637
1784
  /**
1785
+ * @public
1638
1786
  * <p> Information about the number of open reactive and proactive insights that can be used
1639
1787
  * to gauge the health of your system. </p>
1640
1788
  */
@@ -1653,6 +1801,7 @@ export interface InsightHealth {
1653
1801
  MeanTimeToRecoverInMilliseconds?: number;
1654
1802
  }
1655
1803
  /**
1804
+ * @public
1656
1805
  * <p> Information about the health of Amazon Web Services resources in your account that are specified by
1657
1806
  * an Amazon Web Services CloudFormation stack. </p>
1658
1807
  */
@@ -1675,6 +1824,7 @@ export interface CloudFormationHealth {
1675
1824
  AnalyzedResourceCount?: number;
1676
1825
  }
1677
1826
  /**
1827
+ * @public
1678
1828
  * <p>Contains the number of open proactive and reactive insights in an analyzed Amazon Web Services
1679
1829
  * service.</p>
1680
1830
  */
@@ -1688,6 +1838,9 @@ export interface ServiceInsightHealth {
1688
1838
  */
1689
1839
  OpenReactiveInsights?: number;
1690
1840
  }
1841
+ /**
1842
+ * @public
1843
+ */
1691
1844
  export declare enum ServiceName {
1692
1845
  API_GATEWAY = "API_GATEWAY",
1693
1846
  APPLICATION_ELB = "APPLICATION_ELB",
@@ -1716,6 +1869,7 @@ export declare enum ServiceName {
1716
1869
  SWF = "SWF"
1717
1870
  }
1718
1871
  /**
1872
+ * @public
1719
1873
  * <p>Represents the health of an Amazon Web Services service.</p>
1720
1874
  */
1721
1875
  export interface ServiceHealth {
@@ -1737,6 +1891,7 @@ export interface ServiceHealth {
1737
1891
  AnalyzedResourceCount?: number;
1738
1892
  }
1739
1893
  /**
1894
+ * @public
1740
1895
  * <p> Information about the health of Amazon Web Services resources in your account that are specified by
1741
1896
  * an Amazon Web Services tag <i>key</i>. </p>
1742
1897
  */
@@ -1781,6 +1936,9 @@ export interface TagHealth {
1781
1936
  */
1782
1937
  AnalyzedResourceCount?: number;
1783
1938
  }
1939
+ /**
1940
+ * @public
1941
+ */
1784
1942
  export interface DescribeOrganizationResourceCollectionHealthResponse {
1785
1943
  /**
1786
1944
  * <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
@@ -1839,11 +1997,17 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
1839
1997
  */
1840
1998
  Tags?: TagHealth[];
1841
1999
  }
2000
+ /**
2001
+ * @public
2002
+ */
1842
2003
  export declare enum ResourceCollectionType {
1843
2004
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
1844
2005
  AWS_SERVICE = "AWS_SERVICE",
1845
2006
  AWS_TAGS = "AWS_TAGS"
1846
2007
  }
2008
+ /**
2009
+ * @public
2010
+ */
1847
2011
  export interface DescribeResourceCollectionHealthRequest {
1848
2012
  /**
1849
2013
  * <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
@@ -1858,6 +2022,9 @@ export interface DescribeResourceCollectionHealthRequest {
1858
2022
  */
1859
2023
  NextToken?: string;
1860
2024
  }
2025
+ /**
2026
+ * @public
2027
+ */
1861
2028
  export interface DescribeResourceCollectionHealthResponse {
1862
2029
  /**
1863
2030
  * <p> The returned <code>CloudFormationHealthOverview</code> object that contains an
@@ -1913,13 +2080,20 @@ export interface DescribeResourceCollectionHealthResponse {
1913
2080
  */
1914
2081
  Tags?: TagHealth[];
1915
2082
  }
2083
+ /**
2084
+ * @public
2085
+ */
1916
2086
  export interface DescribeServiceIntegrationRequest {
1917
2087
  }
2088
+ /**
2089
+ * @public
2090
+ */
1918
2091
  export declare enum OptInStatus {
1919
2092
  DISABLED = "DISABLED",
1920
2093
  ENABLED = "ENABLED"
1921
2094
  }
1922
2095
  /**
2096
+ * @public
1923
2097
  * <p>
1924
2098
  * Information about the integration of DevOps Guru with CloudWatch log groups for log anomaly detection.
1925
2099
  * </p>
@@ -1931,6 +2105,7 @@ export interface LogsAnomalyDetectionIntegration {
1931
2105
  OptInStatus?: OptInStatus | string;
1932
2106
  }
1933
2107
  /**
2108
+ * @public
1934
2109
  * <p> Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager
1935
2110
  * OpsCenter for each created insight. </p>
1936
2111
  */
@@ -1942,6 +2117,7 @@ export interface OpsCenterIntegration {
1942
2117
  OptInStatus?: OptInStatus | string;
1943
2118
  }
1944
2119
  /**
2120
+ * @public
1945
2121
  * <p> Information about the integration of DevOps Guru with another Amazon Web Services service, such as
1946
2122
  * Amazon Web Services Systems Manager. </p>
1947
2123
  */
@@ -1958,6 +2134,9 @@ export interface ServiceIntegrationConfig {
1958
2134
  */
1959
2135
  LogsAnomalyDetection?: LogsAnomalyDetectionIntegration;
1960
2136
  }
2137
+ /**
2138
+ * @public
2139
+ */
1961
2140
  export interface DescribeServiceIntegrationResponse {
1962
2141
  /**
1963
2142
  * <p> Information about the integration of DevOps Guru with another Amazon Web Services service, such as
@@ -1965,6 +2144,9 @@ export interface DescribeServiceIntegrationResponse {
1965
2144
  */
1966
2145
  ServiceIntegration?: ServiceIntegrationConfig;
1967
2146
  }
2147
+ /**
2148
+ * @public
2149
+ */
1968
2150
  export interface GetCostEstimationRequest {
1969
2151
  /**
1970
2152
  * <p>The pagination token to use to retrieve
@@ -1972,11 +2154,15 @@ export interface GetCostEstimationRequest {
1972
2154
  */
1973
2155
  NextToken?: string;
1974
2156
  }
2157
+ /**
2158
+ * @public
2159
+ */
1975
2160
  export declare enum CostEstimationServiceResourceState {
1976
2161
  ACTIVE = "ACTIVE",
1977
2162
  INACTIVE = "INACTIVE"
1978
2163
  }
1979
2164
  /**
2165
+ * @public
1980
2166
  * <p>An object that contains information about the estimated monthly cost to analyze an
1981
2167
  * Amazon Web Services resource. For more information,
1982
2168
  * see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/cost-estimate.html">Estimate your
@@ -2015,6 +2201,7 @@ export interface ServiceResourceCost {
2015
2201
  Cost?: number;
2016
2202
  }
2017
2203
  /**
2204
+ * @public
2018
2205
  * <p>Information about an Amazon Web Services CloudFormation stack used to create a monthly cost estimate
2019
2206
  * for DevOps Guru to analyze Amazon Web Services resources. The maximum number of stacks you can specify for a
2020
2207
  * cost estimate is one. The estimate created is for the cost to analyze the Amazon Web Services
@@ -2028,6 +2215,7 @@ export interface CloudFormationCostEstimationResourceCollectionFilter {
2028
2215
  StackNames?: string[];
2029
2216
  }
2030
2217
  /**
2218
+ * @public
2031
2219
  * <p>Information about a collection of Amazon Web Services resources that are identified by an Amazon Web Services tag.
2032
2220
  * This collection of resources is used to create a monthly cost estimate for DevOps Guru to
2033
2221
  * analyze Amazon Web Services resources. The maximum number of tags you can specify for a cost estimate
@@ -2065,6 +2253,7 @@ export interface TagCostEstimationResourceCollectionFilter {
2065
2253
  TagValues: string[] | undefined;
2066
2254
  }
2067
2255
  /**
2256
+ * @public
2068
2257
  * <p>Information about a filter used to specify which Amazon Web Services resources are analyzed to
2069
2258
  * create a monthly DevOps Guru cost estimate. For more information,
2070
2259
  * see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/cost-estimate.html">Estimate your
@@ -2116,11 +2305,15 @@ export interface CostEstimationResourceCollectionFilter {
2116
2305
  */
2117
2306
  Tags?: TagCostEstimationResourceCollectionFilter[];
2118
2307
  }
2308
+ /**
2309
+ * @public
2310
+ */
2119
2311
  export declare enum CostEstimationStatus {
2120
2312
  COMPLETED = "COMPLETED",
2121
2313
  ONGOING = "ONGOING"
2122
2314
  }
2123
2315
  /**
2316
+ * @public
2124
2317
  * <p>The time range of a cost estimation.</p>
2125
2318
  */
2126
2319
  export interface CostEstimationTimeRange {
@@ -2133,6 +2326,9 @@ export interface CostEstimationTimeRange {
2133
2326
  */
2134
2327
  EndTime?: Date;
2135
2328
  }
2329
+ /**
2330
+ * @public
2331
+ */
2136
2332
  export interface GetCostEstimationResponse {
2137
2333
  /**
2138
2334
  * <p>The collection of the Amazon Web Services resources used to create your monthly DevOps Guru cost
@@ -2166,6 +2362,9 @@ export interface GetCostEstimationResponse {
2166
2362
  */
2167
2363
  NextToken?: string;
2168
2364
  }
2365
+ /**
2366
+ * @public
2367
+ */
2169
2368
  export interface GetResourceCollectionRequest {
2170
2369
  /**
2171
2370
  * <p> The type of Amazon Web Services resource collections to return. The one valid value is
@@ -2179,6 +2378,7 @@ export interface GetResourceCollectionRequest {
2179
2378
  NextToken?: string;
2180
2379
  }
2181
2380
  /**
2381
+ * @public
2182
2382
  * <p> Information about Amazon Web Services CloudFormation stacks. You can use up to 500
2183
2383
  * stacks to specify which Amazon Web Services resources in your account to analyze. For more
2184
2384
  * information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
@@ -2191,6 +2391,7 @@ export interface CloudFormationCollectionFilter {
2191
2391
  StackNames?: string[];
2192
2392
  }
2193
2393
  /**
2394
+ * @public
2194
2395
  * <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
2195
2396
  * generated from only resources that contain the tags in the tag collection.</p>
2196
2397
  */
@@ -2224,6 +2425,7 @@ export interface TagCollectionFilter {
2224
2425
  TagValues: string[] | undefined;
2225
2426
  }
2226
2427
  /**
2428
+ * @public
2227
2429
  * <p> Information about a filter used to specify which Amazon Web Services resources are analyzed for
2228
2430
  * anomalous behavior by DevOps Guru. </p>
2229
2431
  */
@@ -2273,6 +2475,9 @@ export interface ResourceCollectionFilter {
2273
2475
  */
2274
2476
  Tags?: TagCollectionFilter[];
2275
2477
  }
2478
+ /**
2479
+ * @public
2480
+ */
2276
2481
  export interface GetResourceCollectionResponse {
2277
2482
  /**
2278
2483
  * <p> The requested list of Amazon Web Services resource collections.
@@ -2288,6 +2493,7 @@ export interface GetResourceCollectionResponse {
2288
2493
  NextToken?: string;
2289
2494
  }
2290
2495
  /**
2496
+ * @public
2291
2497
  * <p>A collection of the names of Amazon Web Services services.</p>
2292
2498
  */
2293
2499
  export interface ServiceCollection {
@@ -2297,6 +2503,7 @@ export interface ServiceCollection {
2297
2503
  ServiceNames?: (ServiceName | string)[];
2298
2504
  }
2299
2505
  /**
2506
+ * @public
2300
2507
  * <p>
2301
2508
  * Specifies one or more service names that are used to list anomalies.
2302
2509
  * </p>
@@ -2308,6 +2515,7 @@ export interface ListAnomaliesForInsightFilters {
2308
2515
  ServiceCollection?: ServiceCollection;
2309
2516
  }
2310
2517
  /**
2518
+ * @public
2311
2519
  * <p> A time range used to specify when the behavior of an insight or anomaly started.
2312
2520
  * </p>
2313
2521
  */
@@ -2321,6 +2529,9 @@ export interface StartTimeRange {
2321
2529
  */
2322
2530
  ToTime?: Date;
2323
2531
  }
2532
+ /**
2533
+ * @public
2534
+ */
2324
2535
  export interface ListAnomaliesForInsightRequest {
2325
2536
  /**
2326
2537
  * <p> The ID of the insight. The returned anomalies belong to this insight. </p>
@@ -2353,6 +2564,7 @@ export interface ListAnomaliesForInsightRequest {
2353
2564
  Filters?: ListAnomaliesForInsightFilters;
2354
2565
  }
2355
2566
  /**
2567
+ * @public
2356
2568
  * <p>Details about a proactive anomaly. This object is returned by
2357
2569
  * <code>DescribeAnomaly.</code>
2358
2570
  * </p>
@@ -2432,6 +2644,7 @@ export interface ProactiveAnomalySummary {
2432
2644
  Description?: string;
2433
2645
  }
2434
2646
  /**
2647
+ * @public
2435
2648
  * <p>Details about a reactive anomaly. This object is returned by
2436
2649
  * <code>DescribeAnomaly.</code>
2437
2650
  * </p>
@@ -2513,6 +2726,9 @@ export interface ReactiveAnomalySummary {
2513
2726
  */
2514
2727
  AnomalyResources?: AnomalyResource[];
2515
2728
  }
2729
+ /**
2730
+ * @public
2731
+ */
2516
2732
  export interface ListAnomaliesForInsightResponse {
2517
2733
  /**
2518
2734
  * <p> An array of <code>ProactiveAnomalySummary</code> objects that represent the requested
@@ -2530,6 +2746,9 @@ export interface ListAnomaliesForInsightResponse {
2530
2746
  */
2531
2747
  NextToken?: string;
2532
2748
  }
2749
+ /**
2750
+ * @public
2751
+ */
2533
2752
  export interface ListAnomalousLogGroupsRequest {
2534
2753
  /**
2535
2754
  * <p>
@@ -2548,6 +2767,9 @@ export interface ListAnomalousLogGroupsRequest {
2548
2767
  */
2549
2768
  NextToken?: string;
2550
2769
  }
2770
+ /**
2771
+ * @public
2772
+ */
2551
2773
  export interface ListAnomalousLogGroupsResponse {
2552
2774
  /**
2553
2775
  * <p>
@@ -2567,10 +2789,16 @@ export interface ListAnomalousLogGroupsResponse {
2567
2789
  */
2568
2790
  NextToken?: string;
2569
2791
  }
2792
+ /**
2793
+ * @public
2794
+ */
2570
2795
  export declare enum EventDataSource {
2571
2796
  AWS_CLOUD_TRAIL = "AWS_CLOUD_TRAIL",
2572
2797
  AWS_CODE_DEPLOY = "AWS_CODE_DEPLOY"
2573
2798
  }
2799
+ /**
2800
+ * @public
2801
+ */
2574
2802
  export declare enum EventClass {
2575
2803
  CONFIG_CHANGE = "CONFIG_CHANGE",
2576
2804
  DEPLOYMENT = "DEPLOYMENT",
@@ -2579,6 +2807,7 @@ export declare enum EventClass {
2579
2807
  SECURITY_CHANGE = "SECURITY_CHANGE"
2580
2808
  }
2581
2809
  /**
2810
+ * @public
2582
2811
  * <p> The time range during which an Amazon Web Services event occurred. Amazon Web Services resource events and
2583
2812
  * metrics are analyzed by DevOps Guru to find anomalous behavior and provide recommendations to
2584
2813
  * improve your operational solutions. </p>
@@ -2594,6 +2823,7 @@ export interface EventTimeRange {
2594
2823
  ToTime: Date | undefined;
2595
2824
  }
2596
2825
  /**
2826
+ * @public
2597
2827
  * <p> Filters you can use to specify which events are returned when <code>ListEvents</code>
2598
2828
  * is called. </p>
2599
2829
  */
@@ -2628,6 +2858,9 @@ export interface ListEventsFilters {
2628
2858
  */
2629
2859
  ResourceCollection?: ResourceCollection;
2630
2860
  }
2861
+ /**
2862
+ * @public
2863
+ */
2631
2864
  export interface ListEventsRequest {
2632
2865
  /**
2633
2866
  * <p> A <code>ListEventsFilters</code> object used to specify which events to return.
@@ -2650,6 +2883,7 @@ export interface ListEventsRequest {
2650
2883
  AccountId?: string;
2651
2884
  }
2652
2885
  /**
2886
+ * @public
2653
2887
  * <p> The Amazon Web Services resource that emitted an event. Amazon Web Services resource events and metrics are
2654
2888
  * analyzed by DevOps Guru to find anomalous behavior and provide recommendations to improve your
2655
2889
  * operational solutions. </p>
@@ -2669,6 +2903,7 @@ export interface EventResource {
2669
2903
  Arn?: string;
2670
2904
  }
2671
2905
  /**
2906
+ * @public
2672
2907
  * <p> An Amazon Web Services resource event. Amazon Web Services resource events and metrics are analyzed by DevOps Guru to
2673
2908
  * find anomalous behavior and provide recommendations to improve your operational
2674
2909
  * solutions. </p>
@@ -2713,6 +2948,9 @@ export interface Event {
2713
2948
  */
2714
2949
  Resources?: EventResource[];
2715
2950
  }
2951
+ /**
2952
+ * @public
2953
+ */
2716
2954
  export interface ListEventsResponse {
2717
2955
  /**
2718
2956
  * <p> A list of the requested events. </p>
@@ -2724,11 +2962,15 @@ export interface ListEventsResponse {
2724
2962
  */
2725
2963
  NextToken?: string;
2726
2964
  }
2965
+ /**
2966
+ * @public
2967
+ */
2727
2968
  export declare enum InsightType {
2728
2969
  PROACTIVE = "PROACTIVE",
2729
2970
  REACTIVE = "REACTIVE"
2730
2971
  }
2731
2972
  /**
2973
+ * @public
2732
2974
  * <p> Used to filter for insights that have any status. </p>
2733
2975
  */
2734
2976
  export interface ListInsightsAnyStatusFilter {
@@ -2744,6 +2986,7 @@ export interface ListInsightsAnyStatusFilter {
2744
2986
  StartTimeRange: StartTimeRange | undefined;
2745
2987
  }
2746
2988
  /**
2989
+ * @public
2747
2990
  * <p> A range of time that specifies when anomalous behavior in an anomaly or insight
2748
2991
  * ended. </p>
2749
2992
  */
@@ -2758,6 +3001,7 @@ export interface EndTimeRange {
2758
3001
  ToTime?: Date;
2759
3002
  }
2760
3003
  /**
3004
+ * @public
2761
3005
  * <p> Used to filter for insights that have the status <code>CLOSED</code>. </p>
2762
3006
  */
2763
3007
  export interface ListInsightsClosedStatusFilter {
@@ -2773,6 +3017,7 @@ export interface ListInsightsClosedStatusFilter {
2773
3017
  EndTimeRange: EndTimeRange | undefined;
2774
3018
  }
2775
3019
  /**
3020
+ * @public
2776
3021
  * <p> Used to filter for insights that have the status <code>ONGOING</code>. </p>
2777
3022
  */
2778
3023
  export interface ListInsightsOngoingStatusFilter {
@@ -2783,6 +3028,7 @@ export interface ListInsightsOngoingStatusFilter {
2783
3028
  Type: InsightType | string | undefined;
2784
3029
  }
2785
3030
  /**
3031
+ * @public
2786
3032
  * <p> A filter used by <code>ListInsights</code> to specify which insights to return.
2787
3033
  * </p>
2788
3034
  */
@@ -2803,6 +3049,9 @@ export interface ListInsightsStatusFilter {
2803
3049
  */
2804
3050
  Any?: ListInsightsAnyStatusFilter;
2805
3051
  }
3052
+ /**
3053
+ * @public
3054
+ */
2806
3055
  export interface ListInsightsRequest {
2807
3056
  /**
2808
3057
  * <p> A filter used to filter the returned insights by their status. You can specify one
@@ -2821,6 +3070,7 @@ export interface ListInsightsRequest {
2821
3070
  NextToken?: string;
2822
3071
  }
2823
3072
  /**
3073
+ * @public
2824
3074
  * <p>Details about a proactive insight. This object is returned by
2825
3075
  * <code>DescribeInsight.</code>
2826
3076
  * </p>
@@ -2872,6 +3122,7 @@ export interface ProactiveInsightSummary {
2872
3122
  AssociatedResourceArns?: string[];
2873
3123
  }
2874
3124
  /**
3125
+ * @public
2875
3126
  * <p> Information about a reactive insight. This object is returned by
2876
3127
  * <code>DescribeInsight.</code>
2877
3128
  * </p>
@@ -2917,6 +3168,9 @@ export interface ReactiveInsightSummary {
2917
3168
  */
2918
3169
  AssociatedResourceArns?: string[];
2919
3170
  }
3171
+ /**
3172
+ * @public
3173
+ */
2920
3174
  export interface ListInsightsResponse {
2921
3175
  /**
2922
3176
  * <p> The returned list of proactive insights. </p>
@@ -2932,10 +3186,16 @@ export interface ListInsightsResponse {
2932
3186
  */
2933
3187
  NextToken?: string;
2934
3188
  }
3189
+ /**
3190
+ * @public
3191
+ */
2935
3192
  export declare enum ResourcePermission {
2936
3193
  FULL_PERMISSION = "FULL_PERMISSION",
2937
3194
  MISSING_PERMISSION = "MISSING_PERMISSION"
2938
3195
  }
3196
+ /**
3197
+ * @public
3198
+ */
2939
3199
  export declare enum ResourceTypeFilter {
2940
3200
  CLOUDFRONT_DISTRIBUTION = "CLOUDFRONT_DISTRIBUTION",
2941
3201
  DYNAMODB_TABLE = "DYNAMODB_TABLE",
@@ -2966,6 +3226,7 @@ export declare enum ResourceTypeFilter {
2966
3226
  STEP_FUNCTIONS_STATE_MACHINE = "STEP_FUNCTIONS_STATE_MACHINE"
2967
3227
  }
2968
3228
  /**
3229
+ * @public
2969
3230
  * <p>
2970
3231
  * Filters to determine which monitored resources you want to retrieve. You can filter by resource type or resource permission status.
2971
3232
  * </p>
@@ -2984,6 +3245,9 @@ export interface ListMonitoredResourcesFilters {
2984
3245
  */
2985
3246
  ResourceTypeFilters: (ResourceTypeFilter | string)[] | undefined;
2986
3247
  }
3248
+ /**
3249
+ * @public
3250
+ */
2987
3251
  export interface ListMonitoredResourcesRequest {
2988
3252
  /**
2989
3253
  * <p>
@@ -3003,6 +3267,7 @@ export interface ListMonitoredResourcesRequest {
3003
3267
  NextToken?: string;
3004
3268
  }
3005
3269
  /**
3270
+ * @public
3006
3271
  * <p>
3007
3272
  * Information about the resource that is being monitored, including the name of the resource, the type of resource, and whether or not permission is given to DevOps Guru to access that resource.
3008
3273
  * </p>
@@ -3040,6 +3305,9 @@ export interface MonitoredResourceIdentifier {
3040
3305
  */
3041
3306
  ResourceCollection?: ResourceCollection;
3042
3307
  }
3308
+ /**
3309
+ * @public
3310
+ */
3043
3311
  export interface ListMonitoredResourcesResponse {
3044
3312
  /**
3045
3313
  * <p>
@@ -3053,6 +3321,9 @@ export interface ListMonitoredResourcesResponse {
3053
3321
  */
3054
3322
  NextToken?: string;
3055
3323
  }
3324
+ /**
3325
+ * @public
3326
+ */
3056
3327
  export interface ListNotificationChannelsRequest {
3057
3328
  /**
3058
3329
  * <p>The pagination token to use to retrieve
@@ -3061,6 +3332,7 @@ export interface ListNotificationChannelsRequest {
3061
3332
  NextToken?: string;
3062
3333
  }
3063
3334
  /**
3335
+ * @public
3064
3336
  * <p> Information about a notification channel. A notification channel is used to notify
3065
3337
  * you when DevOps Guru creates an insight. The one
3066
3338
  * supported notification channel is Amazon Simple Notification Service (Amazon SNS). </p>
@@ -3084,6 +3356,9 @@ export interface NotificationChannel {
3084
3356
  */
3085
3357
  Config?: NotificationChannelConfig;
3086
3358
  }
3359
+ /**
3360
+ * @public
3361
+ */
3087
3362
  export interface ListNotificationChannelsResponse {
3088
3363
  /**
3089
3364
  * <p> An array that contains the requested notification channels. </p>
@@ -3095,6 +3370,9 @@ export interface ListNotificationChannelsResponse {
3095
3370
  */
3096
3371
  NextToken?: string;
3097
3372
  }
3373
+ /**
3374
+ * @public
3375
+ */
3098
3376
  export interface ListOrganizationInsightsRequest {
3099
3377
  /**
3100
3378
  * <p> A filter used by <code>ListInsights</code> to specify which insights to return.
@@ -3121,6 +3399,7 @@ export interface ListOrganizationInsightsRequest {
3121
3399
  NextToken?: string;
3122
3400
  }
3123
3401
  /**
3402
+ * @public
3124
3403
  * <p>Details about a proactive insight. This object is returned by
3125
3404
  * <code>DescribeInsight</code>.</p>
3126
3405
  */
@@ -3175,6 +3454,7 @@ export interface ProactiveOrganizationInsightSummary {
3175
3454
  ServiceCollection?: ServiceCollection;
3176
3455
  }
3177
3456
  /**
3457
+ * @public
3178
3458
  * <p>Information about a reactive insight. This object is returned by
3179
3459
  * <code>DescribeInsight</code>.</p>
3180
3460
  */
@@ -3223,6 +3503,9 @@ export interface ReactiveOrganizationInsightSummary {
3223
3503
  */
3224
3504
  ServiceCollection?: ServiceCollection;
3225
3505
  }
3506
+ /**
3507
+ * @public
3508
+ */
3226
3509
  export interface ListOrganizationInsightsResponse {
3227
3510
  /**
3228
3511
  * <p>An integer that specifies the number of open proactive insights in your Amazon Web Services
@@ -3240,6 +3523,9 @@ export interface ListOrganizationInsightsResponse {
3240
3523
  */
3241
3524
  NextToken?: string;
3242
3525
  }
3526
+ /**
3527
+ * @public
3528
+ */
3243
3529
  export declare enum Locale {
3244
3530
  DE_DE = "DE_DE",
3245
3531
  EN_GB = "EN_GB",
@@ -3253,6 +3539,9 @@ export declare enum Locale {
3253
3539
  ZH_CN = "ZH_CN",
3254
3540
  ZH_TW = "ZH_TW"
3255
3541
  }
3542
+ /**
3543
+ * @public
3544
+ */
3256
3545
  export interface ListRecommendationsRequest {
3257
3546
  /**
3258
3547
  * <p> The ID of the requested insight. </p>
@@ -3273,6 +3562,7 @@ export interface ListRecommendationsRequest {
3273
3562
  AccountId?: string;
3274
3563
  }
3275
3564
  /**
3565
+ * @public
3276
3566
  * <p> Information about a resource in which DevOps Guru detected anomalous behavior. </p>
3277
3567
  */
3278
3568
  export interface RecommendationRelatedAnomalyResource {
@@ -3290,6 +3580,7 @@ export interface RecommendationRelatedAnomalyResource {
3290
3580
  Type?: string;
3291
3581
  }
3292
3582
  /**
3583
+ * @public
3293
3584
  * <p> Information about an Amazon CloudWatch metric that is analyzed by DevOps Guru. It is one of many
3294
3585
  * analyzed metrics that are used to generate insights. </p>
3295
3586
  */
@@ -3304,6 +3595,7 @@ export interface RecommendationRelatedCloudWatchMetricsSourceDetail {
3304
3595
  Namespace?: string;
3305
3596
  }
3306
3597
  /**
3598
+ * @public
3307
3599
  * <p> Contains an array of <code>RecommendationRelatedCloudWatchMetricsSourceDetail</code>
3308
3600
  * objects that contain the name and namespace of an Amazon CloudWatch metric. </p>
3309
3601
  */
@@ -3315,6 +3607,7 @@ export interface RecommendationRelatedAnomalySourceDetail {
3315
3607
  CloudWatchMetrics?: RecommendationRelatedCloudWatchMetricsSourceDetail[];
3316
3608
  }
3317
3609
  /**
3610
+ * @public
3318
3611
  * <p> Information about an anomaly that is related to a recommendation. </p>
3319
3612
  */
3320
3613
  export interface RecommendationRelatedAnomaly {
@@ -3334,6 +3627,7 @@ export interface RecommendationRelatedAnomaly {
3334
3627
  AnomalyId?: string;
3335
3628
  }
3336
3629
  /**
3630
+ * @public
3337
3631
  * <p> Information about an Amazon Web Services resource that emitted and event that is related to a
3338
3632
  * recommendation in an insight. </p>
3339
3633
  */
@@ -3350,6 +3644,7 @@ export interface RecommendationRelatedEventResource {
3350
3644
  Type?: string;
3351
3645
  }
3352
3646
  /**
3647
+ * @public
3353
3648
  * <p> Information about an event that is related to a recommendation. </p>
3354
3649
  */
3355
3650
  export interface RecommendationRelatedEvent {
@@ -3365,6 +3660,7 @@ export interface RecommendationRelatedEvent {
3365
3660
  Resources?: RecommendationRelatedEventResource[];
3366
3661
  }
3367
3662
  /**
3663
+ * @public
3368
3664
  * <p> Recommendation information to help you remediate detected anomalous behavior that
3369
3665
  * generated an insight. </p>
3370
3666
  */
@@ -3400,6 +3696,9 @@ export interface Recommendation {
3400
3696
  */
3401
3697
  Category?: string;
3402
3698
  }
3699
+ /**
3700
+ * @public
3701
+ */
3403
3702
  export interface ListRecommendationsResponse {
3404
3703
  /**
3405
3704
  * <p> An array of the requested recommendations. </p>
@@ -3411,23 +3710,36 @@ export interface ListRecommendationsResponse {
3411
3710
  */
3412
3711
  NextToken?: string;
3413
3712
  }
3713
+ /**
3714
+ * @public
3715
+ */
3414
3716
  export interface PutFeedbackRequest {
3415
3717
  /**
3416
3718
  * <p> The feedback from customers is about the recommendations in this insight. </p>
3417
3719
  */
3418
3720
  InsightFeedback?: InsightFeedback;
3419
3721
  }
3722
+ /**
3723
+ * @public
3724
+ */
3420
3725
  export interface PutFeedbackResponse {
3421
3726
  }
3727
+ /**
3728
+ * @public
3729
+ */
3422
3730
  export interface RemoveNotificationChannelRequest {
3423
3731
  /**
3424
3732
  * <p> The ID of the notification channel to be removed. </p>
3425
3733
  */
3426
3734
  Id: string | undefined;
3427
3735
  }
3736
+ /**
3737
+ * @public
3738
+ */
3428
3739
  export interface RemoveNotificationChannelResponse {
3429
3740
  }
3430
3741
  /**
3742
+ * @public
3431
3743
  * <p>Specifies values used to filter responses when searching for insights.
3432
3744
  * You can use a <code>ResourceCollection</code>, <code>ServiceCollection</code>, array of severities, and an array of status values.
3433
3745
  * Each filter type contains one or more values to search for. If you specify multiple filter types,
@@ -3454,6 +3766,9 @@ export interface SearchInsightsFilters {
3454
3766
  */
3455
3767
  ServiceCollection?: ServiceCollection;
3456
3768
  }
3769
+ /**
3770
+ * @public
3771
+ */
3457
3772
  export interface SearchInsightsRequest {
3458
3773
  /**
3459
3774
  * <p> The start of the time range passed in. Returned insights occurred after this time.
@@ -3481,6 +3796,9 @@ export interface SearchInsightsRequest {
3481
3796
  */
3482
3797
  Type: InsightType | string | undefined;
3483
3798
  }
3799
+ /**
3800
+ * @public
3801
+ */
3484
3802
  export interface SearchInsightsResponse {
3485
3803
  /**
3486
3804
  * <p> The returned proactive insights. </p>
@@ -3497,6 +3815,7 @@ export interface SearchInsightsResponse {
3497
3815
  NextToken?: string;
3498
3816
  }
3499
3817
  /**
3818
+ * @public
3500
3819
  * <p> Filters you can use to specify which events are returned when <code>ListEvents</code>
3501
3820
  * is called. </p>
3502
3821
  */
@@ -3521,6 +3840,9 @@ export interface SearchOrganizationInsightsFilters {
3521
3840
  */
3522
3841
  ServiceCollection?: ServiceCollection;
3523
3842
  }
3843
+ /**
3844
+ * @public
3845
+ */
3524
3846
  export interface SearchOrganizationInsightsRequest {
3525
3847
  /**
3526
3848
  * <p>The ID of the Amazon Web Services account. </p>
@@ -3552,6 +3874,9 @@ export interface SearchOrganizationInsightsRequest {
3552
3874
  */
3553
3875
  Type: InsightType | string | undefined;
3554
3876
  }
3877
+ /**
3878
+ * @public
3879
+ */
3555
3880
  export interface SearchOrganizationInsightsResponse {
3556
3881
  /**
3557
3882
  * <p>An integer that specifies the number of open proactive insights in your Amazon Web Services
@@ -3569,6 +3894,9 @@ export interface SearchOrganizationInsightsResponse {
3569
3894
  */
3570
3895
  NextToken?: string;
3571
3896
  }
3897
+ /**
3898
+ * @public
3899
+ */
3572
3900
  export interface StartCostEstimationRequest {
3573
3901
  /**
3574
3902
  * <p>The collection of Amazon Web Services resources used to create a monthly DevOps Guru cost estimate.</p>
@@ -3579,8 +3907,14 @@ export interface StartCostEstimationRequest {
3579
3907
  */
3580
3908
  ClientToken?: string;
3581
3909
  }
3910
+ /**
3911
+ * @public
3912
+ */
3582
3913
  export interface StartCostEstimationResponse {
3583
3914
  }
3915
+ /**
3916
+ * @public
3917
+ */
3584
3918
  export interface UpdateEventSourcesConfigRequest {
3585
3919
  /**
3586
3920
  * <p>Configuration information about the integration of DevOps Guru as the Consumer via
@@ -3588,13 +3922,20 @@ export interface UpdateEventSourcesConfigRequest {
3588
3922
  */
3589
3923
  EventSources?: EventSourcesConfig;
3590
3924
  }
3925
+ /**
3926
+ * @public
3927
+ */
3591
3928
  export interface UpdateEventSourcesConfigResponse {
3592
3929
  }
3930
+ /**
3931
+ * @public
3932
+ */
3593
3933
  export declare enum UpdateResourceCollectionAction {
3594
3934
  ADD = "ADD",
3595
3935
  REMOVE = "REMOVE"
3596
3936
  }
3597
3937
  /**
3938
+ * @public
3598
3939
  * <p> Contains the names of Amazon Web Services CloudFormation stacks used to update a collection of stacks.
3599
3940
  * You can specify up to 500 Amazon Web Services CloudFormation stacks.</p>
3600
3941
  */
@@ -3606,6 +3947,7 @@ export interface UpdateCloudFormationCollectionFilter {
3606
3947
  StackNames?: string[];
3607
3948
  }
3608
3949
  /**
3950
+ * @public
3609
3951
  * <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
3610
3952
  * <i>key</i>/<i>value</i> pair.</p>
3611
3953
  */
@@ -3639,6 +3981,7 @@ export interface UpdateTagCollectionFilter {
3639
3981
  TagValues: string[] | undefined;
3640
3982
  }
3641
3983
  /**
3984
+ * @public
3642
3985
  * <p> Contains information used to update a collection of Amazon Web Services resources. </p>
3643
3986
  */
3644
3987
  export interface UpdateResourceCollectionFilter {
@@ -3684,6 +4027,9 @@ export interface UpdateResourceCollectionFilter {
3684
4027
  */
3685
4028
  Tags?: UpdateTagCollectionFilter[];
3686
4029
  }
4030
+ /**
4031
+ * @public
4032
+ */
3687
4033
  export interface UpdateResourceCollectionRequest {
3688
4034
  /**
3689
4035
  * <p> Specifies if the resource collection in the request is added or deleted to the
@@ -3695,9 +4041,13 @@ export interface UpdateResourceCollectionRequest {
3695
4041
  */
3696
4042
  ResourceCollection: UpdateResourceCollectionFilter | undefined;
3697
4043
  }
4044
+ /**
4045
+ * @public
4046
+ */
3698
4047
  export interface UpdateResourceCollectionResponse {
3699
4048
  }
3700
4049
  /**
4050
+ * @public
3701
4051
  * <p>
3702
4052
  * Information about the integration of DevOps Guru with CloudWatch log groups for log anomaly detection. You can use this to update the configuration.
3703
4053
  * </p>
@@ -3709,6 +4059,7 @@ export interface LogsAnomalyDetectionIntegrationConfig {
3709
4059
  OptInStatus?: OptInStatus | string;
3710
4060
  }
3711
4061
  /**
4062
+ * @public
3712
4063
  * <p> Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager
3713
4064
  * OpsCenter for each created insight. You can use this to update the configuration.</p>
3714
4065
  */
@@ -3720,6 +4071,7 @@ export interface OpsCenterIntegrationConfig {
3720
4071
  OptInStatus?: OptInStatus | string;
3721
4072
  }
3722
4073
  /**
4074
+ * @public
3723
4075
  * <p> Information about updating the integration status of an Amazon Web Services service, such as
3724
4076
  * Amazon Web Services Systems Manager, with DevOps Guru. </p>
3725
4077
  */
@@ -3736,6 +4088,9 @@ export interface UpdateServiceIntegrationConfig {
3736
4088
  */
3737
4089
  LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig;
3738
4090
  }
4091
+ /**
4092
+ * @public
4093
+ */
3739
4094
  export interface UpdateServiceIntegrationRequest {
3740
4095
  /**
3741
4096
  * <p> An <code>IntegratedServiceConfig</code> object used to specify the integrated service
@@ -3743,6 +4098,9 @@ export interface UpdateServiceIntegrationRequest {
3743
4098
  */
3744
4099
  ServiceIntegration: UpdateServiceIntegrationConfig | undefined;
3745
4100
  }
4101
+ /**
4102
+ * @public
4103
+ */
3746
4104
  export interface UpdateServiceIntegrationResponse {
3747
4105
  }
3748
4106
  /**