@aws-sdk/client-devops-guru 3.42.0 → 3.46.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.
@@ -261,7 +261,9 @@ export declare namespace ValidationExceptionField {
261
261
  export declare enum ValidationExceptionReason {
262
262
  CANNOT_PARSE = "CANNOT_PARSE",
263
263
  FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
264
+ INVALID_PARAMETER_COMBINATION = "INVALID_PARAMETER_COMBINATION",
264
265
  OTHER = "OTHER",
266
+ PARAMETER_INCONSISTENT_WITH_SERVICE_STATE = "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
265
267
  UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
266
268
  }
267
269
  /**
@@ -311,13 +313,35 @@ export declare namespace AnomalyReportedTimeRange {
311
313
  */
312
314
  const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
313
315
  }
316
+ /**
317
+ * <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in
318
+ * the generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates
319
+ * and insight with details about the anomalous behavior and suggestions about how to correct the
320
+ * problem.</p>
321
+ */
322
+ export interface AnomalyResource {
323
+ /**
324
+ * <p>The name of the Amazon Web Services resource.</p>
325
+ */
326
+ Name?: string;
327
+ /**
328
+ * <p>The type of the Amazon Web Services resource.</p>
329
+ */
330
+ Type?: string;
331
+ }
332
+ export declare namespace AnomalyResource {
333
+ /**
334
+ * @internal
335
+ */
336
+ const filterSensitiveLog: (obj: AnomalyResource) => any;
337
+ }
314
338
  export declare enum AnomalySeverity {
315
339
  HIGH = "HIGH",
316
340
  LOW = "LOW",
317
341
  MEDIUM = "MEDIUM"
318
342
  }
319
343
  /**
320
- * <p> The dimension of a Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
344
+ * <p> The dimension of am Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in
321
345
  * your account for operational problems and anomalous behavior. A dimension is a
322
346
  * name/value pair that is part of the identity of a metric. A metric can have up to 10
323
347
  * dimensions. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension">Dimensions</a> in the <i>Amazon CloudWatch User Guide</i>. </p>
@@ -368,12 +392,12 @@ export declare namespace TimestampMetricValuePair {
368
392
  */
369
393
  export interface CloudWatchMetricsDataSummary {
370
394
  /**
371
- * <p>This is a list of cloudwatch metric values at given timestamp.</p>
395
+ * <p>This is a list of Amazon CloudWatch metric values at given timestamp.</p>
372
396
  */
373
397
  TimestampMetricValuePairList?: TimestampMetricValuePair[];
374
398
  /**
375
- * <p>This is enum of the status showing whether the metric value pair list has Partial or
376
- * Complete data or there was an error.</p>
399
+ * <p>This is an enum of the status showing whether the metric value pair list has partial or
400
+ * complete data, or if there was an error.</p>
377
401
  */
378
402
  StatusCode?: CloudWatchMetricDataStatusCode | string;
379
403
  }
@@ -435,16 +459,429 @@ export declare namespace CloudWatchMetricsDetail {
435
459
  */
436
460
  const filterSensitiveLog: (obj: CloudWatchMetricsDetail) => any;
437
461
  }
462
+ /**
463
+ * <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
464
+ * <code>db.sql</code> dimension group consists of the following dimensions:
465
+ * <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>, and
466
+ * <code>db.sql.tokenized_id</code>.</p>
467
+ * <note>
468
+ * <p>Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements,
469
+ * only the first 500 bytes are returned.</p>
470
+ * </note>
471
+ *
472
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
473
+ * dimensions of database load based on data captured from a running DB instance.
474
+ * DB load is measured as average active sessions. Performance Insights provides the
475
+ * data to API consumers as a two-dimensional time-series dataset. The time dimension
476
+ * provides DB load data for each time point in the queried time range. Each time point
477
+ * decomposes overall load in relation to the requested dimensions, measured at that
478
+ * time point. Examples include SQL, Wait event, User, and Host. </p>
479
+ *
480
+ * <ul>
481
+ * <li>
482
+ * <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
483
+ * </p>
484
+ * </li>
485
+ * <li>
486
+ * <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
487
+ * </p>
488
+ * </li>
489
+ * </ul>
490
+ */
491
+ export interface PerformanceInsightsMetricDimensionGroup {
492
+ /**
493
+ * <p>The name of the dimension group. Its valid values are:</p>
494
+ *
495
+ * <ul>
496
+ * <li>
497
+ * <p>
498
+ * <code>db</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS PostgreSQL,
499
+ * Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
500
+ * </li>
501
+ * <li>
502
+ * <p>
503
+ * <code>db.application</code> - The name of the application that is connected to the database (only Aurora
504
+ * PostgreSQL and RDS PostgreSQL)</p>
505
+ * </li>
506
+ * <li>
507
+ * <p>
508
+ * <code>db.host</code> - The host name of the connected client (all engines)</p>
509
+ * </li>
510
+ * <li>
511
+ * <p>
512
+ * <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
513
+ * </li>
514
+ * <li>
515
+ * <p>
516
+ * <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
517
+ * </li>
518
+ * <li>
519
+ * <p>
520
+ * <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
521
+ * </li>
522
+ * <li>
523
+ * <p>
524
+ * <code>db.wait_event</code> - The event for which the database backend is waiting (all engines)</p>
525
+ * </li>
526
+ * <li>
527
+ * <p>
528
+ * <code>db.wait_event_type</code> - The type of event for which the database backend is waiting (all engines)</p>
529
+ * </li>
530
+ * <li>
531
+ * <p>
532
+ * <code>db.user</code> - The user logged in to the database (all engines)</p>
533
+ * </li>
534
+ * </ul>
535
+ */
536
+ Group?: string;
537
+ /**
538
+ * <p>A list of specific dimensions from a dimension group. If this parameter is not present,
539
+ * then it signifies that all of the dimensions in the group were requested or are present in
540
+ * the response.</p>
541
+ * <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
542
+ *
543
+ * <ul>
544
+ * <li>
545
+ * <p>
546
+ * <code>db.application.name</code> - The name of the application that is connected to the database (only
547
+ * Aurora PostgreSQL and RDS PostgreSQL)</p>
548
+ * </li>
549
+ * <li>
550
+ * <p>
551
+ * <code>db.host.id</code> - The host ID of the connected client (all engines)</p>
552
+ * </li>
553
+ * <li>
554
+ * <p>
555
+ * <code>db.host.name</code> - The host name of the connected client (all engines)</p>
556
+ * </li>
557
+ * <li>
558
+ * <p>
559
+ * <code>db.name</code> - The name of the database to which the client is connected (only Aurora PostgreSQL, Amazon RDS
560
+ * PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
561
+ * </li>
562
+ * <li>
563
+ * <p>
564
+ * <code>db.session_type.name</code> - The type of the current session (only Aurora PostgreSQL and RDS PostgreSQL)</p>
565
+ * </li>
566
+ * <li>
567
+ * <p>
568
+ * <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
569
+ * </li>
570
+ * <li>
571
+ * <p>
572
+ * <code>db.sql.db_id</code> - The SQL ID generated by the database (all engines)</p>
573
+ * </li>
574
+ * <li>
575
+ * <p>
576
+ * <code>db.sql.statement</code> - The SQL text that is being executed (all engines)</p>
577
+ * </li>
578
+ * <li>
579
+ * <p>
580
+ * <code>db.sql.tokenized_id</code>
581
+ * </p>
582
+ * </li>
583
+ * <li>
584
+ * <p>
585
+ * <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all engines)</p>
586
+ * </li>
587
+ * <li>
588
+ * <p>
589
+ * <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database (all engines)</p>
590
+ * </li>
591
+ * <li>
592
+ * <p>
593
+ * <code>db.sql_tokenized.statement</code> - The SQL digest text (all engines)</p>
594
+ * </li>
595
+ * <li>
596
+ * <p>
597
+ * <code>db.user.id</code> - The ID of the user logged in to the database (all engines)</p>
598
+ * </li>
599
+ * <li>
600
+ * <p>
601
+ * <code>db.user.name</code> - The name of the user logged in to the database (all engines)</p>
602
+ * </li>
603
+ * <li>
604
+ * <p>
605
+ * <code>db.wait_event.name</code> - The event for which the backend is waiting (all engines)</p>
606
+ * </li>
607
+ * <li>
608
+ * <p>
609
+ * <code>db.wait_event.type</code> - The type of event for which the backend is waiting (all engines)</p>
610
+ * </li>
611
+ * <li>
612
+ * <p>
613
+ * <code>db.wait_event_type.name</code> - The name of the event type for which the backend is waiting (all
614
+ * engines)</p>
615
+ * </li>
616
+ * </ul>
617
+ */
618
+ Dimensions?: string[];
619
+ /**
620
+ * <p>The maximum number of items to fetch for this dimension group.</p>
621
+ */
622
+ Limit?: number;
623
+ }
624
+ export declare namespace PerformanceInsightsMetricDimensionGroup {
625
+ /**
626
+ * @internal
627
+ */
628
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
629
+ }
630
+ /**
631
+ * <p>A single query to be processed. Use these parameters to
632
+ * query the Performance Insights <code>GetResourceMetrics</code> API to retrieve the metrics
633
+ * for an anomaly. For more information, see <code>
634
+ * <a href="https://docs.aws.amazon.com/performance-insights/latest/APIReference/API_GetResourceMetrics.html">GetResourceMetrics</a>
635
+ * </code>
636
+ * in the <i>Amazon RDS Performance Insights API Reference</i>.</p>
637
+ *
638
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
639
+ * dimensions of database load based on data captured from a running DB instance.
640
+ * DB load is measured as average active sessions. Performance Insights provides the
641
+ * data to API consumers as a two-dimensional time-series dataset. The time dimension
642
+ * provides DB load data for each time point in the queried time range. Each time point
643
+ * decomposes overall load in relation to the requested dimensions, measured at that
644
+ * time point. Examples include SQL, Wait event, User, and Host. </p>
645
+ *
646
+ * <ul>
647
+ * <li>
648
+ * <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
649
+ * </p>
650
+ * </li>
651
+ * <li>
652
+ * <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
653
+ * </p>
654
+ * </li>
655
+ * </ul>
656
+ */
657
+ export interface PerformanceInsightsMetricQuery {
658
+ /**
659
+ * <p>The name of the meteric used used when querying an Performance Insights <code>GetResourceMetrics</code> API for
660
+ * anomaly metrics.</p>
661
+ *
662
+ * <p>Valid values for <code>Metric</code> are:</p>
663
+ *
664
+ * <ul>
665
+ * <li>
666
+ * <p>
667
+ * <code>db.load.avg</code> - a scaled representation of the number of active sessions
668
+ * for the database engine.</p>
669
+ * </li>
670
+ * <li>
671
+ * <p>
672
+ * <code>db.sampledload.avg</code> - the raw number of active sessions for the
673
+ * database engine.</p>
674
+ * </li>
675
+ * </ul>
676
+ * <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>
677
+ * 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>
678
+ * 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>.
679
+ * For most use cases, you can query <code>db.load.avg</code> only. </p>
680
+ */
681
+ Metric?: string;
682
+ /**
683
+ * <p>The specification for how to aggregate the data points from a Performance Insights <code>GetResourceMetrics</code> API query. The
684
+ * Performance Insights query returns all of the dimensions within that group,
685
+ * unless you provide the names of specific dimensions within that group. You can also request
686
+ * that Performance Insights return a limited number of values for a dimension.</p>
687
+ */
688
+ GroupBy?: PerformanceInsightsMetricDimensionGroup;
689
+ /**
690
+ * <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query. Restrictions:</p>
691
+ * <ul>
692
+ * <li>
693
+ * <p>Any number of filters by the same dimension, as specified in the <code>GroupBy</code> parameter.</p>
694
+ * </li>
695
+ * <li>
696
+ * <p>A single filter for any other dimension in this dimension group.</p>
697
+ * </li>
698
+ * </ul>
699
+ */
700
+ Filter?: {
701
+ [key: string]: string;
702
+ };
703
+ }
704
+ export declare namespace PerformanceInsightsMetricQuery {
705
+ /**
706
+ * @internal
707
+ */
708
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricQuery) => any;
709
+ }
710
+ /**
711
+ * <p>Information about a reference metric used to evaluate Performance Insights.</p>
712
+ */
713
+ export interface PerformanceInsightsReferenceMetric {
714
+ /**
715
+ * <p>A query to be processed on the metric.</p>
716
+ */
717
+ MetricQuery?: PerformanceInsightsMetricQuery;
718
+ }
719
+ export declare namespace PerformanceInsightsReferenceMetric {
720
+ /**
721
+ * @internal
722
+ */
723
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceMetric) => any;
724
+ }
725
+ /**
726
+ * <p>A reference value to compare Performance Insights metrics against to determine if the metrics
727
+ * demonstrate anomalous behavior.</p>
728
+ */
729
+ export interface PerformanceInsightsReferenceScalar {
730
+ /**
731
+ * <p>The reference value.</p>
732
+ */
733
+ Value?: number;
734
+ }
735
+ export declare namespace PerformanceInsightsReferenceScalar {
736
+ /**
737
+ * @internal
738
+ */
739
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
740
+ }
741
+ /**
742
+ * <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its console along with the actual metrics it
743
+ * analyzed. Compare these reference values to your actual metrics to help you understand anomalous behavior that DevOps Guru detected.</p>
744
+ */
745
+ export interface PerformanceInsightsReferenceComparisonValues {
746
+ /**
747
+ * <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This reference value is used
748
+ * to determine if an actual metric value should be considered anomalous.</p>
749
+ */
750
+ ReferenceScalar?: PerformanceInsightsReferenceScalar;
751
+ /**
752
+ * <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used
753
+ * to determine if an actual metric should be considered anomalous.</p>
754
+ */
755
+ ReferenceMetric?: PerformanceInsightsReferenceMetric;
756
+ }
757
+ export declare namespace PerformanceInsightsReferenceComparisonValues {
758
+ /**
759
+ * @internal
760
+ */
761
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
762
+ }
763
+ /**
764
+ * <p>Reference data used to evaluate Performance Insights to determine if its performance
765
+ * is anomalous or not.</p>
766
+ */
767
+ export interface PerformanceInsightsReferenceData {
768
+ /**
769
+ * <p>The name of the reference data.</p>
770
+ */
771
+ Name?: string;
772
+ /**
773
+ * <p>The specific reference values used to evaluate the Performance Insights. For more information, see
774
+ * <code>
775
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceComparisonValues.html">PerformanceInsightsReferenceComparisonValues</a>
776
+ * </code>.
777
+ * </p>
778
+ */
779
+ ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
780
+ }
781
+ export declare namespace PerformanceInsightsReferenceData {
782
+ /**
783
+ * @internal
784
+ */
785
+ const filterSensitiveLog: (obj: PerformanceInsightsReferenceData) => any;
786
+ }
787
+ /**
788
+ * <p>A statistic in a Performance Insights collection.</p>
789
+ */
790
+ export interface PerformanceInsightsStat {
791
+ /**
792
+ * <p>The statistic type.</p>
793
+ */
794
+ Type?: string;
795
+ /**
796
+ * <p>The value of the statistic.</p>
797
+ */
798
+ Value?: number;
799
+ }
800
+ export declare namespace PerformanceInsightsStat {
801
+ /**
802
+ * @internal
803
+ */
804
+ const filterSensitiveLog: (obj: PerformanceInsightsStat) => any;
805
+ }
806
+ /**
807
+ * <p>Details about Performance Insights metrics.</p>
808
+ *
809
+ * <p>Amazon RDS Performance Insights enables you to monitor and explore different
810
+ * dimensions of database load based on data captured from a running DB instance.
811
+ * DB load is measured as average active sessions. Performance Insights provides the
812
+ * data to API consumers as a two-dimensional time-series dataset. The time dimension
813
+ * provides DB load data for each time point in the queried time range. Each time point
814
+ * decomposes overall load in relation to the requested dimensions, measured at that
815
+ * time point. Examples include SQL, Wait event, User, and Host. </p>
816
+ *
817
+ * <ul>
818
+ * <li>
819
+ * <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html"> Amazon Aurora User Guide</a>.
820
+ * </p>
821
+ * </li>
822
+ * <li>
823
+ * <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html"> Amazon RDS User Guide</a>.
824
+ * </p>
825
+ * </li>
826
+ * </ul>
827
+ */
828
+ export interface PerformanceInsightsMetricsDetail {
829
+ /**
830
+ * <p>The name used for a specific Performance Insights metric.</p>
831
+ */
832
+ MetricDisplayName?: string;
833
+ /**
834
+ * <p>The unit of measure for a metric. For example, a session or a process.</p>
835
+ */
836
+ Unit?: string;
837
+ /**
838
+ * <p>A single query to be processed for the metric. For more information, see
839
+ * <code>
840
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
841
+ * </code>.</p>
842
+ */
843
+ MetricQuery?: PerformanceInsightsMetricQuery;
844
+ /**
845
+ * <p>
846
+ * For more information, see
847
+ * <code>
848
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
849
+ * </code>.
850
+ * </p>
851
+ */
852
+ ReferenceData?: PerformanceInsightsReferenceData[];
853
+ /**
854
+ * <p>The metric statistics during the anomalous period detected by DevOps Guru;</p>
855
+ */
856
+ StatsAtAnomaly?: PerformanceInsightsStat[];
857
+ /**
858
+ * <p>Typical metric statistics that are not considered anomalous. When DevOps Guru analyzes
859
+ * metrics, it compares them to <code>StatsAtBaseline</code> to help determine if they are
860
+ * anomalous.</p>
861
+ */
862
+ StatsAtBaseline?: PerformanceInsightsStat[];
863
+ }
864
+ export declare namespace PerformanceInsightsMetricsDetail {
865
+ /**
866
+ * @internal
867
+ */
868
+ const filterSensitiveLog: (obj: PerformanceInsightsMetricsDetail) => any;
869
+ }
438
870
  /**
439
871
  * <p> Details about the source of the anomalous operational data that triggered the
440
- * anomaly. The one supported source is Amazon CloudWatch metrics. </p>
872
+ * anomaly.</p>
441
873
  */
442
874
  export interface AnomalySourceDetails {
443
875
  /**
444
- * <p> An array of <code>CloudWatchMetricsDetail</code> object that contains information
445
- * about the analyzed metrics that displayed anomalous behavior. </p>
876
+ * <p>An array of <code>CloudWatchMetricsDetail</code> objects that contain information
877
+ * about analyzed CloudWatch metrics that show anomalous behavior. </p>
446
878
  */
447
879
  CloudWatchMetrics?: CloudWatchMetricsDetail[];
880
+ /**
881
+ * <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain information
882
+ * about analyzed Performance Insights metrics that show anomalous behavior.</p>
883
+ */
884
+ PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
448
885
  }
449
886
  export declare namespace AnomalySourceDetails {
450
887
  /**
@@ -477,6 +914,10 @@ export declare namespace AnomalyTimeRange {
477
914
  */
478
915
  const filterSensitiveLog: (obj: AnomalyTimeRange) => any;
479
916
  }
917
+ export declare enum AnomalyType {
918
+ CAUSAL = "CAUSAL",
919
+ CONTEXTUAL = "CONTEXTUAL"
920
+ }
480
921
  export interface DescribeAccountHealthRequest {
481
922
  }
482
923
  export declare namespace DescribeAccountHealthRequest {
@@ -611,10 +1052,82 @@ export declare namespace CloudFormationCollection {
611
1052
  */
612
1053
  const filterSensitiveLog: (obj: CloudFormationCollection) => any;
613
1054
  }
1055
+ /**
1056
+ * <p>A collection of Amazon Web Services stags.</p>
1057
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1058
+ * tagging, so you can assign the same tag to resources from different services to indicate
1059
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1060
+ * table resource that you assign to an Lambda function. For more information about
1061
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
1062
+ * best practices</a> whitepaper. </p>
1063
+ * <p>Each Amazon Web Services tag has two parts. </p>
1064
+ * <ul>
1065
+ * <li>
1066
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
1067
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
1068
+ * <i>keys</i> are case-sensitive.</p>
1069
+ * </li>
1070
+ * <li>
1071
+ * <p>An optional field known as a tag <i>value</i> (for example,
1072
+ * <code>111122223333</code>, <code>Production</code>, or a team
1073
+ * name). Omitting the tag <i>value</i> is the same as using an empty
1074
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1075
+ * case-sensitive.</p>
1076
+ * </li>
1077
+ * </ul>
1078
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
1079
+ * <important>
1080
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1081
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1082
+ * <code>Devops-guru-deployment-application</code> or
1083
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1084
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1085
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1086
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1087
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1088
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1089
+ * </important>
1090
+ */
1091
+ export interface TagCollection {
1092
+ /**
1093
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
1094
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
1095
+ * up your DevOps Guru application and analysis boundary.</p>
1096
+ * <important>
1097
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1098
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1099
+ * <code>Devops-guru-deployment-application</code> or
1100
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1101
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1102
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1103
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1104
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1105
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1106
+ * </important>
1107
+ */
1108
+ AppBoundaryKey: string | undefined;
1109
+ /**
1110
+ * <p>The values in an Amazon Web Services tag collection.</p>
1111
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
1112
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
1113
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
1114
+ * Omitting the tag <i>value</i> is the same as using an empty
1115
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1116
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
1117
+ */
1118
+ TagValues: string[] | undefined;
1119
+ }
1120
+ export declare namespace TagCollection {
1121
+ /**
1122
+ * @internal
1123
+ */
1124
+ const filterSensitiveLog: (obj: TagCollection) => any;
1125
+ }
614
1126
  /**
615
1127
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
616
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
617
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1128
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1129
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1130
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
618
1131
  */
619
1132
  export interface ResourceCollection {
620
1133
  /**
@@ -622,6 +1135,43 @@ export interface ResourceCollection {
622
1135
  * DevOps Guru analyzes. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
623
1136
  */
624
1137
  CloudFormation?: CloudFormationCollection;
1138
+ /**
1139
+ * <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
1140
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1141
+ * tagging, so you can assign the same tag to resources from different services to indicate
1142
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1143
+ * table resource that you assign to an Lambda function. For more information about
1144
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
1145
+ * best practices</a> whitepaper. </p>
1146
+ * <p>Each Amazon Web Services tag has two parts. </p>
1147
+ * <ul>
1148
+ * <li>
1149
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
1150
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
1151
+ * <i>keys</i> are case-sensitive.</p>
1152
+ * </li>
1153
+ * <li>
1154
+ * <p>An optional field known as a tag <i>value</i> (for example,
1155
+ * <code>111122223333</code>, <code>Production</code>, or a team
1156
+ * name). Omitting the tag <i>value</i> is the same as using an empty
1157
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1158
+ * case-sensitive.</p>
1159
+ * </li>
1160
+ * </ul>
1161
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
1162
+ * <important>
1163
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1164
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1165
+ * <code>Devops-guru-deployment-application</code> or
1166
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1167
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1168
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1169
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1170
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1171
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1172
+ * </important>
1173
+ */
1174
+ Tags?: TagCollection[];
625
1175
  }
626
1176
  export declare namespace ResourceCollection {
627
1177
  /**
@@ -639,7 +1189,10 @@ export interface ProactiveAnomaly {
639
1189
  */
640
1190
  Id?: string;
641
1191
  /**
642
- * <p> The severity of a proactive anomaly. </p>
1192
+ * <p>The severity of the anomaly. The severity of anomalies that generate
1193
+ * an insight determine that insight's severity. For more information, see
1194
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
1195
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
643
1196
  */
644
1197
  Severity?: AnomalySeverity | string;
645
1198
  /**
@@ -658,7 +1211,7 @@ export interface ProactiveAnomaly {
658
1211
  AnomalyTimeRange?: AnomalyTimeRange;
659
1212
  /**
660
1213
  * <p>
661
- * A <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1214
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
662
1215
  * </p>
663
1216
  */
664
1217
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -679,8 +1232,9 @@ export interface ProactiveAnomaly {
679
1232
  AssociatedInsightId?: string;
680
1233
  /**
681
1234
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
682
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
683
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1235
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1236
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1237
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
684
1238
  */
685
1239
  ResourceCollection?: ResourceCollection;
686
1240
  /**
@@ -705,7 +1259,10 @@ export interface ReactiveAnomaly {
705
1259
  */
706
1260
  Id?: string;
707
1261
  /**
708
- * <p>The severity of the anomaly. </p>
1262
+ * <p>The severity of the anomaly. The severity of anomalies that generate
1263
+ * an insight determine that insight's severity. For more information, see
1264
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
1265
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
709
1266
  */
710
1267
  Severity?: AnomalySeverity | string;
711
1268
  /**
@@ -720,7 +1277,7 @@ export interface ReactiveAnomaly {
720
1277
  AnomalyTimeRange?: AnomalyTimeRange;
721
1278
  /**
722
1279
  * <p>
723
- * A <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1280
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
724
1281
  * </p>
725
1282
  */
726
1283
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -736,10 +1293,42 @@ export interface ReactiveAnomaly {
736
1293
  AssociatedInsightId?: string;
737
1294
  /**
738
1295
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
739
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
740
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1296
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1297
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1298
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
741
1299
  */
742
1300
  ResourceCollection?: ResourceCollection;
1301
+ /**
1302
+ * <p>The type of the reactive anomaly. It can be one of the following types.</p>
1303
+ * <ul>
1304
+ * <li>
1305
+ * <p>
1306
+ * <code>CAUSAL</code> - the anomaly can cause a new insight.</p>
1307
+ * </li>
1308
+ * <li>
1309
+ * <p>
1310
+ * <code>CONTEXTUAL</code> - the anomaly contains additional information about an insight or its causal anomaly.</p>
1311
+ * </li>
1312
+ * </ul>
1313
+ */
1314
+ Type?: AnomalyType | string;
1315
+ /**
1316
+ * <p>The name of the reactive anomaly.</p>
1317
+ */
1318
+ Name?: string;
1319
+ /**
1320
+ * <p>A description of the reactive anomaly.</p>
1321
+ */
1322
+ Description?: string;
1323
+ /**
1324
+ * <p>The ID of the causal anomaly that is associated with this
1325
+ * reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
1326
+ */
1327
+ CausalAnomalyId?: string;
1328
+ /**
1329
+ * <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
1330
+ */
1331
+ AnomalyResources?: AnomalyResource[];
743
1332
  }
744
1333
  export declare namespace ReactiveAnomaly {
745
1334
  /**
@@ -749,11 +1338,11 @@ export declare namespace ReactiveAnomaly {
749
1338
  }
750
1339
  export interface DescribeAnomalyResponse {
751
1340
  /**
752
- * <p> A <code>ReactiveAnomaly</code> object that represents the requested anomaly. </p>
1341
+ * <p> A <code>ProactiveAnomaly</code> object that represents the requested anomaly. </p>
753
1342
  */
754
1343
  ProactiveAnomaly?: ProactiveAnomaly;
755
1344
  /**
756
- * <p> A <code>ProactiveAnomaly</code> object that represents the requested anomaly. </p>
1345
+ * <p> A <code>ReactiveAnomaly</code> object that represents the requested anomaly. </p>
757
1346
  */
758
1347
  ReactiveAnomaly?: ReactiveAnomaly;
759
1348
  }
@@ -872,7 +1461,9 @@ export interface ProactiveInsight {
872
1461
  */
873
1462
  Name?: string;
874
1463
  /**
875
- * <p>The severity of the proactive insight. </p>
1464
+ * <p>The severity of the insight. For more information, see
1465
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
1466
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
876
1467
  */
877
1468
  Severity?: InsightSeverity | string;
878
1469
  /**
@@ -891,8 +1482,9 @@ export interface ProactiveInsight {
891
1482
  PredictionTimeRange?: PredictionTimeRange;
892
1483
  /**
893
1484
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
894
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
895
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1485
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1486
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1487
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
896
1488
  */
897
1489
  ResourceCollection?: ResourceCollection;
898
1490
  /**
@@ -921,7 +1513,9 @@ export interface ReactiveInsight {
921
1513
  */
922
1514
  Name?: string;
923
1515
  /**
924
- * <p> The severity of a reactive insight. </p>
1516
+ * <p>The severity of the insight. For more information, see
1517
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
1518
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
925
1519
  */
926
1520
  Severity?: InsightSeverity | string;
927
1521
  /**
@@ -935,8 +1529,9 @@ export interface ReactiveInsight {
935
1529
  InsightTimeRange?: InsightTimeRange;
936
1530
  /**
937
1531
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
938
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
939
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1532
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1533
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1534
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
940
1535
  */
941
1536
  ResourceCollection?: ResourceCollection;
942
1537
  /**
@@ -1060,13 +1655,15 @@ export declare namespace DescribeOrganizationOverviewResponse {
1060
1655
  export declare enum OrganizationResourceCollectionType {
1061
1656
  AWS_ACCOUNT = "AWS_ACCOUNT",
1062
1657
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
1063
- AWS_SERVICE = "AWS_SERVICE"
1658
+ AWS_SERVICE = "AWS_SERVICE",
1659
+ AWS_TAGS = "AWS_TAGS"
1064
1660
  }
1065
1661
  export interface DescribeOrganizationResourceCollectionHealthRequest {
1066
1662
  /**
1067
1663
  * <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
1068
- * are defined. The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1069
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1664
+ * are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1665
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1666
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1070
1667
  */
1071
1668
  OrganizationResourceCollectionType: OrganizationResourceCollectionType | string | undefined;
1072
1669
  /**
@@ -1208,10 +1805,55 @@ export declare namespace ServiceHealth {
1208
1805
  */
1209
1806
  const filterSensitiveLog: (obj: ServiceHealth) => any;
1210
1807
  }
1808
+ /**
1809
+ * <p> Information about the health of Amazon Web Services resources in your account that are specified by
1810
+ * an Amazon Web Services tag <i>key</i>. </p>
1811
+ */
1812
+ export interface TagHealth {
1813
+ /**
1814
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
1815
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
1816
+ * up your DevOps Guru application and analysis boundary.</p>
1817
+ * <important>
1818
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1819
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1820
+ * <code>Devops-guru-deployment-application</code> or
1821
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1822
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1823
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1824
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1825
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1826
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1827
+ * </important>
1828
+ */
1829
+ AppBoundaryKey?: string;
1830
+ /**
1831
+ * <p>The value in an Amazon Web Services tag.</p>
1832
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
1833
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
1834
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
1835
+ * Omitting the tag <i>value</i> is the same as using an empty
1836
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1837
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
1838
+ */
1839
+ TagValue?: string;
1840
+ /**
1841
+ * <p>Information about the health of the Amazon Web Services resources in your account that are
1842
+ * specified by an Amazon Web Services tag, including the number of open proactive, open reactive
1843
+ * insights, and the Mean Time to Recover (MTTR) of closed insights. </p>
1844
+ */
1845
+ Insight?: InsightHealth;
1846
+ }
1847
+ export declare namespace TagHealth {
1848
+ /**
1849
+ * @internal
1850
+ */
1851
+ const filterSensitiveLog: (obj: TagHealth) => any;
1852
+ }
1211
1853
  export interface DescribeOrganizationResourceCollectionHealthResponse {
1212
1854
  /**
1213
1855
  * <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
1214
- * <code>InsightHealthOverview</code> object with the requested system health
1856
+ * <code>InsightHealthOverview</code> object with the requested system health
1215
1857
  * information.</p>
1216
1858
  */
1217
1859
  CloudFormation?: CloudFormationHealth[];
@@ -1229,6 +1871,42 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
1229
1871
  * the next page of results for this operation. If there are no more pages, this value is null.</p>
1230
1872
  */
1231
1873
  NextToken?: string;
1874
+ /**
1875
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1876
+ * tagging, so you can assign the same tag to resources from different services to indicate
1877
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1878
+ * table resource that you assign to an Lambda function. For more information about
1879
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
1880
+ * best practices</a> whitepaper. </p>
1881
+ * <p>Each Amazon Web Services tag has two parts. </p>
1882
+ * <ul>
1883
+ * <li>
1884
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
1885
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
1886
+ * <i>keys</i> are case-sensitive.</p>
1887
+ * </li>
1888
+ * <li>
1889
+ * <p>An optional field known as a tag <i>value</i> (for example,
1890
+ * <code>111122223333</code>, <code>Production</code>, or a team
1891
+ * name). Omitting the tag <i>value</i> is the same as using an empty
1892
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1893
+ * case-sensitive.</p>
1894
+ * </li>
1895
+ * </ul>
1896
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
1897
+ * <important>
1898
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1899
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1900
+ * <code>Devops-guru-deployment-application</code> or
1901
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1902
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1903
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1904
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1905
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1906
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1907
+ * </important>
1908
+ */
1909
+ Tags?: TagHealth[];
1232
1910
  }
1233
1911
  export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
1234
1912
  /**
@@ -1238,13 +1916,15 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
1238
1916
  }
1239
1917
  export declare enum ResourceCollectionType {
1240
1918
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
1241
- AWS_SERVICE = "AWS_SERVICE"
1919
+ AWS_SERVICE = "AWS_SERVICE",
1920
+ AWS_TAGS = "AWS_TAGS"
1242
1921
  }
1243
1922
  export interface DescribeResourceCollectionHealthRequest {
1244
1923
  /**
1245
1924
  * <p> An Amazon Web Services resource collection type. This type specifies how analyzed Amazon Web Services resources
1246
- * are defined. The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1247
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1925
+ * are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1926
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1927
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1248
1928
  */
1249
1929
  ResourceCollectionType: ResourceCollectionType | string | undefined;
1250
1930
  /**
@@ -1265,7 +1945,7 @@ export interface DescribeResourceCollectionHealthResponse {
1265
1945
  * <code>InsightHealthOverview</code> object with the requested system health
1266
1946
  * information. </p>
1267
1947
  */
1268
- CloudFormation: CloudFormationHealth[] | undefined;
1948
+ CloudFormation?: CloudFormationHealth[];
1269
1949
  /**
1270
1950
  * <p>An array of <code>ServiceHealth</code> objects that describes the health of the Amazon Web Services
1271
1951
  * services associated with the resources in the collection.</p>
@@ -1276,6 +1956,43 @@ export interface DescribeResourceCollectionHealthResponse {
1276
1956
  * the next page of results for this operation. If there are no more pages, this value is null.</p>
1277
1957
  */
1278
1958
  NextToken?: string;
1959
+ /**
1960
+ * <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
1961
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1962
+ * tagging, so you can assign the same tag to resources from different services to indicate
1963
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1964
+ * table resource that you assign to an Lambda function. For more information about
1965
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
1966
+ * best practices</a> whitepaper. </p>
1967
+ * <p>Each Amazon Web Services tag has two parts. </p>
1968
+ * <ul>
1969
+ * <li>
1970
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
1971
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
1972
+ * <i>keys</i> are case-sensitive.</p>
1973
+ * </li>
1974
+ * <li>
1975
+ * <p>An optional field known as a tag <i>value</i> (for example,
1976
+ * <code>111122223333</code>, <code>Production</code>, or a team
1977
+ * name). Omitting the tag <i>value</i> is the same as using an empty
1978
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1979
+ * case-sensitive.</p>
1980
+ * </li>
1981
+ * </ul>
1982
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
1983
+ * <important>
1984
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1985
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1986
+ * <code>Devops-guru-deployment-application</code> or
1987
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1988
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1989
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1990
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1991
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1992
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1993
+ * </important>
1994
+ */
1995
+ Tags?: TagHealth[];
1279
1996
  }
1280
1997
  export declare namespace DescribeResourceCollectionHealthResponse {
1281
1998
  /**
@@ -1422,6 +2139,49 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
1422
2139
  */
1423
2140
  const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
1424
2141
  }
2142
+ /**
2143
+ * <p>Information about a collection of Amazon Web Services resources that are identified by an
2144
+ * Amazon Web Services tag. This collection of resources is used to create a monthly cost estimate
2145
+ * for DevOps Guru to analyze Amazon Web Services resources. The maximum number of tags you can specify for a
2146
+ * cost estimate is one. The estimate created is for the cost to analyze the Amazon Web Services
2147
+ * 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
2148
+ * <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2149
+ */
2150
+ export interface TagCostEstimationResourceCollectionFilter {
2151
+ /**
2152
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
2153
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
2154
+ * up your DevOps Guru application and analysis boundary.</p>
2155
+ * <important>
2156
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2157
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2158
+ * <code>Devops-guru-deployment-application</code> or
2159
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2160
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2161
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2162
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2163
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2164
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2165
+ * </important>
2166
+ */
2167
+ AppBoundaryKey: string | undefined;
2168
+ /**
2169
+ * <p>The values in an Amazon Web Services tag collection.</p>
2170
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2171
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2172
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2173
+ * Omitting the tag <i>value</i> is the same as using an empty
2174
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2175
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
2176
+ */
2177
+ TagValues: string[] | undefined;
2178
+ }
2179
+ export declare namespace TagCostEstimationResourceCollectionFilter {
2180
+ /**
2181
+ * @internal
2182
+ */
2183
+ const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
2184
+ }
1425
2185
  /**
1426
2186
  * <p>Information about a filter used to specify which Amazon Web Services resources are analyzed to
1427
2187
  * create a monthly DevOps Guru cost estimate. For more information,
@@ -1435,6 +2195,44 @@ export interface CostEstimationResourceCollectionFilter {
1435
2195
  * used to create a monthly estimate for DevOps Guru.</p>
1436
2196
  */
1437
2197
  CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
2198
+ /**
2199
+ * <p>The Amazon Web Services tags used to filter the resource collection that is used for
2200
+ * a cost estimate.</p>
2201
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2202
+ * tagging, so you can assign the same tag to resources from different services to indicate
2203
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2204
+ * table resource that you assign to an Lambda function. For more information about
2205
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
2206
+ * best practices</a> whitepaper. </p>
2207
+ * <p>Each Amazon Web Services tag has two parts. </p>
2208
+ * <ul>
2209
+ * <li>
2210
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
2211
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
2212
+ * <i>keys</i> are case-sensitive.</p>
2213
+ * </li>
2214
+ * <li>
2215
+ * <p>An optional field known as a tag <i>value</i> (for example,
2216
+ * <code>111122223333</code>, <code>Production</code>, or a team
2217
+ * name). Omitting the tag <i>value</i> is the same as using an empty
2218
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2219
+ * case-sensitive.</p>
2220
+ * </li>
2221
+ * </ul>
2222
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
2223
+ * <important>
2224
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2225
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2226
+ * <code>Devops-guru-deployment-application</code> or
2227
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2228
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2229
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2230
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2231
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2232
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2233
+ * </important>
2234
+ */
2235
+ Tags?: TagCostEstimationResourceCollectionFilter[];
1438
2236
  }
1439
2237
  export declare namespace CostEstimationResourceCollectionFilter {
1440
2238
  /**
@@ -1540,6 +2338,45 @@ export declare namespace CloudFormationCollectionFilter {
1540
2338
  */
1541
2339
  const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
1542
2340
  }
2341
+ /**
2342
+ * <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights generated from
2343
+ * only resources that contain the tags in the tag collection.</p>
2344
+ */
2345
+ export interface TagCollectionFilter {
2346
+ /**
2347
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
2348
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
2349
+ * up your DevOps Guru application and analysis boundary.</p>
2350
+ * <important>
2351
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2352
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2353
+ * <code>Devops-guru-deployment-application</code> or
2354
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2355
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2356
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2357
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2358
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2359
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2360
+ * </important>
2361
+ */
2362
+ AppBoundaryKey: string | undefined;
2363
+ /**
2364
+ * <p>The values in an Amazon Web Services tag collection.</p>
2365
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2366
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2367
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2368
+ * Omitting the tag <i>value</i> is the same as using an empty
2369
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2370
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
2371
+ */
2372
+ TagValues: string[] | undefined;
2373
+ }
2374
+ export declare namespace TagCollectionFilter {
2375
+ /**
2376
+ * @internal
2377
+ */
2378
+ const filterSensitiveLog: (obj: TagCollectionFilter) => any;
2379
+ }
1543
2380
  /**
1544
2381
  * <p> Information about a filter used to specify which Amazon Web Services resources are analyzed for
1545
2382
  * anomalous behavior by DevOps Guru. </p>
@@ -1552,6 +2389,43 @@ export interface ResourceCollectionFilter {
1552
2389
  * <i>Amazon Web Services CloudFormation User Guide</i>. </p>
1553
2390
  */
1554
2391
  CloudFormation?: CloudFormationCollectionFilter;
2392
+ /**
2393
+ * <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
2394
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2395
+ * tagging, so you can assign the same tag to resources from different services to indicate
2396
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2397
+ * table resource that you assign to an Lambda function. For more information about
2398
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
2399
+ * best practices</a> whitepaper. </p>
2400
+ * <p>Each Amazon Web Services tag has two parts. </p>
2401
+ * <ul>
2402
+ * <li>
2403
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
2404
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
2405
+ * <i>keys</i> are case-sensitive.</p>
2406
+ * </li>
2407
+ * <li>
2408
+ * <p>An optional field known as a tag <i>value</i> (for example,
2409
+ * <code>111122223333</code>, <code>Production</code>, or a team
2410
+ * name). Omitting the tag <i>value</i> is the same as using an empty
2411
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2412
+ * case-sensitive.</p>
2413
+ * </li>
2414
+ * </ul>
2415
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
2416
+ * <important>
2417
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2418
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2419
+ * <code>Devops-guru-deployment-application</code> or
2420
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2421
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2422
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2423
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2424
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2425
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2426
+ * </important>
2427
+ */
2428
+ Tags?: TagCollectionFilter[];
1555
2429
  }
1556
2430
  export declare namespace ResourceCollectionFilter {
1557
2431
  /**
@@ -1562,8 +2436,9 @@ export declare namespace ResourceCollectionFilter {
1562
2436
  export interface GetResourceCollectionResponse {
1563
2437
  /**
1564
2438
  * <p> The requested list of Amazon Web Services resource collections.
1565
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1566
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2439
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2440
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2441
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1567
2442
  */
1568
2443
  ResourceCollection?: ResourceCollectionFilter;
1569
2444
  /**
@@ -1640,7 +2515,10 @@ export interface ProactiveAnomalySummary {
1640
2515
  */
1641
2516
  Id?: string;
1642
2517
  /**
1643
- * <p>The severity of the anomaly.</p>
2518
+ * <p>The severity of the anomaly. The severity of anomalies that generate
2519
+ * an insight determine that insight's severity. For more information, see
2520
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
2521
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
1644
2522
  */
1645
2523
  Severity?: AnomalySeverity | string;
1646
2524
  /**
@@ -1659,7 +2537,7 @@ export interface ProactiveAnomalySummary {
1659
2537
  AnomalyTimeRange?: AnomalyTimeRange;
1660
2538
  /**
1661
2539
  * <p>
1662
- * A <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
2540
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1663
2541
  * </p>
1664
2542
  */
1665
2543
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -1680,8 +2558,9 @@ export interface ProactiveAnomalySummary {
1680
2558
  AssociatedInsightId?: string;
1681
2559
  /**
1682
2560
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
1683
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1684
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2561
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2562
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2563
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1685
2564
  */
1686
2565
  ResourceCollection?: ResourceCollection;
1687
2566
  /**
@@ -1707,7 +2586,10 @@ export interface ReactiveAnomalySummary {
1707
2586
  */
1708
2587
  Id?: string;
1709
2588
  /**
1710
- * <p> The severity of the reactive anomaly. </p>
2589
+ * <p>The severity of the anomaly. The severity of anomalies that generate
2590
+ * an insight determine that insight's severity. For more information, see
2591
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
2592
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
1711
2593
  */
1712
2594
  Severity?: AnomalySeverity | string;
1713
2595
  /**
@@ -1722,7 +2604,7 @@ export interface ReactiveAnomalySummary {
1722
2604
  AnomalyTimeRange?: AnomalyTimeRange;
1723
2605
  /**
1724
2606
  * <p>
1725
- * A <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
2607
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1726
2608
  * </p>
1727
2609
  */
1728
2610
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -1738,10 +2620,42 @@ export interface ReactiveAnomalySummary {
1738
2620
  AssociatedInsightId?: string;
1739
2621
  /**
1740
2622
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
1741
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1742
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2623
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2624
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2625
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1743
2626
  */
1744
2627
  ResourceCollection?: ResourceCollection;
2628
+ /**
2629
+ * <p>The type of the reactive anomaly. It can be one of the following types.</p>
2630
+ * <ul>
2631
+ * <li>
2632
+ * <p>
2633
+ * <code>CAUSAL</code> - the anomaly can cause a new insight.</p>
2634
+ * </li>
2635
+ * <li>
2636
+ * <p>
2637
+ * <code>CONTEXTUAL</code> - the anomaly contains additional information about an insight or its causal anomaly.</p>
2638
+ * </li>
2639
+ * </ul>
2640
+ */
2641
+ Type?: AnomalyType | string;
2642
+ /**
2643
+ * <p>The name of the reactive anomaly.</p>
2644
+ */
2645
+ Name?: string;
2646
+ /**
2647
+ * <p>A description of the reactive anomaly.</p>
2648
+ */
2649
+ Description?: string;
2650
+ /**
2651
+ * <p>The ID of the causal anomaly that is associated with this
2652
+ * reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
2653
+ */
2654
+ CausalAnomalyId?: string;
2655
+ /**
2656
+ * <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
2657
+ */
2658
+ AnomalyResources?: AnomalyResource[];
1745
2659
  }
1746
2660
  export declare namespace ReactiveAnomalySummary {
1747
2661
  /**
@@ -1833,8 +2747,9 @@ export interface ListEventsFilters {
1833
2747
  DataSource?: EventDataSource | string;
1834
2748
  /**
1835
2749
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
1836
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1837
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2750
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2751
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2752
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1838
2753
  */
1839
2754
  ResourceCollection?: ResourceCollection;
1840
2755
  }
@@ -1904,8 +2819,9 @@ export declare namespace EventResource {
1904
2819
  export interface Event {
1905
2820
  /**
1906
2821
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
1907
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
1908
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2822
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2823
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2824
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
1909
2825
  */
1910
2826
  ResourceCollection?: ResourceCollection;
1911
2827
  /**
@@ -2125,7 +3041,9 @@ export interface ProactiveInsightSummary {
2125
3041
  */
2126
3042
  Name?: string;
2127
3043
  /**
2128
- * <p>The severity of the proactive insight. </p>
3044
+ * <p>The severity of the insight. For more information, see
3045
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3046
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2129
3047
  */
2130
3048
  Severity?: InsightSeverity | string;
2131
3049
  /**
@@ -2144,14 +3062,20 @@ export interface ProactiveInsightSummary {
2144
3062
  PredictionTimeRange?: PredictionTimeRange;
2145
3063
  /**
2146
3064
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2147
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2148
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3065
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3066
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3067
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2149
3068
  */
2150
3069
  ResourceCollection?: ResourceCollection;
2151
3070
  /**
2152
3071
  * <p>A collection of the names of Amazon Web Services services.</p>
2153
3072
  */
2154
3073
  ServiceCollection?: ServiceCollection;
3074
+ /**
3075
+ * <p>The Amazon Resource Names (ARNs)
3076
+ * of the Amazon Web Services resources that generated this insight.</p>
3077
+ */
3078
+ AssociatedResourceArns?: string[];
2155
3079
  }
2156
3080
  export declare namespace ProactiveInsightSummary {
2157
3081
  /**
@@ -2174,7 +3098,9 @@ export interface ReactiveInsightSummary {
2174
3098
  */
2175
3099
  Name?: string;
2176
3100
  /**
2177
- * <p> The severity of a reactive insight. </p>
3101
+ * <p>The severity of the insight. For more information, see
3102
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3103
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2178
3104
  */
2179
3105
  Severity?: InsightSeverity | string;
2180
3106
  /**
@@ -2188,14 +3114,20 @@ export interface ReactiveInsightSummary {
2188
3114
  InsightTimeRange?: InsightTimeRange;
2189
3115
  /**
2190
3116
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2191
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2192
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3117
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3118
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3119
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2193
3120
  */
2194
3121
  ResourceCollection?: ResourceCollection;
2195
3122
  /**
2196
3123
  * <p>A collection of the names of Amazon Web Services services.</p>
2197
3124
  */
2198
3125
  ServiceCollection?: ServiceCollection;
3126
+ /**
3127
+ * <p>The Amazon Resource Names (ARNs)
3128
+ * of the Amazon Web Services resources that generated this insight.</p>
3129
+ */
3130
+ AssociatedResourceArns?: string[];
2199
3131
  }
2200
3132
  export declare namespace ReactiveInsightSummary {
2201
3133
  /**
@@ -2316,7 +3248,7 @@ export declare namespace ListOrganizationInsightsRequest {
2316
3248
  }
2317
3249
  /**
2318
3250
  * <p>Details about a proactive insight. This object is returned by
2319
- * <code>DescribeInsight</code>.</p>
3251
+ * <code>DescribeInsight</code>.</p>
2320
3252
  */
2321
3253
  export interface ProactiveOrganizationInsightSummary {
2322
3254
  /**
@@ -2336,7 +3268,9 @@ export interface ProactiveOrganizationInsightSummary {
2336
3268
  */
2337
3269
  Name?: string;
2338
3270
  /**
2339
- * <p> An array of severity values used to search for insights. </p>
3271
+ * <p> An array of severity values used to search for insights. For more information, see
3272
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3273
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2340
3274
  */
2341
3275
  Severity?: InsightSeverity | string;
2342
3276
  /**
@@ -2355,8 +3289,9 @@ export interface ProactiveOrganizationInsightSummary {
2355
3289
  PredictionTimeRange?: PredictionTimeRange;
2356
3290
  /**
2357
3291
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2358
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2359
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3292
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3293
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3294
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2360
3295
  */
2361
3296
  ResourceCollection?: ResourceCollection;
2362
3297
  /**
@@ -2372,7 +3307,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
2372
3307
  }
2373
3308
  /**
2374
3309
  * <p>Information about a reactive insight. This object is returned by
2375
- * <code>DescribeInsight</code>.</p>
3310
+ * <code>DescribeInsight</code>.</p>
2376
3311
  */
2377
3312
  export interface ReactiveOrganizationInsightSummary {
2378
3313
  /**
@@ -2380,7 +3315,7 @@ export interface ReactiveOrganizationInsightSummary {
2380
3315
  */
2381
3316
  Id?: string;
2382
3317
  /**
2383
- * <p>The ID of the Amazon Web Services account.</p>
3318
+ * <p>The ID of the Amazon Web Services account. </p>
2384
3319
  */
2385
3320
  AccountId?: string;
2386
3321
  /**
@@ -2392,7 +3327,9 @@ export interface ReactiveOrganizationInsightSummary {
2392
3327
  */
2393
3328
  Name?: string;
2394
3329
  /**
2395
- * <p> An array of severity values used to search for insights. </p>
3330
+ * <p> An array of severity values used to search for insights. For more information, see
3331
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3332
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2396
3333
  */
2397
3334
  Severity?: InsightSeverity | string;
2398
3335
  /**
@@ -2406,8 +3343,9 @@ export interface ReactiveOrganizationInsightSummary {
2406
3343
  InsightTimeRange?: InsightTimeRange;
2407
3344
  /**
2408
3345
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2409
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2410
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3346
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3347
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3348
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2411
3349
  */
2412
3350
  ResourceCollection?: ResourceCollection;
2413
3351
  /**
@@ -2491,7 +3429,11 @@ export interface RecommendationRelatedAnomalyResource {
2491
3429
  */
2492
3430
  Name?: string;
2493
3431
  /**
2494
- * <p> The type of the resource. </p>
3432
+ * <p> The type of the resource. Resource types take the same form that is
3433
+ * used by Amazon Web Services CloudFormation resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
3434
+ * For example, <code>AWS::RDS::DBCluster</code>. For more information, see
3435
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services resource and
3436
+ * property types reference</a> in the <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2495
3437
  */
2496
3438
  Type?: string;
2497
3439
  }
@@ -2552,6 +3494,10 @@ export interface RecommendationRelatedAnomaly {
2552
3494
  * For example, details in Amazon CloudWatch metrics. </p>
2553
3495
  */
2554
3496
  SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
3497
+ /**
3498
+ * <p>The ID of an anomaly that generated the insight with this recommendation.</p>
3499
+ */
3500
+ AnomalyId?: string;
2555
3501
  }
2556
3502
  export declare namespace RecommendationRelatedAnomaly {
2557
3503
  /**
@@ -2712,8 +3658,9 @@ export interface SearchInsightsFilters {
2712
3658
  Statuses?: (InsightStatus | string)[];
2713
3659
  /**
2714
3660
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2715
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2716
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3661
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3662
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3663
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2717
3664
  */
2718
3665
  ResourceCollection?: ResourceCollection;
2719
3666
  /**
@@ -2796,8 +3743,9 @@ export interface SearchOrganizationInsightsFilters {
2796
3743
  Statuses?: (InsightStatus | string)[];
2797
3744
  /**
2798
3745
  * <p> A collection of Amazon Web Services resources supported by DevOps Guru.
2799
- * The one type of Amazon Web Services resource collection supported is Amazon Web Services CloudFormation stacks. DevOps Guru can be configured to analyze
2800
- * only the Amazon Web Services resources that are defined in the stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3746
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3747
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3748
+ * the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2801
3749
  */
2802
3750
  ResourceCollection?: ResourceCollection;
2803
3751
  /**
@@ -2838,7 +3786,7 @@ export interface SearchOrganizationInsightsRequest {
2838
3786
  NextToken?: string;
2839
3787
  /**
2840
3788
  * <p> The type of insights you are searching for (<code>REACTIVE</code> or
2841
- * <code>PROACTIVE</code>). </p>
3789
+ * <code>PROACTIVE</code>). </p>
2842
3790
  */
2843
3791
  Type: InsightType | string | undefined;
2844
3792
  }
@@ -2916,14 +3864,90 @@ export declare namespace UpdateCloudFormationCollectionFilter {
2916
3864
  */
2917
3865
  const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
2918
3866
  }
3867
+ /**
3868
+ * <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
3869
+ * <i>key</i>/<i>value</i> pair.</p>
3870
+ */
3871
+ export interface UpdateTagCollectionFilter {
3872
+ /**
3873
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
3874
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
3875
+ * up your DevOps Guru application and analysis boundary.</p>
3876
+ * <important>
3877
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
3878
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
3879
+ * <code>Devops-guru-deployment-application</code> or
3880
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
3881
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
3882
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
3883
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
3884
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
3885
+ * <code>Devops-Guru-production-application/containers</code>.</p>
3886
+ * </important>
3887
+ */
3888
+ AppBoundaryKey: string | undefined;
3889
+ /**
3890
+ * <p>The values in an Amazon Web Services tag collection.</p>
3891
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
3892
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
3893
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
3894
+ * Omitting the tag <i>value</i> is the same as using an empty
3895
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
3896
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
3897
+ */
3898
+ TagValues: string[] | undefined;
3899
+ }
3900
+ export declare namespace UpdateTagCollectionFilter {
3901
+ /**
3902
+ * @internal
3903
+ */
3904
+ const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
3905
+ }
2919
3906
  /**
2920
3907
  * <p> Contains information used to update a collection of Amazon Web Services resources. </p>
2921
3908
  */
2922
3909
  export interface UpdateResourceCollectionFilter {
2923
3910
  /**
2924
- * <p> An collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3911
+ * <p> A collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2925
3912
  */
2926
3913
  CloudFormation?: UpdateCloudFormationCollectionFilter;
3914
+ /**
3915
+ * <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
3916
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
3917
+ * tagging, so you can assign the same tag to resources from different services to indicate
3918
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
3919
+ * table resource that you assign to an Lambda function. For more information about
3920
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
3921
+ * best practices</a> whitepaper. </p>
3922
+ * <p>Each Amazon Web Services tag has two parts. </p>
3923
+ * <ul>
3924
+ * <li>
3925
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
3926
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
3927
+ * <i>keys</i> are case-sensitive.</p>
3928
+ * </li>
3929
+ * <li>
3930
+ * <p>An optional field known as a tag <i>value</i> (for example,
3931
+ * <code>111122223333</code>, <code>Production</code>, or a team
3932
+ * name). Omitting the tag <i>value</i> is the same as using an empty
3933
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
3934
+ * case-sensitive.</p>
3935
+ * </li>
3936
+ * </ul>
3937
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
3938
+ * <important>
3939
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
3940
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
3941
+ * <code>Devops-guru-deployment-application</code> or
3942
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
3943
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
3944
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
3945
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
3946
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
3947
+ * <code>Devops-Guru-production-application/containers</code>.</p>
3948
+ * </important>
3949
+ */
3950
+ Tags?: UpdateTagCollectionFilter[];
2927
3951
  }
2928
3952
  export declare namespace UpdateResourceCollectionFilter {
2929
3953
  /**