@aws-sdk/client-devops-guru 3.51.0 → 3.54.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 (43) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/DevOpsGuru.js +30 -0
  3. package/dist-cjs/commands/DescribeEventSourcesConfigCommand.js +36 -0
  4. package/dist-cjs/commands/UpdateEventSourcesConfigCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/index.js +3 -0
  7. package/dist-cjs/models/DevOpsGuruServiceException.js +11 -0
  8. package/dist-cjs/models/models_0.js +160 -3
  9. package/dist-cjs/protocols/Aws_restJson1.js +527 -1096
  10. package/dist-es/DevOpsGuru.js +30 -0
  11. package/dist-es/commands/DescribeEventSourcesConfigCommand.js +39 -0
  12. package/dist-es/commands/UpdateEventSourcesConfigCommand.js +39 -0
  13. package/dist-es/commands/index.js +2 -0
  14. package/dist-es/index.js +1 -0
  15. package/dist-es/models/DevOpsGuruServiceException.js +12 -0
  16. package/dist-es/models/models_0.js +136 -1
  17. package/dist-es/protocols/Aws_restJson1.js +891 -1208
  18. package/dist-types/DevOpsGuru.d.ts +19 -4
  19. package/dist-types/DevOpsGuruClient.d.ts +6 -4
  20. package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +36 -0
  21. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
  22. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +35 -0
  23. package/dist-types/commands/index.d.ts +2 -0
  24. package/dist-types/index.d.ts +1 -0
  25. package/dist-types/models/DevOpsGuruServiceException.d.ts +10 -0
  26. package/dist-types/models/models_0.d.ts +394 -220
  27. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/runtimeConfig.d.ts +1 -1
  30. package/dist-types/runtimeConfig.native.d.ts +1 -1
  31. package/dist-types/ts3.4/DevOpsGuru.d.ts +10 -0
  32. package/dist-types/ts3.4/DevOpsGuruClient.d.ts +6 -4
  33. package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  36. package/dist-types/ts3.4/index.d.ts +1 -0
  37. package/dist-types/ts3.4/models/DevOpsGuruServiceException.d.ts +6 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +114 -22
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  43. package/package.json +33 -33
@@ -1,14 +1,19 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException";
2
3
  /**
3
4
  * <p> You don't have permissions to perform the requested operation. The user or role that
4
5
  * is making the request must have at least one IAM permissions policy attached that grants
5
6
  * the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access Management</a> in the
6
7
  * <i>IAM User Guide</i>. </p>
7
8
  */
8
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
9
- name: "AccessDeniedException";
10
- $fault: "client";
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
11
12
  Message: string | undefined;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
17
  }
13
18
  /**
14
19
  * <p> Information about the number of open reactive and proactive insights that can be used
@@ -131,9 +136,9 @@ export declare namespace AddNotificationChannelResponse {
131
136
  /**
132
137
  * <p> An exception that is thrown when a conflict occurs. </p>
133
138
  */
134
- export interface ConflictException extends __SmithyException, $MetadataBearer {
135
- name: "ConflictException";
136
- $fault: "client";
139
+ export declare class ConflictException extends __BaseException {
140
+ readonly name: "ConflictException";
141
+ readonly $fault: "client";
137
142
  Message: string | undefined;
138
143
  /**
139
144
  * <p> The ID of the Amazon Web Services resource in which a conflict occurred. </p>
@@ -143,26 +148,34 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
143
148
  * <p> The type of the Amazon Web Services resource in which a conflict occurred. </p>
144
149
  */
145
150
  ResourceType: string | undefined;
151
+ /**
152
+ * @internal
153
+ */
154
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
146
155
  }
147
156
  /**
148
157
  * <p>An internal failure in an Amazon service occurred.</p>
149
158
  */
150
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
151
- name: "InternalServerException";
152
- $fault: "server";
159
+ export declare class InternalServerException extends __BaseException {
160
+ readonly name: "InternalServerException";
161
+ readonly $fault: "server";
153
162
  Message: string | undefined;
154
163
  /**
155
164
  * <p> The number of seconds after which the action that caused the internal server
156
165
  * exception can be retried. </p>
157
166
  */
158
167
  RetryAfterSeconds?: number;
168
+ /**
169
+ * @internal
170
+ */
171
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
159
172
  }
160
173
  /**
161
174
  * <p>A requested resource could not be found</p>
162
175
  */
163
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
164
- name: "ResourceNotFoundException";
165
- $fault: "client";
176
+ export declare class ResourceNotFoundException extends __BaseException {
177
+ readonly name: "ResourceNotFoundException";
178
+ readonly $fault: "client";
166
179
  Message: string | undefined;
167
180
  /**
168
181
  * <p> The ID of the Amazon Web Services resource that could not be found. </p>
@@ -172,21 +185,29 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
172
185
  * <p> The type of the Amazon Web Services resource that could not be found. </p>
173
186
  */
174
187
  ResourceType: string | undefined;
188
+ /**
189
+ * @internal
190
+ */
191
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
175
192
  }
176
193
  /**
177
194
  * <p>The request contains a value that exceeds a maximum quota.</p>
178
195
  */
179
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
180
- name: "ServiceQuotaExceededException";
181
- $fault: "client";
196
+ export declare class ServiceQuotaExceededException extends __BaseException {
197
+ readonly name: "ServiceQuotaExceededException";
198
+ readonly $fault: "client";
182
199
  Message?: string;
200
+ /**
201
+ * @internal
202
+ */
203
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
183
204
  }
184
205
  /**
185
206
  * <p>The request was denied due to a request throttling.</p>
186
207
  */
187
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
188
- name: "ThrottlingException";
189
- $fault: "client";
208
+ export declare class ThrottlingException extends __BaseException {
209
+ readonly name: "ThrottlingException";
210
+ readonly $fault: "client";
190
211
  Message: string | undefined;
191
212
  /**
192
213
  * <p> The code of the quota that was exceeded, causing the throttling exception. </p>
@@ -201,6 +222,10 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
201
222
  * be retried. </p>
202
223
  */
203
224
  RetryAfterSeconds?: number;
225
+ /**
226
+ * @internal
227
+ */
228
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
204
229
  }
205
230
  /**
206
231
  * <p> The field associated with the validation exception. </p>
@@ -234,9 +259,9 @@ export declare enum ValidationExceptionReason {
234
259
  * <p> Contains information about data passed in to a field during a request that is not
235
260
  * valid. </p>
236
261
  */
237
- export interface ValidationException extends __SmithyException, $MetadataBearer {
238
- name: "ValidationException";
239
- $fault: "client";
262
+ export declare class ValidationException extends __BaseException {
263
+ readonly name: "ValidationException";
264
+ readonly $fault: "client";
240
265
  /**
241
266
  * <p> A message that describes the validation exception. </p>
242
267
  */
@@ -249,6 +274,29 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
249
274
  * <p> An array of fields that are associated with the validation exception. </p>
250
275
  */
251
276
  Fields?: ValidationExceptionField[];
277
+ /**
278
+ * @internal
279
+ */
280
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
281
+ }
282
+ export declare enum EventSourceOptInStatus {
283
+ DISABLED = "DISABLED",
284
+ ENABLED = "ENABLED"
285
+ }
286
+ /**
287
+ * <p>Information about your account's integration with Amazon CodeGuru Profiler.</p>
288
+ */
289
+ export interface AmazonCodeGuruProfilerIntegration {
290
+ /**
291
+ * <p>The status of the CodeGuru Profiler integration.</p>
292
+ */
293
+ Status?: EventSourceOptInStatus | string;
294
+ }
295
+ export declare namespace AmazonCodeGuruProfilerIntegration {
296
+ /**
297
+ * @internal
298
+ */
299
+ const filterSensitiveLog: (obj: AmazonCodeGuruProfilerIntegration) => any;
252
300
  }
253
301
  /**
254
302
  * <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
@@ -272,10 +320,10 @@ export declare namespace AnomalyReportedTimeRange {
272
320
  const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
273
321
  }
274
322
  /**
275
- * <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in
276
- * the generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates
277
- * and insight with details about the anomalous behavior and suggestions about how to correct the
278
- * problem.</p>
323
+ * <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in the
324
+ * generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates and
325
+ * insight with details about the anomalous behavior and suggestions about how to correct
326
+ * the problem.</p>
279
327
  */
280
328
  export interface AnomalyResource {
281
329
  /**
@@ -354,8 +402,8 @@ export interface CloudWatchMetricsDataSummary {
354
402
  */
355
403
  TimestampMetricValuePairList?: TimestampMetricValuePair[];
356
404
  /**
357
- * <p>This is an enum of the status showing whether the metric value pair list has partial or
358
- * complete data, or if there was an error.</p>
405
+ * <p>This is an enum of the status showing whether the metric value pair list has partial
406
+ * or complete data, or if there was an error.</p>
359
407
  */
360
408
  StatusCode?: CloudWatchMetricDataStatusCode | string;
361
409
  }
@@ -419,15 +467,14 @@ export declare namespace CloudWatchMetricsDetail {
419
467
  }
420
468
  /**
421
469
  * <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
422
- * <code>db.sql</code> dimension group consists of the following dimensions:
423
- * <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>, and
424
- * <code>db.sql.tokenized_id</code>.</p>
425
- * <note>
426
- * <p>Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements,
427
- * only the first 500 bytes are returned.</p>
428
- * </note>
429
- *
430
- * <p>Amazon RDS Performance Insights enables you to monitor and explore different
470
+ * <code>db.sql</code> dimension group consists of the following dimensions:
471
+ * <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>,
472
+ * and <code>db.sql.tokenized_id</code>.</p>
473
+ * <note>
474
+ * <p>Each response element returns a maximum of 500 bytes. For larger elements, such as
475
+ * SQL statements, only the first 500 bytes are returned.</p>
476
+ * </note>
477
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
431
478
  * dimensions of database load based on data captured from a running DB instance.
432
479
  * DB load is measured as average active sessions. Performance Insights provides the
433
480
  * data to API consumers as a two-dimensional time-series dataset. The time dimension
@@ -450,127 +497,143 @@ export interface PerformanceInsightsMetricDimensionGroup {
450
497
  /**
451
498
  * <p>The name of the dimension group. Its valid values are:</p>
452
499
  *
453
- * <ul>
500
+ * <ul>
454
501
  * <li>
455
- * <p>
456
- * <code>db</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS PostgreSQL,
457
- * Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
458
- * </li>
502
+ * <p>
503
+ * <code>db</code> - The name of the database to which the client is connected
504
+ * (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
505
+ * </li>
459
506
  * <li>
460
- * <p>
461
- * <code>db.application</code> - The name of the application that is connected to the database (only Aurora
462
- * PostgreSQL and RDS PostgreSQL)</p>
463
- * </li>
507
+ * <p>
508
+ * <code>db.application</code> - The name of the application that is connected to
509
+ * the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
510
+ * </li>
464
511
  * <li>
465
- * <p>
466
- * <code>db.host</code> - The host name of the connected client (all engines)</p>
467
- * </li>
512
+ * <p>
513
+ * <code>db.host</code> - The host name of the connected client (all
514
+ * engines)</p>
515
+ * </li>
468
516
  * <li>
469
- * <p>
470
- * <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
471
- * </li>
517
+ * <p>
518
+ * <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL
519
+ * and RDS PostgreSQL)</p>
520
+ * </li>
472
521
  * <li>
473
- * <p>
474
- * <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
475
- * </li>
522
+ * <p>
523
+ * <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
524
+ * </li>
476
525
  * <li>
477
- * <p>
478
- * <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
479
- * </li>
526
+ * <p>
527
+ * <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
528
+ * </li>
480
529
  * <li>
481
- * <p>
482
- * <code>db.wait_event</code> - The event for which the database backend is waiting (all engines)</p>
483
- * </li>
530
+ * <p>
531
+ * <code>db.wait_event</code> - The event for which the database backend is waiting
532
+ * (all engines)</p>
533
+ * </li>
484
534
  * <li>
485
- * <p>
486
- * <code>db.wait_event_type</code> - The type of event for which the database backend is waiting (all engines)</p>
487
- * </li>
535
+ * <p>
536
+ * <code>db.wait_event_type</code> - The type of event for which the database
537
+ * backend is waiting (all engines)</p>
538
+ * </li>
488
539
  * <li>
489
- * <p>
490
- * <code>db.user</code> - The user logged in to the database (all engines)</p>
491
- * </li>
540
+ * <p>
541
+ * <code>db.user</code> - The user logged in to the database (all engines)</p>
542
+ * </li>
492
543
  * </ul>
493
544
  */
494
545
  Group?: string;
495
546
  /**
496
- * <p>A list of specific dimensions from a dimension group. If this parameter is not present,
497
- * then it signifies that all of the dimensions in the group were requested or are present in
498
- * the response.</p>
499
- * <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
547
+ * <p>A list of specific dimensions from a dimension group. If this parameter is not
548
+ * present, then it signifies that all of the dimensions in the group were requested or are
549
+ * present in the response.</p>
550
+ * <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
500
551
  *
501
- * <ul>
552
+ * <ul>
502
553
  * <li>
503
- * <p>
504
- * <code>db.application.name</code> - The name of the application that is connected to the database (only
505
- * Aurora PostgreSQL and RDS PostgreSQL)</p>
506
- * </li>
554
+ * <p>
555
+ * <code>db.application.name</code> - The name of the application that is connected
556
+ * to the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
557
+ * </li>
507
558
  * <li>
508
- * <p>
509
- * <code>db.host.id</code> - The host ID of the connected client (all engines)</p>
510
- * </li>
559
+ * <p>
560
+ * <code>db.host.id</code> - The host ID of the connected client (all
561
+ * engines)</p>
562
+ * </li>
511
563
  * <li>
512
- * <p>
513
- * <code>db.host.name</code> - The host name of the connected client (all engines)</p>
514
- * </li>
564
+ * <p>
565
+ * <code>db.host.name</code> - The host name of the connected client (all
566
+ * engines)</p>
567
+ * </li>
515
568
  * <li>
516
- * <p>
517
- * <code>db.name</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS
518
- * PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
519
- * </li>
569
+ * <p>
570
+ * <code>db.name</code> - The name of the database to which the client is connected
571
+ * (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
572
+ * </li>
520
573
  * <li>
521
- * <p>
522
- * <code>db.session_type.name</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
523
- * </li>
574
+ * <p>
575
+ * <code>db.session_type.name</code> - The type of the current session (only Aurora
576
+ * PostgreSQL and RDS PostgreSQL)</p>
577
+ * </li>
524
578
  * <li>
525
- * <p>
526
- * <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
527
- * </li>
579
+ * <p>
580
+ * <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
581
+ * </li>
528
582
  * <li>
529
- * <p>
530
- * <code>db.sql.db_id</code> - The SQL ID generated by the database (all engines)</p>
531
- * </li>
583
+ * <p>
584
+ * <code>db.sql.db_id</code> - The SQL ID generated by the database (all
585
+ * engines)</p>
586
+ * </li>
532
587
  * <li>
533
- * <p>
534
- * <code>db.sql.statement</code> - The SQL text that is being executed (all engines)</p>
535
- * </li>
588
+ * <p>
589
+ * <code>db.sql.statement</code> - The SQL text that is being executed (all
590
+ * engines)</p>
591
+ * </li>
536
592
  * <li>
537
- * <p>
538
- * <code>db.sql.tokenized_id</code>
539
- * </p>
540
- * </li>
593
+ * <p>
594
+ * <code>db.sql.tokenized_id</code>
595
+ * </p>
596
+ * </li>
541
597
  * <li>
542
- * <p>
543
- * <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all engines)</p>
544
- * </li>
598
+ * <p>
599
+ * <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all
600
+ * engines)</p>
601
+ * </li>
545
602
  * <li>
546
- * <p>
547
- * <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database (all engines)</p>
548
- * </li>
603
+ * <p>
604
+ * <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database
605
+ * (all engines)</p>
606
+ * </li>
549
607
  * <li>
550
- * <p>
551
- * <code>db.sql_tokenized.statement</code> - The SQL digest text (all engines)</p>
552
- * </li>
608
+ * <p>
609
+ * <code>db.sql_tokenized.statement</code> - The SQL digest text (all
610
+ * engines)</p>
611
+ * </li>
553
612
  * <li>
554
- * <p>
555
- * <code>db.user.id</code> - The ID of the user logged in to the database (all engines)</p>
556
- * </li>
613
+ * <p>
614
+ * <code>db.user.id</code> - The ID of the user logged in to the database (all
615
+ * engines)</p>
616
+ * </li>
557
617
  * <li>
558
- * <p>
559
- * <code>db.user.name</code> - The name of the user logged in to the database (all engines)</p>
560
- * </li>
618
+ * <p>
619
+ * <code>db.user.name</code> - The name of the user logged in to the database (all
620
+ * engines)</p>
621
+ * </li>
561
622
  * <li>
562
- * <p>
563
- * <code>db.wait_event.name</code> - The event for which the backend is waiting (all engines)</p>
564
- * </li>
623
+ * <p>
624
+ * <code>db.wait_event.name</code> - The event for which the backend is waiting
625
+ * (all engines)</p>
626
+ * </li>
565
627
  * <li>
566
- * <p>
567
- * <code>db.wait_event.type</code> - The type of event for which the backend is waiting (all engines)</p>
568
- * </li>
628
+ * <p>
629
+ * <code>db.wait_event.type</code> - The type of event for which the backend is
630
+ * waiting (all engines)</p>
631
+ * </li>
569
632
  * <li>
570
- * <p>
571
- * <code>db.wait_event_type.name</code> - The name of the event type for which the backend is waiting (all
572
- * engines)</p>
573
- * </li>
633
+ * <p>
634
+ * <code>db.wait_event_type.name</code> - The name of the event type for which the
635
+ * backend is waiting (all engines)</p>
636
+ * </li>
574
637
  * </ul>
575
638
  */
576
639
  Dimensions?: string[];
@@ -586,14 +649,13 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
586
649
  const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
587
650
  }
588
651
  /**
589
- * <p>A single query to be processed. Use these parameters to
590
- * query the Performance Insights <code>GetResourceMetrics</code> API to retrieve the metrics
591
- * for an anomaly. For more information, see <code>
652
+ * <p>A single query to be processed. Use these parameters to query the Performance Insights
653
+ * <code>GetResourceMetrics</code> API to retrieve the metrics for an anomaly. For more
654
+ * information, see <code>
592
655
  * <a href="https://docs.aws.amazon.com/performance-insights/latest/APIReference/API_GetResourceMetrics.html">GetResourceMetrics</a>
593
- * </code>
594
- * in the <i>Amazon RDS Performance Insights API Reference</i>.</p>
595
- *
596
- * <p>Amazon RDS Performance Insights enables you to monitor and explore different
656
+ * </code> in the <i>Amazon RDS Performance Insights API
657
+ * Reference</i>.</p>
658
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
597
659
  * dimensions of database load based on data captured from a running DB instance.
598
660
  * DB load is measured as average active sessions. Performance Insights provides the
599
661
  * data to API consumers as a two-dimensional time-series dataset. The time dimension
@@ -614,45 +676,51 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
614
676
  */
615
677
  export interface PerformanceInsightsMetricQuery {
616
678
  /**
617
- * <p>The name of the meteric used used when querying an Performance Insights <code>GetResourceMetrics</code> API for
618
- * anomaly metrics.</p>
679
+ * <p>The name of the meteric used used when querying an Performance Insights
680
+ * <code>GetResourceMetrics</code> API for anomaly metrics.</p>
619
681
  *
620
- * <p>Valid values for <code>Metric</code> are:</p>
682
+ * <p>Valid values for <code>Metric</code> are:</p>
621
683
  *
622
- * <ul>
684
+ * <ul>
623
685
  * <li>
624
- * <p>
625
- * <code>db.load.avg</code> - a scaled representation of the number of active sessions
626
- * for the database engine.</p>
627
- * </li>
686
+ * <p>
687
+ * <code>db.load.avg</code> - a scaled representation of the number of active sessions for the
688
+ * database engine.</p>
689
+ * </li>
628
690
  * <li>
629
- * <p>
630
- * <code>db.sampledload.avg</code> - the raw number of active sessions for the
631
- * database engine.</p>
632
- * </li>
691
+ * <p>
692
+ * <code>db.sampledload.avg</code> - the raw number of active sessions for the database
693
+ * engine.</p>
694
+ * </li>
633
695
  * </ul>
634
- * <p>If the number of active sessions is less than an internal Performance Insights threshold, <code>db.load.avg</code> and <code>db.sampledload.avg</code>
635
- * are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with <code>db.load.avg</code>
636
- * showing the scaled values, <code>db.sampledload.avg</code> showing the raw values, and <code>db.sampledload.avg</code> less than <code>db.load.avg</code>.
637
- * For most use cases, you can query <code>db.load.avg</code> only. </p>
696
+ * <p>If the number of active sessions is less than an internal Performance Insights threshold,
697
+ * <code>db.load.avg</code> and <code>db.sampledload.avg</code> are the same value. If
698
+ * the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with
699
+ * <code>db.load.avg</code> showing the scaled values, <code>db.sampledload.avg</code>
700
+ * showing the raw values, and <code>db.sampledload.avg</code> less than
701
+ * <code>db.load.avg</code>. For most use cases, you can query <code>db.load.avg</code>
702
+ * only. </p>
638
703
  */
639
704
  Metric?: string;
640
705
  /**
641
- * <p>The specification for how to aggregate the data points from a Performance Insights <code>GetResourceMetrics</code> API query. The
642
- * Performance Insights query returns all of the dimensions within that group,
643
- * unless you provide the names of specific dimensions within that group. You can also request
644
- * that Performance Insights return a limited number of values for a dimension.</p>
706
+ * <p>The specification for how to aggregate the data points from a Performance Insights
707
+ * <code>GetResourceMetrics</code> API query. The Performance Insights query returns all of the
708
+ * dimensions within that group, unless you provide the names of specific dimensions within
709
+ * that group. You can also request that Performance Insights return a limited number of values for a
710
+ * dimension.</p>
645
711
  */
646
712
  GroupBy?: PerformanceInsightsMetricDimensionGroup;
647
713
  /**
648
- * <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query. Restrictions:</p>
649
- * <ul>
714
+ * <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
715
+ * Restrictions:</p>
716
+ * <ul>
650
717
  * <li>
651
- * <p>Any number of filters by the same dimension, as specified in the <code>GroupBy</code> parameter.</p>
652
- * </li>
718
+ * <p>Any number of filters by the same dimension, as specified in the
719
+ * <code>GroupBy</code> parameter.</p>
720
+ * </li>
653
721
  * <li>
654
- * <p>A single filter for any other dimension in this dimension group.</p>
655
- * </li>
722
+ * <p>A single filter for any other dimension in this dimension group.</p>
723
+ * </li>
656
724
  * </ul>
657
725
  */
658
726
  Filter?: {
@@ -682,7 +750,7 @@ export declare namespace PerformanceInsightsReferenceMetric {
682
750
  }
683
751
  /**
684
752
  * <p>A reference value to compare Performance Insights metrics against to determine if the metrics
685
- * demonstrate anomalous behavior.</p>
753
+ * demonstrate anomalous behavior.</p>
686
754
  */
687
755
  export interface PerformanceInsightsReferenceScalar {
688
756
  /**
@@ -697,18 +765,21 @@ export declare namespace PerformanceInsightsReferenceScalar {
697
765
  const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
698
766
  }
699
767
  /**
700
- * <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its console along with the actual metrics it
701
- * analyzed. Compare these reference values to your actual metrics to help you understand anomalous behavior that DevOps Guru detected.</p>
768
+ * <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
769
+ * console along with the actual metrics it analyzed. Compare these reference values to
770
+ * your actual metrics to help you understand anomalous behavior that DevOps Guru
771
+ * detected.</p>
702
772
  */
703
773
  export interface PerformanceInsightsReferenceComparisonValues {
704
774
  /**
705
- * <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This reference value is used
706
- * to determine if an actual metric value should be considered anomalous.</p>
775
+ * <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This
776
+ * reference value is used to determine if an actual metric value should be considered
777
+ * anomalous.</p>
707
778
  */
708
779
  ReferenceScalar?: PerformanceInsightsReferenceScalar;
709
780
  /**
710
- * <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used
711
- * to determine if an actual metric should be considered anomalous.</p>
781
+ * <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used to
782
+ * determine if an actual metric should be considered anomalous.</p>
712
783
  */
713
784
  ReferenceMetric?: PerformanceInsightsReferenceMetric;
714
785
  }
@@ -719,8 +790,8 @@ export declare namespace PerformanceInsightsReferenceComparisonValues {
719
790
  const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
720
791
  }
721
792
  /**
722
- * <p>Reference data used to evaluate Performance Insights to determine if its performance
723
- * is anomalous or not.</p>
793
+ * <p>Reference data used to evaluate Performance Insights to determine if its performance is anomalous or
794
+ * not.</p>
724
795
  */
725
796
  export interface PerformanceInsightsReferenceData {
726
797
  /**
@@ -729,10 +800,9 @@ export interface PerformanceInsightsReferenceData {
729
800
  Name?: string;
730
801
  /**
731
802
  * <p>The specific reference values used to evaluate the Performance Insights. For more information, see
732
- * <code>
803
+ * <code>
733
804
  * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceComparisonValues.html">PerformanceInsightsReferenceComparisonValues</a>
734
- * </code>.
735
- * </p>
805
+ * </code>. </p>
736
806
  */
737
807
  ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
738
808
  }
@@ -763,8 +833,7 @@ export declare namespace PerformanceInsightsStat {
763
833
  }
764
834
  /**
765
835
  * <p>Details about Performance Insights metrics.</p>
766
- *
767
- * <p>Amazon RDS Performance Insights enables you to monitor and explore different
836
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
768
837
  * dimensions of database load based on data captured from a running DB instance.
769
838
  * DB load is measured as average active sessions. Performance Insights provides the
770
839
  * data to API consumers as a two-dimensional time-series dataset. The time dimension
@@ -793,19 +862,15 @@ export interface PerformanceInsightsMetricsDetail {
793
862
  */
794
863
  Unit?: string;
795
864
  /**
796
- * <p>A single query to be processed for the metric. For more information, see
797
- * <code>
865
+ * <p>A single query to be processed for the metric. For more information, see <code>
798
866
  * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
799
867
  * </code>.</p>
800
868
  */
801
869
  MetricQuery?: PerformanceInsightsMetricQuery;
802
870
  /**
803
- * <p>
804
- * For more information, see
805
- * <code>
871
+ * <p> For more information, see <code>
806
872
  * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
807
- * </code>.
808
- * </p>
873
+ * </code>. </p>
809
874
  */
810
875
  ReferenceData?: PerformanceInsightsReferenceData[];
811
876
  /**
@@ -836,8 +901,8 @@ export interface AnomalySourceDetails {
836
901
  */
837
902
  CloudWatchMetrics?: CloudWatchMetricsDetail[];
838
903
  /**
839
- * <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain information
840
- * about analyzed Performance Insights metrics that show anomalous behavior.</p>
904
+ * <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
905
+ * information about analyzed Performance Insights metrics that show anomalous behavior.</p>
841
906
  */
842
907
  PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
843
908
  }
@@ -847,6 +912,30 @@ export declare namespace AnomalySourceDetails {
847
912
  */
848
913
  const filterSensitiveLog: (obj: AnomalySourceDetails) => any;
849
914
  }
915
+ /**
916
+ * <p>Metadata about an anomaly. The anomaly is detected using analysis of the metric data
917
+ over a period of time</p>
918
+ */
919
+ export interface AnomalySourceMetadata {
920
+ /**
921
+ * <p>The source of the anomaly.</p>
922
+ */
923
+ Source?: string;
924
+ /**
925
+ * <p>The name of the anomaly's resource.</p>
926
+ */
927
+ SourceResourceName?: string;
928
+ /**
929
+ * <p>The anomaly's resource type.</p>
930
+ */
931
+ SourceResourceType?: string;
932
+ }
933
+ export declare namespace AnomalySourceMetadata {
934
+ /**
935
+ * @internal
936
+ */
937
+ const filterSensitiveLog: (obj: AnomalySourceMetadata) => any;
938
+ }
850
939
  export declare enum AnomalyStatus {
851
940
  CLOSED = "CLOSED",
852
941
  ONGOING = "ONGOING"
@@ -1012,7 +1101,7 @@ export declare namespace CloudFormationCollection {
1012
1101
  }
1013
1102
  /**
1014
1103
  * <p>A collection of Amazon Web Services stags.</p>
1015
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1104
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1016
1105
  * tagging, so you can assign the same tag to resources from different services to indicate
1017
1106
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1018
1107
  * table resource that you assign to an Lambda function. For more information about
@@ -1066,7 +1155,7 @@ export interface TagCollection {
1066
1155
  AppBoundaryKey: string | undefined;
1067
1156
  /**
1068
1157
  * <p>The values in an Amazon Web Services tag collection.</p>
1069
- * <p>The tag's <i>value</i> is an optional field used to associate a string with
1158
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
1070
1159
  * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
1071
1160
  * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
1072
1161
  * Omitting the tag <i>value</i> is the same as using an empty
@@ -1095,7 +1184,7 @@ export interface ResourceCollection {
1095
1184
  CloudFormation?: CloudFormationCollection;
1096
1185
  /**
1097
1186
  * <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
1098
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1187
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1099
1188
  * tagging, so you can assign the same tag to resources from different services to indicate
1100
1189
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1101
1190
  * table resource that you assign to an Lambda function. For more information about
@@ -1200,6 +1289,14 @@ export interface ProactiveAnomaly {
1200
1289
  * threshold is related to the anomalous behavior that generated this anomaly. </p>
1201
1290
  */
1202
1291
  Limit?: number;
1292
+ /**
1293
+ * <p>The metadata for the anomaly.</p>
1294
+ */
1295
+ SourceMetadata?: AnomalySourceMetadata;
1296
+ /**
1297
+ * <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
1298
+ */
1299
+ AnomalyResources?: AnomalyResource[];
1203
1300
  }
1204
1301
  export declare namespace ProactiveAnomaly {
1205
1302
  /**
@@ -1310,6 +1407,41 @@ export declare namespace DescribeAnomalyResponse {
1310
1407
  */
1311
1408
  const filterSensitiveLog: (obj: DescribeAnomalyResponse) => any;
1312
1409
  }
1410
+ export interface DescribeEventSourcesConfigRequest {
1411
+ }
1412
+ export declare namespace DescribeEventSourcesConfigRequest {
1413
+ /**
1414
+ * @internal
1415
+ */
1416
+ const filterSensitiveLog: (obj: DescribeEventSourcesConfigRequest) => any;
1417
+ }
1418
+ /**
1419
+ * <p>Describes the event sources.</p>
1420
+ */
1421
+ export interface EventSourcesConfig {
1422
+ /**
1423
+ * <p></p>
1424
+ */
1425
+ AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
1426
+ }
1427
+ export declare namespace EventSourcesConfig {
1428
+ /**
1429
+ * @internal
1430
+ */
1431
+ const filterSensitiveLog: (obj: EventSourcesConfig) => any;
1432
+ }
1433
+ export interface DescribeEventSourcesConfigResponse {
1434
+ /**
1435
+ * <p>The name of the event source.</p>
1436
+ */
1437
+ EventSources?: EventSourcesConfig;
1438
+ }
1439
+ export declare namespace DescribeEventSourcesConfigResponse {
1440
+ /**
1441
+ * @internal
1442
+ */
1443
+ const filterSensitiveLog: (obj: DescribeEventSourcesConfigResponse) => any;
1444
+ }
1313
1445
  export interface DescribeFeedbackRequest {
1314
1446
  /**
1315
1447
  * <p> The ID of the insight for which the feedback was provided. </p>
@@ -1450,6 +1582,10 @@ export interface ProactiveInsight {
1450
1582
  * the creation of OpstItems insights before they are created for each insight. </p>
1451
1583
  */
1452
1584
  SsmOpsItemId?: string;
1585
+ /**
1586
+ * <p>Describes the proactive insight.</p>
1587
+ */
1588
+ Description?: string;
1453
1589
  }
1454
1590
  export declare namespace ProactiveInsight {
1455
1591
  /**
@@ -1497,6 +1633,10 @@ export interface ReactiveInsight {
1497
1633
  * the creation of OpstItems insights before they are created for each insight. </p>
1498
1634
  */
1499
1635
  SsmOpsItemId?: string;
1636
+ /**
1637
+ * <p>Describes the reactive insight.</p>
1638
+ */
1639
+ Description?: string;
1500
1640
  }
1501
1641
  export declare namespace ReactiveInsight {
1502
1642
  /**
@@ -1765,7 +1905,7 @@ export declare namespace ServiceHealth {
1765
1905
  }
1766
1906
  /**
1767
1907
  * <p> Information about the health of Amazon Web Services resources in your account that are specified by
1768
- * an Amazon Web Services tag <i>key</i>. </p>
1908
+ * an Amazon Web Services tag <i>key</i>. </p>
1769
1909
  */
1770
1910
  export interface TagHealth {
1771
1911
  /**
@@ -1787,7 +1927,7 @@ export interface TagHealth {
1787
1927
  AppBoundaryKey?: string;
1788
1928
  /**
1789
1929
  * <p>The value in an Amazon Web Services tag.</p>
1790
- * <p>The tag's <i>value</i> is an optional field used to associate a string with
1930
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
1791
1931
  * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
1792
1932
  * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
1793
1933
  * Omitting the tag <i>value</i> is the same as using an empty
@@ -1796,9 +1936,9 @@ export interface TagHealth {
1796
1936
  */
1797
1937
  TagValue?: string;
1798
1938
  /**
1799
- * <p>Information about the health of the Amazon Web Services resources in your account that are
1800
- * specified by an Amazon Web Services tag, including the number of open proactive, open reactive
1801
- * insights, and the Mean Time to Recover (MTTR) of closed insights. </p>
1939
+ * <p>Information about the health of the Amazon Web Services resources in your account that are specified
1940
+ * by an Amazon Web Services tag, including the number of open proactive, open reactive insights, and the
1941
+ * Mean Time to Recover (MTTR) of closed insights. </p>
1802
1942
  */
1803
1943
  Insight?: InsightHealth;
1804
1944
  }
@@ -1811,7 +1951,7 @@ export declare namespace TagHealth {
1811
1951
  export interface DescribeOrganizationResourceCollectionHealthResponse {
1812
1952
  /**
1813
1953
  * <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
1814
- * <code>InsightHealthOverview</code> object with the requested system health
1954
+ * <code>InsightHealthOverview</code> object with the requested system health
1815
1955
  * information.</p>
1816
1956
  */
1817
1957
  CloudFormation?: CloudFormationHealth[];
@@ -1916,7 +2056,7 @@ export interface DescribeResourceCollectionHealthResponse {
1916
2056
  NextToken?: string;
1917
2057
  /**
1918
2058
  * <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
1919
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2059
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1920
2060
  * tagging, so you can assign the same tag to resources from different services to indicate
1921
2061
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1922
2062
  * table resource that you assign to an Lambda function. For more information about
@@ -2098,12 +2238,12 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
2098
2238
  const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
2099
2239
  }
2100
2240
  /**
2101
- * <p>Information about a collection of Amazon Web Services resources that are identified by an
2102
- * Amazon Web Services tag. This collection of resources is used to create a monthly cost estimate
2103
- * for DevOps Guru to analyze Amazon Web Services resources. The maximum number of tags you can specify for a
2104
- * cost estimate is one. The estimate created is for the cost to analyze the Amazon Web Services
2105
- * resources defined by the tag. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
2106
- * <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2241
+ * <p>Information about a collection of Amazon Web Services resources that are identified by an Amazon Web Services tag.
2242
+ * This collection of resources is used to create a monthly cost estimate for DevOps Guru to
2243
+ * analyze Amazon Web Services resources. The maximum number of tags you can specify for a cost estimate
2244
+ * is one. The estimate created is for the cost to analyze the Amazon Web Services resources defined by
2245
+ * the tag. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
2246
+ * <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2107
2247
  */
2108
2248
  export interface TagCostEstimationResourceCollectionFilter {
2109
2249
  /**
@@ -2125,7 +2265,7 @@ export interface TagCostEstimationResourceCollectionFilter {
2125
2265
  AppBoundaryKey: string | undefined;
2126
2266
  /**
2127
2267
  * <p>The values in an Amazon Web Services tag collection.</p>
2128
- * <p>The tag's <i>value</i> is an optional field used to associate a string with
2268
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2129
2269
  * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2130
2270
  * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2131
2271
  * Omitting the tag <i>value</i> is the same as using an empty
@@ -2154,9 +2294,9 @@ export interface CostEstimationResourceCollectionFilter {
2154
2294
  */
2155
2295
  CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
2156
2296
  /**
2157
- * <p>The Amazon Web Services tags used to filter the resource collection that is used for
2158
- * a cost estimate.</p>
2159
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2297
+ * <p>The Amazon Web Services tags used to filter the resource collection that is used for a cost
2298
+ * estimate.</p>
2299
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2160
2300
  * tagging, so you can assign the same tag to resources from different services to indicate
2161
2301
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2162
2302
  * table resource that you assign to an Lambda function. For more information about
@@ -2297,8 +2437,8 @@ export declare namespace CloudFormationCollectionFilter {
2297
2437
  const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
2298
2438
  }
2299
2439
  /**
2300
- * <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights generated from
2301
- * only resources that contain the tags in the tag collection.</p>
2440
+ * <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
2441
+ * generated from only resources that contain the tags in the tag collection.</p>
2302
2442
  */
2303
2443
  export interface TagCollectionFilter {
2304
2444
  /**
@@ -2320,7 +2460,7 @@ export interface TagCollectionFilter {
2320
2460
  AppBoundaryKey: string | undefined;
2321
2461
  /**
2322
2462
  * <p>The values in an Amazon Web Services tag collection.</p>
2323
- * <p>The tag's <i>value</i> is an optional field used to associate a string with
2463
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2324
2464
  * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2325
2465
  * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2326
2466
  * Omitting the tag <i>value</i> is the same as using an empty
@@ -2349,7 +2489,7 @@ export interface ResourceCollectionFilter {
2349
2489
  CloudFormation?: CloudFormationCollectionFilter;
2350
2490
  /**
2351
2491
  * <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
2352
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2492
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2353
2493
  * tagging, so you can assign the same tag to resources from different services to indicate
2354
2494
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2355
2495
  * table resource that you assign to an Lambda function. For more information about
@@ -2526,6 +2666,14 @@ export interface ProactiveAnomalySummary {
2526
2666
  * threshold is related to the anomalous behavior that generated this anomaly. </p>
2527
2667
  */
2528
2668
  Limit?: number;
2669
+ /**
2670
+ * <p>Returns the metadata of the source.</p>
2671
+ */
2672
+ SourceMetadata?: AnomalySourceMetadata;
2673
+ /**
2674
+ * <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
2675
+ */
2676
+ AnomalyResources?: AnomalyResource[];
2529
2677
  }
2530
2678
  export declare namespace ProactiveAnomalySummary {
2531
2679
  /**
@@ -3206,7 +3354,7 @@ export declare namespace ListOrganizationInsightsRequest {
3206
3354
  }
3207
3355
  /**
3208
3356
  * <p>Details about a proactive insight. This object is returned by
3209
- * <code>DescribeInsight</code>.</p>
3357
+ * <code>DescribeInsight</code>.</p>
3210
3358
  */
3211
3359
  export interface ProactiveOrganizationInsightSummary {
3212
3360
  /**
@@ -3226,7 +3374,8 @@ export interface ProactiveOrganizationInsightSummary {
3226
3374
  */
3227
3375
  Name?: string;
3228
3376
  /**
3229
- * <p> An array of severity values used to search for insights. For more information, see
3377
+ * <p> An array of severity values used to search for insights.
3378
+ * For more information, see
3230
3379
  * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3231
3380
  * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
3232
3381
  */
@@ -3265,7 +3414,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
3265
3414
  }
3266
3415
  /**
3267
3416
  * <p>Information about a reactive insight. This object is returned by
3268
- * <code>DescribeInsight</code>.</p>
3417
+ * <code>DescribeInsight</code>.</p>
3269
3418
  */
3270
3419
  export interface ReactiveOrganizationInsightSummary {
3271
3420
  /**
@@ -3285,7 +3434,8 @@ export interface ReactiveOrganizationInsightSummary {
3285
3434
  */
3286
3435
  Name?: string;
3287
3436
  /**
3288
- * <p> An array of severity values used to search for insights. For more information, see
3437
+ * <p> An array of severity values used to search for insights.
3438
+ * For more information, see
3289
3439
  * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3290
3440
  * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
3291
3441
  */
@@ -3387,11 +3537,11 @@ export interface RecommendationRelatedAnomalyResource {
3387
3537
  */
3388
3538
  Name?: string;
3389
3539
  /**
3390
- * <p> The type of the resource. Resource types take the same form that is
3391
- * used by Amazon Web Services CloudFormation resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
3392
- * For example, <code>AWS::RDS::DBCluster</code>. For more information, see
3393
- * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services resource and
3394
- * property types reference</a> in the <i>Amazon Web Services CloudFormation User Guide</i>.</p>
3540
+ * <p> The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation
3541
+ * resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
3542
+ * For example, <code>AWS::RDS::DBCluster</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services
3543
+ * resource and property types reference</a> in the <i>Amazon Web Services CloudFormation User
3544
+ * Guide</i>.</p>
3395
3545
  */
3396
3546
  Type?: string;
3397
3547
  }
@@ -3537,6 +3687,10 @@ export interface Recommendation {
3537
3687
  * what's happening and to help address the issue. </p>
3538
3688
  */
3539
3689
  RelatedAnomalies?: RecommendationRelatedAnomaly[];
3690
+ /**
3691
+ * <p>The category type of the recommendation.</p>
3692
+ */
3693
+ Category?: string;
3540
3694
  }
3541
3695
  export declare namespace Recommendation {
3542
3696
  /**
@@ -3744,7 +3898,7 @@ export interface SearchOrganizationInsightsRequest {
3744
3898
  NextToken?: string;
3745
3899
  /**
3746
3900
  * <p> The type of insights you are searching for (<code>REACTIVE</code> or
3747
- * <code>PROACTIVE</code>). </p>
3901
+ * <code>PROACTIVE</code>). </p>
3748
3902
  */
3749
3903
  Type: InsightType | string | undefined;
3750
3904
  }
@@ -3801,6 +3955,26 @@ export declare namespace StartCostEstimationResponse {
3801
3955
  */
3802
3956
  const filterSensitiveLog: (obj: StartCostEstimationResponse) => any;
3803
3957
  }
3958
+ export interface UpdateEventSourcesConfigRequest {
3959
+ /**
3960
+ * <p>The name of the event source.</p>
3961
+ */
3962
+ EventSources?: EventSourcesConfig;
3963
+ }
3964
+ export declare namespace UpdateEventSourcesConfigRequest {
3965
+ /**
3966
+ * @internal
3967
+ */
3968
+ const filterSensitiveLog: (obj: UpdateEventSourcesConfigRequest) => any;
3969
+ }
3970
+ export interface UpdateEventSourcesConfigResponse {
3971
+ }
3972
+ export declare namespace UpdateEventSourcesConfigResponse {
3973
+ /**
3974
+ * @internal
3975
+ */
3976
+ const filterSensitiveLog: (obj: UpdateEventSourcesConfigResponse) => any;
3977
+ }
3804
3978
  export declare enum UpdateResourceCollectionAction {
3805
3979
  ADD = "ADD",
3806
3980
  REMOVE = "REMOVE"
@@ -3824,7 +3998,7 @@ export declare namespace UpdateCloudFormationCollectionFilter {
3824
3998
  }
3825
3999
  /**
3826
4000
  * <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
3827
- * <i>key</i>/<i>value</i> pair.</p>
4001
+ * <i>key</i>/<i>value</i> pair.</p>
3828
4002
  */
3829
4003
  export interface UpdateTagCollectionFilter {
3830
4004
  /**
@@ -3846,7 +4020,7 @@ export interface UpdateTagCollectionFilter {
3846
4020
  AppBoundaryKey: string | undefined;
3847
4021
  /**
3848
4022
  * <p>The values in an Amazon Web Services tag collection.</p>
3849
- * <p>The tag's <i>value</i> is an optional field used to associate a string with
4023
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
3850
4024
  * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
3851
4025
  * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
3852
4026
  * Omitting the tag <i>value</i> is the same as using an empty
@@ -3871,7 +4045,7 @@ export interface UpdateResourceCollectionFilter {
3871
4045
  CloudFormation?: UpdateCloudFormationCollectionFilter;
3872
4046
  /**
3873
4047
  * <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
3874
- * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
4048
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
3875
4049
  * tagging, so you can assign the same tag to resources from different services to indicate
3876
4050
  * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
3877
4051
  * table resource that you assign to an Lambda function. For more information about