@aws-sdk/client-devops-guru 3.43.0 → 3.44.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
  /**
@@ -1065,8 +1660,9 @@ export declare enum OrganizationResourceCollectionType {
1065
1660
  export interface DescribeOrganizationResourceCollectionHealthRequest {
1066
1661
  /**
1067
1662
  * <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>
1663
+ * are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1664
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1665
+ * 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
1666
  */
1071
1667
  OrganizationResourceCollectionType: OrganizationResourceCollectionType | string | undefined;
1072
1668
  /**
@@ -1211,7 +1807,7 @@ export declare namespace ServiceHealth {
1211
1807
  export interface DescribeOrganizationResourceCollectionHealthResponse {
1212
1808
  /**
1213
1809
  * <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
1214
- * <code>InsightHealthOverview</code> object with the requested system health
1810
+ * <code>InsightHealthOverview</code> object with the requested system health
1215
1811
  * information.</p>
1216
1812
  */
1217
1813
  CloudFormation?: CloudFormationHealth[];
@@ -1238,13 +1834,15 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
1238
1834
  }
1239
1835
  export declare enum ResourceCollectionType {
1240
1836
  AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
1241
- AWS_SERVICE = "AWS_SERVICE"
1837
+ AWS_SERVICE = "AWS_SERVICE",
1838
+ AWS_TAGS = "AWS_TAGS"
1242
1839
  }
1243
1840
  export interface DescribeResourceCollectionHealthRequest {
1244
1841
  /**
1245
1842
  * <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>
1843
+ * are defined. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
1844
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
1845
+ * 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
1846
  */
1249
1847
  ResourceCollectionType: ResourceCollectionType | string | undefined;
1250
1848
  /**
@@ -1259,13 +1857,58 @@ export declare namespace DescribeResourceCollectionHealthRequest {
1259
1857
  */
1260
1858
  const filterSensitiveLog: (obj: DescribeResourceCollectionHealthRequest) => any;
1261
1859
  }
1860
+ /**
1861
+ * <p> Information about the health of Amazon Web Services resources in your account that are specified by
1862
+ * an Amazon Web Services tag <i>key</i>. </p>
1863
+ */
1864
+ export interface TagHealth {
1865
+ /**
1866
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
1867
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
1868
+ * up your DevOps Guru application and analysis boundary.</p>
1869
+ * <important>
1870
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1871
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1872
+ * <code>Devops-guru-deployment-application</code> or
1873
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1874
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1875
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1876
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1877
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1878
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1879
+ * </important>
1880
+ */
1881
+ AppBoundaryKey?: string;
1882
+ /**
1883
+ * <p>The value in an Amazon Web Services tag.</p>
1884
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
1885
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
1886
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
1887
+ * Omitting the tag <i>value</i> is the same as using an empty
1888
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1889
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
1890
+ */
1891
+ TagValue?: string;
1892
+ /**
1893
+ * <p>Information about the health of the Amazon Web Services resources in your account that are
1894
+ * specified by an Amazon Web Services tag, including the number of open proactive, open reactive
1895
+ * insights, and the Mean Time to Recover (MTTR) of closed insights. </p>
1896
+ */
1897
+ Insight?: InsightHealth;
1898
+ }
1899
+ export declare namespace TagHealth {
1900
+ /**
1901
+ * @internal
1902
+ */
1903
+ const filterSensitiveLog: (obj: TagHealth) => any;
1904
+ }
1262
1905
  export interface DescribeResourceCollectionHealthResponse {
1263
1906
  /**
1264
1907
  * <p> The returned <code>CloudFormationHealthOverview</code> object that contains an
1265
1908
  * <code>InsightHealthOverview</code> object with the requested system health
1266
1909
  * information. </p>
1267
1910
  */
1268
- CloudFormation: CloudFormationHealth[] | undefined;
1911
+ CloudFormation?: CloudFormationHealth[];
1269
1912
  /**
1270
1913
  * <p>An array of <code>ServiceHealth</code> objects that describes the health of the Amazon Web Services
1271
1914
  * services associated with the resources in the collection.</p>
@@ -1276,6 +1919,43 @@ export interface DescribeResourceCollectionHealthResponse {
1276
1919
  * the next page of results for this operation. If there are no more pages, this value is null.</p>
1277
1920
  */
1278
1921
  NextToken?: string;
1922
+ /**
1923
+ * <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
1924
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
1925
+ * tagging, so you can assign the same tag to resources from different services to indicate
1926
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
1927
+ * table resource that you assign to an Lambda function. For more information about
1928
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
1929
+ * best practices</a> whitepaper. </p>
1930
+ * <p>Each Amazon Web Services tag has two parts. </p>
1931
+ * <ul>
1932
+ * <li>
1933
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
1934
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
1935
+ * <i>keys</i> are case-sensitive.</p>
1936
+ * </li>
1937
+ * <li>
1938
+ * <p>An optional field known as a tag <i>value</i> (for example,
1939
+ * <code>111122223333</code>, <code>Production</code>, or a team
1940
+ * name). Omitting the tag <i>value</i> is the same as using an empty
1941
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
1942
+ * case-sensitive.</p>
1943
+ * </li>
1944
+ * </ul>
1945
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
1946
+ * <important>
1947
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
1948
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
1949
+ * <code>Devops-guru-deployment-application</code> or
1950
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
1951
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
1952
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
1953
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
1954
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
1955
+ * <code>Devops-Guru-production-application/containers</code>.</p>
1956
+ * </important>
1957
+ */
1958
+ Tags?: TagHealth[];
1279
1959
  }
1280
1960
  export declare namespace DescribeResourceCollectionHealthResponse {
1281
1961
  /**
@@ -1422,6 +2102,49 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
1422
2102
  */
1423
2103
  const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
1424
2104
  }
2105
+ /**
2106
+ * <p>Information about a collection of Amazon Web Services resources that are identified by an
2107
+ * Amazon Web Services tag. This collection of resources is used to create a monthly cost estimate
2108
+ * for DevOps Guru to analyze Amazon Web Services resources. The maximum number of tags you can specify for a
2109
+ * cost estimate is one. The estimate created is for the cost to analyze the Amazon Web Services
2110
+ * 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
2111
+ * <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2112
+ */
2113
+ export interface TagCostEstimationResourceCollectionFilter {
2114
+ /**
2115
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
2116
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
2117
+ * up your DevOps Guru application and analysis boundary.</p>
2118
+ * <important>
2119
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2120
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2121
+ * <code>Devops-guru-deployment-application</code> or
2122
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2123
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2124
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2125
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2126
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2127
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2128
+ * </important>
2129
+ */
2130
+ AppBoundaryKey: string | undefined;
2131
+ /**
2132
+ * <p>The values in an Amazon Web Services tag collection.</p>
2133
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2134
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2135
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2136
+ * Omitting the tag <i>value</i> is the same as using an empty
2137
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2138
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
2139
+ */
2140
+ TagValues: string[] | undefined;
2141
+ }
2142
+ export declare namespace TagCostEstimationResourceCollectionFilter {
2143
+ /**
2144
+ * @internal
2145
+ */
2146
+ const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
2147
+ }
1425
2148
  /**
1426
2149
  * <p>Information about a filter used to specify which Amazon Web Services resources are analyzed to
1427
2150
  * create a monthly DevOps Guru cost estimate. For more information,
@@ -1435,6 +2158,44 @@ export interface CostEstimationResourceCollectionFilter {
1435
2158
  * used to create a monthly estimate for DevOps Guru.</p>
1436
2159
  */
1437
2160
  CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
2161
+ /**
2162
+ * <p>The Amazon Web Services tags used to filter the resource collection that is used for
2163
+ * a cost estimate.</p>
2164
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2165
+ * tagging, so you can assign the same tag to resources from different services to indicate
2166
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2167
+ * table resource that you assign to an Lambda function. For more information about
2168
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
2169
+ * best practices</a> whitepaper. </p>
2170
+ * <p>Each Amazon Web Services tag has two parts. </p>
2171
+ * <ul>
2172
+ * <li>
2173
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
2174
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
2175
+ * <i>keys</i> are case-sensitive.</p>
2176
+ * </li>
2177
+ * <li>
2178
+ * <p>An optional field known as a tag <i>value</i> (for example,
2179
+ * <code>111122223333</code>, <code>Production</code>, or a team
2180
+ * name). Omitting the tag <i>value</i> is the same as using an empty
2181
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2182
+ * case-sensitive.</p>
2183
+ * </li>
2184
+ * </ul>
2185
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
2186
+ * <important>
2187
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2188
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2189
+ * <code>Devops-guru-deployment-application</code> or
2190
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2191
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2192
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2193
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2194
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2195
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2196
+ * </important>
2197
+ */
2198
+ Tags?: TagCostEstimationResourceCollectionFilter[];
1438
2199
  }
1439
2200
  export declare namespace CostEstimationResourceCollectionFilter {
1440
2201
  /**
@@ -1540,6 +2301,45 @@ export declare namespace CloudFormationCollectionFilter {
1540
2301
  */
1541
2302
  const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
1542
2303
  }
2304
+ /**
2305
+ * <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights generated from
2306
+ * only resources that contain the tags in the tag collection.</p>
2307
+ */
2308
+ export interface TagCollectionFilter {
2309
+ /**
2310
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
2311
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
2312
+ * up your DevOps Guru application and analysis boundary.</p>
2313
+ * <important>
2314
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2315
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2316
+ * <code>Devops-guru-deployment-application</code> or
2317
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2318
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2319
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2320
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2321
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2322
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2323
+ * </important>
2324
+ */
2325
+ AppBoundaryKey: string | undefined;
2326
+ /**
2327
+ * <p>The values in an Amazon Web Services tag collection.</p>
2328
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
2329
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
2330
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
2331
+ * Omitting the tag <i>value</i> is the same as using an empty
2332
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2333
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
2334
+ */
2335
+ TagValues: string[] | undefined;
2336
+ }
2337
+ export declare namespace TagCollectionFilter {
2338
+ /**
2339
+ * @internal
2340
+ */
2341
+ const filterSensitiveLog: (obj: TagCollectionFilter) => any;
2342
+ }
1543
2343
  /**
1544
2344
  * <p> Information about a filter used to specify which Amazon Web Services resources are analyzed for
1545
2345
  * anomalous behavior by DevOps Guru. </p>
@@ -1552,6 +2352,43 @@ export interface ResourceCollectionFilter {
1552
2352
  * <i>Amazon Web Services CloudFormation User Guide</i>. </p>
1553
2353
  */
1554
2354
  CloudFormation?: CloudFormationCollectionFilter;
2355
+ /**
2356
+ * <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
2357
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
2358
+ * tagging, so you can assign the same tag to resources from different services to indicate
2359
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
2360
+ * table resource that you assign to an Lambda function. For more information about
2361
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
2362
+ * best practices</a> whitepaper. </p>
2363
+ * <p>Each Amazon Web Services tag has two parts. </p>
2364
+ * <ul>
2365
+ * <li>
2366
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
2367
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
2368
+ * <i>keys</i> are case-sensitive.</p>
2369
+ * </li>
2370
+ * <li>
2371
+ * <p>An optional field known as a tag <i>value</i> (for example,
2372
+ * <code>111122223333</code>, <code>Production</code>, or a team
2373
+ * name). Omitting the tag <i>value</i> is the same as using an empty
2374
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
2375
+ * case-sensitive.</p>
2376
+ * </li>
2377
+ * </ul>
2378
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
2379
+ * <important>
2380
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
2381
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
2382
+ * <code>Devops-guru-deployment-application</code> or
2383
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
2384
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
2385
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
2386
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
2387
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
2388
+ * <code>Devops-Guru-production-application/containers</code>.</p>
2389
+ * </important>
2390
+ */
2391
+ Tags?: TagCollectionFilter[];
1555
2392
  }
1556
2393
  export declare namespace ResourceCollectionFilter {
1557
2394
  /**
@@ -1562,8 +2399,9 @@ export declare namespace ResourceCollectionFilter {
1562
2399
  export interface GetResourceCollectionResponse {
1563
2400
  /**
1564
2401
  * <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>
2402
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2403
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2404
+ * 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
2405
  */
1568
2406
  ResourceCollection?: ResourceCollectionFilter;
1569
2407
  /**
@@ -1640,7 +2478,10 @@ export interface ProactiveAnomalySummary {
1640
2478
  */
1641
2479
  Id?: string;
1642
2480
  /**
1643
- * <p>The severity of the anomaly.</p>
2481
+ * <p>The severity of the anomaly. The severity of anomalies that generate
2482
+ * an insight determine that insight's severity. For more information, see
2483
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
2484
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
1644
2485
  */
1645
2486
  Severity?: AnomalySeverity | string;
1646
2487
  /**
@@ -1659,7 +2500,7 @@ export interface ProactiveAnomalySummary {
1659
2500
  AnomalyTimeRange?: AnomalyTimeRange;
1660
2501
  /**
1661
2502
  * <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.
2503
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1663
2504
  * </p>
1664
2505
  */
1665
2506
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -1680,8 +2521,9 @@ export interface ProactiveAnomalySummary {
1680
2521
  AssociatedInsightId?: string;
1681
2522
  /**
1682
2523
  * <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>
2524
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2525
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2526
+ * 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
2527
  */
1686
2528
  ResourceCollection?: ResourceCollection;
1687
2529
  /**
@@ -1707,7 +2549,10 @@ export interface ReactiveAnomalySummary {
1707
2549
  */
1708
2550
  Id?: string;
1709
2551
  /**
1710
- * <p> The severity of the reactive anomaly. </p>
2552
+ * <p>The severity of the anomaly. The severity of anomalies that generate
2553
+ * an insight determine that insight's severity. For more information, see
2554
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
2555
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
1711
2556
  */
1712
2557
  Severity?: AnomalySeverity | string;
1713
2558
  /**
@@ -1722,7 +2567,7 @@ export interface ReactiveAnomalySummary {
1722
2567
  AnomalyTimeRange?: AnomalyTimeRange;
1723
2568
  /**
1724
2569
  * <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.
2570
+ * An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
1726
2571
  * </p>
1727
2572
  */
1728
2573
  AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
@@ -1738,10 +2583,42 @@ export interface ReactiveAnomalySummary {
1738
2583
  AssociatedInsightId?: string;
1739
2584
  /**
1740
2585
  * <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>
2586
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2587
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2588
+ * 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
2589
  */
1744
2590
  ResourceCollection?: ResourceCollection;
2591
+ /**
2592
+ * <p>The type of the reactive anomaly. It can be one of the following types.</p>
2593
+ * <ul>
2594
+ * <li>
2595
+ * <p>
2596
+ * <code>CAUSAL</code> - the anomaly can cause a new insight.</p>
2597
+ * </li>
2598
+ * <li>
2599
+ * <p>
2600
+ * <code>CONTEXTUAL</code> - the anomaly contains additional information about an insight or its causal anomaly.</p>
2601
+ * </li>
2602
+ * </ul>
2603
+ */
2604
+ Type?: AnomalyType | string;
2605
+ /**
2606
+ * <p>The name of the reactive anomaly.</p>
2607
+ */
2608
+ Name?: string;
2609
+ /**
2610
+ * <p>A description of the reactive anomaly.</p>
2611
+ */
2612
+ Description?: string;
2613
+ /**
2614
+ * <p>The ID of the causal anomaly that is associated with this
2615
+ * reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
2616
+ */
2617
+ CausalAnomalyId?: string;
2618
+ /**
2619
+ * <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
2620
+ */
2621
+ AnomalyResources?: AnomalyResource[];
1745
2622
  }
1746
2623
  export declare namespace ReactiveAnomalySummary {
1747
2624
  /**
@@ -1833,8 +2710,9 @@ export interface ListEventsFilters {
1833
2710
  DataSource?: EventDataSource | string;
1834
2711
  /**
1835
2712
  * <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>
2713
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2714
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2715
+ * 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
2716
  */
1839
2717
  ResourceCollection?: ResourceCollection;
1840
2718
  }
@@ -1904,8 +2782,9 @@ export declare namespace EventResource {
1904
2782
  export interface Event {
1905
2783
  /**
1906
2784
  * <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>
2785
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
2786
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
2787
+ * 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
2788
  */
1910
2789
  ResourceCollection?: ResourceCollection;
1911
2790
  /**
@@ -2125,7 +3004,9 @@ export interface ProactiveInsightSummary {
2125
3004
  */
2126
3005
  Name?: string;
2127
3006
  /**
2128
- * <p>The severity of the proactive insight. </p>
3007
+ * <p>The severity of the insight. For more information, see
3008
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3009
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2129
3010
  */
2130
3011
  Severity?: InsightSeverity | string;
2131
3012
  /**
@@ -2144,14 +3025,20 @@ export interface ProactiveInsightSummary {
2144
3025
  PredictionTimeRange?: PredictionTimeRange;
2145
3026
  /**
2146
3027
  * <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>
3028
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3029
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3030
+ * 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
3031
  */
2150
3032
  ResourceCollection?: ResourceCollection;
2151
3033
  /**
2152
3034
  * <p>A collection of the names of Amazon Web Services services.</p>
2153
3035
  */
2154
3036
  ServiceCollection?: ServiceCollection;
3037
+ /**
3038
+ * <p>The Amazon Resource Names (ARNs)
3039
+ * of the Amazon Web Services resources that generated this insight.</p>
3040
+ */
3041
+ AssociatedResourceArns?: string[];
2155
3042
  }
2156
3043
  export declare namespace ProactiveInsightSummary {
2157
3044
  /**
@@ -2174,7 +3061,9 @@ export interface ReactiveInsightSummary {
2174
3061
  */
2175
3062
  Name?: string;
2176
3063
  /**
2177
- * <p> The severity of a reactive insight. </p>
3064
+ * <p>The severity of the insight. For more information, see
3065
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3066
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2178
3067
  */
2179
3068
  Severity?: InsightSeverity | string;
2180
3069
  /**
@@ -2188,14 +3077,20 @@ export interface ReactiveInsightSummary {
2188
3077
  InsightTimeRange?: InsightTimeRange;
2189
3078
  /**
2190
3079
  * <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>
3080
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3081
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3082
+ * 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
3083
  */
2194
3084
  ResourceCollection?: ResourceCollection;
2195
3085
  /**
2196
3086
  * <p>A collection of the names of Amazon Web Services services.</p>
2197
3087
  */
2198
3088
  ServiceCollection?: ServiceCollection;
3089
+ /**
3090
+ * <p>The Amazon Resource Names (ARNs)
3091
+ * of the Amazon Web Services resources that generated this insight.</p>
3092
+ */
3093
+ AssociatedResourceArns?: string[];
2199
3094
  }
2200
3095
  export declare namespace ReactiveInsightSummary {
2201
3096
  /**
@@ -2316,7 +3211,7 @@ export declare namespace ListOrganizationInsightsRequest {
2316
3211
  }
2317
3212
  /**
2318
3213
  * <p>Details about a proactive insight. This object is returned by
2319
- * <code>DescribeInsight</code>.</p>
3214
+ * <code>DescribeInsight</code>.</p>
2320
3215
  */
2321
3216
  export interface ProactiveOrganizationInsightSummary {
2322
3217
  /**
@@ -2336,7 +3231,9 @@ export interface ProactiveOrganizationInsightSummary {
2336
3231
  */
2337
3232
  Name?: string;
2338
3233
  /**
2339
- * <p> An array of severity values used to search for insights. </p>
3234
+ * <p> An array of severity values used to search for insights. For more information, see
3235
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3236
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2340
3237
  */
2341
3238
  Severity?: InsightSeverity | string;
2342
3239
  /**
@@ -2355,8 +3252,9 @@ export interface ProactiveOrganizationInsightSummary {
2355
3252
  PredictionTimeRange?: PredictionTimeRange;
2356
3253
  /**
2357
3254
  * <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>
3255
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3256
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3257
+ * 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
3258
  */
2361
3259
  ResourceCollection?: ResourceCollection;
2362
3260
  /**
@@ -2372,7 +3270,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
2372
3270
  }
2373
3271
  /**
2374
3272
  * <p>Information about a reactive insight. This object is returned by
2375
- * <code>DescribeInsight</code>.</p>
3273
+ * <code>DescribeInsight</code>.</p>
2376
3274
  */
2377
3275
  export interface ReactiveOrganizationInsightSummary {
2378
3276
  /**
@@ -2380,7 +3278,7 @@ export interface ReactiveOrganizationInsightSummary {
2380
3278
  */
2381
3279
  Id?: string;
2382
3280
  /**
2383
- * <p>The ID of the Amazon Web Services account.</p>
3281
+ * <p>The ID of the Amazon Web Services account. </p>
2384
3282
  */
2385
3283
  AccountId?: string;
2386
3284
  /**
@@ -2392,7 +3290,9 @@ export interface ReactiveOrganizationInsightSummary {
2392
3290
  */
2393
3291
  Name?: string;
2394
3292
  /**
2395
- * <p> An array of severity values used to search for insights. </p>
3293
+ * <p> An array of severity values used to search for insights. For more information, see
3294
+ * <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
3295
+ * insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
2396
3296
  */
2397
3297
  Severity?: InsightSeverity | string;
2398
3298
  /**
@@ -2406,8 +3306,9 @@ export interface ReactiveOrganizationInsightSummary {
2406
3306
  InsightTimeRange?: InsightTimeRange;
2407
3307
  /**
2408
3308
  * <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>
3309
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3310
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3311
+ * 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
3312
  */
2412
3313
  ResourceCollection?: ResourceCollection;
2413
3314
  /**
@@ -2491,7 +3392,11 @@ export interface RecommendationRelatedAnomalyResource {
2491
3392
  */
2492
3393
  Name?: string;
2493
3394
  /**
2494
- * <p> The type of the resource. </p>
3395
+ * <p> The type of the resource. Resource types take the same form that is
3396
+ * used by Amazon Web Services CloudFormation resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
3397
+ * For example, <code>AWS::RDS::DBCluster</code>. For more information, see
3398
+ * <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services resource and
3399
+ * property types reference</a> in the <i>Amazon Web Services CloudFormation User Guide</i>.</p>
2495
3400
  */
2496
3401
  Type?: string;
2497
3402
  }
@@ -2552,6 +3457,10 @@ export interface RecommendationRelatedAnomaly {
2552
3457
  * For example, details in Amazon CloudWatch metrics. </p>
2553
3458
  */
2554
3459
  SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
3460
+ /**
3461
+ * <p>The ID of an anomaly that generated the insight with this recommendation.</p>
3462
+ */
3463
+ AnomalyId?: string;
2555
3464
  }
2556
3465
  export declare namespace RecommendationRelatedAnomaly {
2557
3466
  /**
@@ -2712,8 +3621,9 @@ export interface SearchInsightsFilters {
2712
3621
  Statuses?: (InsightStatus | string)[];
2713
3622
  /**
2714
3623
  * <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>
3624
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3625
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3626
+ * 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
3627
  */
2718
3628
  ResourceCollection?: ResourceCollection;
2719
3629
  /**
@@ -2796,8 +3706,9 @@ export interface SearchOrganizationInsightsFilters {
2796
3706
  Statuses?: (InsightStatus | string)[];
2797
3707
  /**
2798
3708
  * <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>
3709
+ * The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
3710
+ * Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
3711
+ * 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
3712
  */
2802
3713
  ResourceCollection?: ResourceCollection;
2803
3714
  /**
@@ -2838,7 +3749,7 @@ export interface SearchOrganizationInsightsRequest {
2838
3749
  NextToken?: string;
2839
3750
  /**
2840
3751
  * <p> The type of insights you are searching for (<code>REACTIVE</code> or
2841
- * <code>PROACTIVE</code>). </p>
3752
+ * <code>PROACTIVE</code>). </p>
2842
3753
  */
2843
3754
  Type: InsightType | string | undefined;
2844
3755
  }
@@ -2916,14 +3827,90 @@ export declare namespace UpdateCloudFormationCollectionFilter {
2916
3827
  */
2917
3828
  const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
2918
3829
  }
3830
+ /**
3831
+ * <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
3832
+ * <i>key</i>/<i>value</i> pair.</p>
3833
+ */
3834
+ export interface UpdateTagCollectionFilter {
3835
+ /**
3836
+ * <p>An Amazon Web Services tag <i>key</i> that is used to identify the Amazon Web Services resources that
3837
+ * DevOps Guru analyzes. All Amazon Web Services resources in your account and Region tagged with this <i>key</i> make
3838
+ * up your DevOps Guru application and analysis boundary.</p>
3839
+ * <important>
3840
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
3841
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
3842
+ * <code>Devops-guru-deployment-application</code> or
3843
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
3844
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
3845
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
3846
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
3847
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
3848
+ * <code>Devops-Guru-production-application/containers</code>.</p>
3849
+ * </important>
3850
+ */
3851
+ AppBoundaryKey: string | undefined;
3852
+ /**
3853
+ * <p>The values in an Amazon Web Services tag collection.</p>
3854
+ * <p>The tag's <i>value</i> is an optional field used to associate a string with
3855
+ * the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
3856
+ * name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
3857
+ * Omitting the tag <i>value</i> is the same as using an empty
3858
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
3859
+ * case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
3860
+ */
3861
+ TagValues: string[] | undefined;
3862
+ }
3863
+ export declare namespace UpdateTagCollectionFilter {
3864
+ /**
3865
+ * @internal
3866
+ */
3867
+ const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
3868
+ }
2919
3869
  /**
2920
3870
  * <p> Contains information used to update a collection of Amazon Web Services resources. </p>
2921
3871
  */
2922
3872
  export interface UpdateResourceCollectionFilter {
2923
3873
  /**
2924
- * <p> An collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
3874
+ * <p> A collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
2925
3875
  */
2926
3876
  CloudFormation?: UpdateCloudFormationCollectionFilter;
3877
+ /**
3878
+ * <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
3879
+ * <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
3880
+ * tagging, so you can assign the same tag to resources from different services to indicate
3881
+ * that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
3882
+ * table resource that you assign to an Lambda function. For more information about
3883
+ * using tags, see the <a href="https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf">Tagging
3884
+ * best practices</a> whitepaper. </p>
3885
+ * <p>Each Amazon Web Services tag has two parts. </p>
3886
+ * <ul>
3887
+ * <li>
3888
+ * <p>A tag <i>key</i> (for example, <code>CostCenter</code>,
3889
+ * <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag
3890
+ * <i>keys</i> are case-sensitive.</p>
3891
+ * </li>
3892
+ * <li>
3893
+ * <p>An optional field known as a tag <i>value</i> (for example,
3894
+ * <code>111122223333</code>, <code>Production</code>, or a team
3895
+ * name). Omitting the tag <i>value</i> is the same as using an empty
3896
+ * string. Like tag <i>keys</i>, tag <i>values</i> are
3897
+ * case-sensitive.</p>
3898
+ * </li>
3899
+ * </ul>
3900
+ * <p>Together these are known as <i>key</i>-<i>value</i> pairs.</p>
3901
+ * <important>
3902
+ * <p>The string used for a <i>key</i> in a tag that you use to define your resource coverage must begin with the
3903
+ * prefix <code>Devops-guru-</code>. The tag <i>key</i> might be
3904
+ * <code>Devops-guru-deployment-application</code> or
3905
+ * <code>Devops-guru-rds-application</code>. While <i>keys</i> are case-sensitive, the
3906
+ * case of <i>key</i> characters don't matter to DevOps Guru. For example, DevOps Guru works with a
3907
+ * <i>key</i> named <code>devops-guru-rds</code> and a <i>key</i> named
3908
+ * <code>DevOps-Guru-RDS</code>. Possible <i>key</i>/<i>value</i> pairs in your
3909
+ * application might be <code>Devops-Guru-production-application/RDS</code> or
3910
+ * <code>Devops-Guru-production-application/containers</code>.</p>
3911
+ * </important>
3912
+ */
3913
+ Tags?: UpdateTagCollectionFilter[];
2927
3914
  }
2928
3915
  export declare namespace UpdateResourceCollectionFilter {
2929
3916
  /**