@aws-sdk/client-devops-guru 3.53.0 → 3.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/DevOpsGuru.js +30 -0
- package/dist-cjs/commands/DescribeEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/UpdateEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +51 -4
- package/dist-cjs/protocols/Aws_restJson1.js +180 -2
- package/dist-es/DevOpsGuru.js +30 -0
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +33 -0
- package/dist-es/protocols/Aws_restJson1.js +224 -0
- package/dist-types/DevOpsGuru.d.ts +19 -4
- package/dist-types/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +36 -0
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +343 -198
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DevOpsGuru.d.ts +10 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -279,6 +279,25 @@ export declare class ValidationException extends __BaseException {
|
|
|
279
279
|
*/
|
|
280
280
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
281
281
|
}
|
|
282
|
+
export declare enum EventSourceOptInStatus {
|
|
283
|
+
DISABLED = "DISABLED",
|
|
284
|
+
ENABLED = "ENABLED"
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* <p>Information about your account's integration with Amazon CodeGuru Profiler.</p>
|
|
288
|
+
*/
|
|
289
|
+
export interface AmazonCodeGuruProfilerIntegration {
|
|
290
|
+
/**
|
|
291
|
+
* <p>The status of the CodeGuru Profiler integration.</p>
|
|
292
|
+
*/
|
|
293
|
+
Status?: EventSourceOptInStatus | string;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace AmazonCodeGuruProfilerIntegration {
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
const filterSensitiveLog: (obj: AmazonCodeGuruProfilerIntegration) => any;
|
|
300
|
+
}
|
|
282
301
|
/**
|
|
283
302
|
* <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
|
|
284
303
|
* is different from <code>AnomalyTimeRange</code>, which specifies the time range when
|
|
@@ -301,10 +320,10 @@ export declare namespace AnomalyReportedTimeRange {
|
|
|
301
320
|
const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
|
|
302
321
|
}
|
|
303
322
|
/**
|
|
304
|
-
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in
|
|
305
|
-
*
|
|
306
|
-
*
|
|
307
|
-
*
|
|
323
|
+
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in the
|
|
324
|
+
* generation of an anomaly. When DevOps Guru detects multiple related anomalies, it creates and
|
|
325
|
+
* insight with details about the anomalous behavior and suggestions about how to correct
|
|
326
|
+
* the problem.</p>
|
|
308
327
|
*/
|
|
309
328
|
export interface AnomalyResource {
|
|
310
329
|
/**
|
|
@@ -383,8 +402,8 @@ export interface CloudWatchMetricsDataSummary {
|
|
|
383
402
|
*/
|
|
384
403
|
TimestampMetricValuePairList?: TimestampMetricValuePair[];
|
|
385
404
|
/**
|
|
386
|
-
* <p>This is an enum of the status showing whether the metric value pair list has partial
|
|
387
|
-
* complete data, or if there was an error.</p>
|
|
405
|
+
* <p>This is an enum of the status showing whether the metric value pair list has partial
|
|
406
|
+
* or complete data, or if there was an error.</p>
|
|
388
407
|
*/
|
|
389
408
|
StatusCode?: CloudWatchMetricDataStatusCode | string;
|
|
390
409
|
}
|
|
@@ -448,15 +467,14 @@ export declare namespace CloudWatchMetricsDetail {
|
|
|
448
467
|
}
|
|
449
468
|
/**
|
|
450
469
|
* <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
|
|
451
|
-
*
|
|
452
|
-
*
|
|
453
|
-
*
|
|
454
|
-
*
|
|
455
|
-
*
|
|
456
|
-
*
|
|
457
|
-
*
|
|
458
|
-
*
|
|
459
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
470
|
+
* <code>db.sql</code> dimension group consists of the following dimensions:
|
|
471
|
+
* <code>db.sql.id</code>, <code>db.sql.db_id</code>, <code>db.sql.statement</code>,
|
|
472
|
+
* and <code>db.sql.tokenized_id</code>.</p>
|
|
473
|
+
* <note>
|
|
474
|
+
* <p>Each response element returns a maximum of 500 bytes. For larger elements, such as
|
|
475
|
+
* SQL statements, only the first 500 bytes are returned.</p>
|
|
476
|
+
* </note>
|
|
477
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
460
478
|
* dimensions of database load based on data captured from a running DB instance.
|
|
461
479
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
462
480
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -479,127 +497,143 @@ export interface PerformanceInsightsMetricDimensionGroup {
|
|
|
479
497
|
/**
|
|
480
498
|
* <p>The name of the dimension group. Its valid values are:</p>
|
|
481
499
|
*
|
|
482
|
-
*
|
|
500
|
+
* <ul>
|
|
483
501
|
* <li>
|
|
484
|
-
*
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
*
|
|
502
|
+
* <p>
|
|
503
|
+
* <code>db</code> - The name of the database to which the client is connected
|
|
504
|
+
* (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
505
|
+
* </li>
|
|
488
506
|
* <li>
|
|
489
|
-
*
|
|
490
|
-
*
|
|
491
|
-
*
|
|
492
|
-
*
|
|
507
|
+
* <p>
|
|
508
|
+
* <code>db.application</code> - The name of the application that is connected to
|
|
509
|
+
* the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
510
|
+
* </li>
|
|
493
511
|
* <li>
|
|
494
|
-
*
|
|
495
|
-
*
|
|
496
|
-
*
|
|
512
|
+
* <p>
|
|
513
|
+
* <code>db.host</code> - The host name of the connected client (all
|
|
514
|
+
* engines)</p>
|
|
515
|
+
* </li>
|
|
497
516
|
* <li>
|
|
498
|
-
*
|
|
499
|
-
*
|
|
500
|
-
*
|
|
517
|
+
* <p>
|
|
518
|
+
* <code>db.session_type</code> - The type of the current session (only Aurora PostgreSQL
|
|
519
|
+
* and RDS PostgreSQL)</p>
|
|
520
|
+
* </li>
|
|
501
521
|
* <li>
|
|
502
|
-
*
|
|
503
|
-
*
|
|
504
|
-
*
|
|
522
|
+
* <p>
|
|
523
|
+
* <code>db.sql</code> - The SQL that is currently executing (all engines)</p>
|
|
524
|
+
* </li>
|
|
505
525
|
* <li>
|
|
506
|
-
*
|
|
507
|
-
*
|
|
508
|
-
*
|
|
526
|
+
* <p>
|
|
527
|
+
* <code>db.sql_tokenized</code> - The SQL digest (all engines)</p>
|
|
528
|
+
* </li>
|
|
509
529
|
* <li>
|
|
510
|
-
*
|
|
511
|
-
*
|
|
512
|
-
*
|
|
530
|
+
* <p>
|
|
531
|
+
* <code>db.wait_event</code> - The event for which the database backend is waiting
|
|
532
|
+
* (all engines)</p>
|
|
533
|
+
* </li>
|
|
513
534
|
* <li>
|
|
514
|
-
*
|
|
515
|
-
*
|
|
516
|
-
*
|
|
535
|
+
* <p>
|
|
536
|
+
* <code>db.wait_event_type</code> - The type of event for which the database
|
|
537
|
+
* backend is waiting (all engines)</p>
|
|
538
|
+
* </li>
|
|
517
539
|
* <li>
|
|
518
|
-
*
|
|
519
|
-
*
|
|
520
|
-
*
|
|
540
|
+
* <p>
|
|
541
|
+
* <code>db.user</code> - The user logged in to the database (all engines)</p>
|
|
542
|
+
* </li>
|
|
521
543
|
* </ul>
|
|
522
544
|
*/
|
|
523
545
|
Group?: string;
|
|
524
546
|
/**
|
|
525
|
-
* <p>A list of specific dimensions from a dimension group. If this parameter is not
|
|
526
|
-
*
|
|
527
|
-
*
|
|
528
|
-
*
|
|
547
|
+
* <p>A list of specific dimensions from a dimension group. If this parameter is not
|
|
548
|
+
* present, then it signifies that all of the dimensions in the group were requested or are
|
|
549
|
+
* present in the response.</p>
|
|
550
|
+
* <p>Valid values for elements in the <code>Dimensions</code> array are:</p>
|
|
529
551
|
*
|
|
530
|
-
*
|
|
552
|
+
* <ul>
|
|
531
553
|
* <li>
|
|
532
|
-
*
|
|
533
|
-
*
|
|
534
|
-
*
|
|
535
|
-
*
|
|
554
|
+
* <p>
|
|
555
|
+
* <code>db.application.name</code> - The name of the application that is connected
|
|
556
|
+
* to the database (only Aurora PostgreSQL and RDS PostgreSQL)</p>
|
|
557
|
+
* </li>
|
|
536
558
|
* <li>
|
|
537
|
-
*
|
|
538
|
-
*
|
|
539
|
-
*
|
|
559
|
+
* <p>
|
|
560
|
+
* <code>db.host.id</code> - The host ID of the connected client (all
|
|
561
|
+
* engines)</p>
|
|
562
|
+
* </li>
|
|
540
563
|
* <li>
|
|
541
|
-
*
|
|
542
|
-
*
|
|
543
|
-
*
|
|
564
|
+
* <p>
|
|
565
|
+
* <code>db.host.name</code> - The host name of the connected client (all
|
|
566
|
+
* engines)</p>
|
|
567
|
+
* </li>
|
|
544
568
|
* <li>
|
|
545
|
-
*
|
|
546
|
-
*
|
|
547
|
-
*
|
|
548
|
-
*
|
|
569
|
+
* <p>
|
|
570
|
+
* <code>db.name</code> - The name of the database to which the client is connected
|
|
571
|
+
* (only Aurora PostgreSQL, Amazon RDS PostgreSQL, Aurora MySQL, Amazon RDS MySQL, and MariaDB)</p>
|
|
572
|
+
* </li>
|
|
549
573
|
* <li>
|
|
550
|
-
*
|
|
551
|
-
*
|
|
552
|
-
*
|
|
574
|
+
* <p>
|
|
575
|
+
* <code>db.session_type.name</code> - The type of the current session (only Aurora
|
|
576
|
+
* PostgreSQL and RDS PostgreSQL)</p>
|
|
577
|
+
* </li>
|
|
553
578
|
* <li>
|
|
554
|
-
*
|
|
555
|
-
*
|
|
556
|
-
*
|
|
579
|
+
* <p>
|
|
580
|
+
* <code>db.sql.id</code> - The SQL ID generated by Performance Insights (all engines)</p>
|
|
581
|
+
* </li>
|
|
557
582
|
* <li>
|
|
558
|
-
*
|
|
559
|
-
*
|
|
560
|
-
*
|
|
583
|
+
* <p>
|
|
584
|
+
* <code>db.sql.db_id</code> - The SQL ID generated by the database (all
|
|
585
|
+
* engines)</p>
|
|
586
|
+
* </li>
|
|
561
587
|
* <li>
|
|
562
|
-
*
|
|
563
|
-
*
|
|
564
|
-
*
|
|
588
|
+
* <p>
|
|
589
|
+
* <code>db.sql.statement</code> - The SQL text that is being executed (all
|
|
590
|
+
* engines)</p>
|
|
591
|
+
* </li>
|
|
565
592
|
* <li>
|
|
566
|
-
*
|
|
567
|
-
*
|
|
568
|
-
*
|
|
569
|
-
*
|
|
593
|
+
* <p>
|
|
594
|
+
* <code>db.sql.tokenized_id</code>
|
|
595
|
+
* </p>
|
|
596
|
+
* </li>
|
|
570
597
|
* <li>
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
598
|
+
* <p>
|
|
599
|
+
* <code>db.sql_tokenized.id</code> - The SQL digest ID generated by Performance Insights (all
|
|
600
|
+
* engines)</p>
|
|
601
|
+
* </li>
|
|
574
602
|
* <li>
|
|
575
|
-
*
|
|
576
|
-
*
|
|
577
|
-
*
|
|
603
|
+
* <p>
|
|
604
|
+
* <code>db.sql_tokenized.db_id</code> - SQL digest ID generated by the database
|
|
605
|
+
* (all engines)</p>
|
|
606
|
+
* </li>
|
|
578
607
|
* <li>
|
|
579
|
-
*
|
|
580
|
-
*
|
|
581
|
-
*
|
|
608
|
+
* <p>
|
|
609
|
+
* <code>db.sql_tokenized.statement</code> - The SQL digest text (all
|
|
610
|
+
* engines)</p>
|
|
611
|
+
* </li>
|
|
582
612
|
* <li>
|
|
583
|
-
*
|
|
584
|
-
*
|
|
585
|
-
*
|
|
613
|
+
* <p>
|
|
614
|
+
* <code>db.user.id</code> - The ID of the user logged in to the database (all
|
|
615
|
+
* engines)</p>
|
|
616
|
+
* </li>
|
|
586
617
|
* <li>
|
|
587
|
-
*
|
|
588
|
-
*
|
|
589
|
-
*
|
|
618
|
+
* <p>
|
|
619
|
+
* <code>db.user.name</code> - The name of the user logged in to the database (all
|
|
620
|
+
* engines)</p>
|
|
621
|
+
* </li>
|
|
590
622
|
* <li>
|
|
591
|
-
*
|
|
592
|
-
*
|
|
593
|
-
*
|
|
623
|
+
* <p>
|
|
624
|
+
* <code>db.wait_event.name</code> - The event for which the backend is waiting
|
|
625
|
+
* (all engines)</p>
|
|
626
|
+
* </li>
|
|
594
627
|
* <li>
|
|
595
|
-
*
|
|
596
|
-
*
|
|
597
|
-
*
|
|
628
|
+
* <p>
|
|
629
|
+
* <code>db.wait_event.type</code> - The type of event for which the backend is
|
|
630
|
+
* waiting (all engines)</p>
|
|
631
|
+
* </li>
|
|
598
632
|
* <li>
|
|
599
|
-
*
|
|
600
|
-
*
|
|
601
|
-
*
|
|
602
|
-
*
|
|
633
|
+
* <p>
|
|
634
|
+
* <code>db.wait_event_type.name</code> - The name of the event type for which the
|
|
635
|
+
* backend is waiting (all engines)</p>
|
|
636
|
+
* </li>
|
|
603
637
|
* </ul>
|
|
604
638
|
*/
|
|
605
639
|
Dimensions?: string[];
|
|
@@ -615,14 +649,13 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
|
615
649
|
const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
|
|
616
650
|
}
|
|
617
651
|
/**
|
|
618
|
-
* <p>A single query to be processed. Use these parameters to
|
|
619
|
-
*
|
|
620
|
-
*
|
|
652
|
+
* <p>A single query to be processed. Use these parameters to query the Performance Insights
|
|
653
|
+
* <code>GetResourceMetrics</code> API to retrieve the metrics for an anomaly. For more
|
|
654
|
+
* information, see <code>
|
|
621
655
|
* <a href="https://docs.aws.amazon.com/performance-insights/latest/APIReference/API_GetResourceMetrics.html">GetResourceMetrics</a>
|
|
622
|
-
* </code>
|
|
623
|
-
*
|
|
624
|
-
*
|
|
625
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
656
|
+
* </code> in the <i>Amazon RDS Performance Insights API
|
|
657
|
+
* Reference</i>.</p>
|
|
658
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
626
659
|
* dimensions of database load based on data captured from a running DB instance.
|
|
627
660
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
628
661
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -643,45 +676,51 @@ export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
|
643
676
|
*/
|
|
644
677
|
export interface PerformanceInsightsMetricQuery {
|
|
645
678
|
/**
|
|
646
|
-
* <p>The name of the meteric used used when querying an Performance Insights
|
|
647
|
-
*
|
|
679
|
+
* <p>The name of the meteric used used when querying an Performance Insights
|
|
680
|
+
* <code>GetResourceMetrics</code> API for anomaly metrics.</p>
|
|
648
681
|
*
|
|
649
|
-
*
|
|
682
|
+
* <p>Valid values for <code>Metric</code> are:</p>
|
|
650
683
|
*
|
|
651
|
-
*
|
|
684
|
+
* <ul>
|
|
652
685
|
* <li>
|
|
653
|
-
*
|
|
654
|
-
*
|
|
655
|
-
*
|
|
656
|
-
*
|
|
686
|
+
* <p>
|
|
687
|
+
* <code>db.load.avg</code> - a scaled representation of the number of active sessions for the
|
|
688
|
+
* database engine.</p>
|
|
689
|
+
* </li>
|
|
657
690
|
* <li>
|
|
658
|
-
*
|
|
659
|
-
*
|
|
660
|
-
*
|
|
661
|
-
*
|
|
691
|
+
* <p>
|
|
692
|
+
* <code>db.sampledload.avg</code> - the raw number of active sessions for the database
|
|
693
|
+
* engine.</p>
|
|
694
|
+
* </li>
|
|
662
695
|
* </ul>
|
|
663
|
-
*
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
*
|
|
696
|
+
* <p>If the number of active sessions is less than an internal Performance Insights threshold,
|
|
697
|
+
* <code>db.load.avg</code> and <code>db.sampledload.avg</code> are the same value. If
|
|
698
|
+
* the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with
|
|
699
|
+
* <code>db.load.avg</code> showing the scaled values, <code>db.sampledload.avg</code>
|
|
700
|
+
* showing the raw values, and <code>db.sampledload.avg</code> less than
|
|
701
|
+
* <code>db.load.avg</code>. For most use cases, you can query <code>db.load.avg</code>
|
|
702
|
+
* only. </p>
|
|
667
703
|
*/
|
|
668
704
|
Metric?: string;
|
|
669
705
|
/**
|
|
670
|
-
* <p>The specification for how to aggregate the data points from a Performance Insights
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
*
|
|
706
|
+
* <p>The specification for how to aggregate the data points from a Performance Insights
|
|
707
|
+
* <code>GetResourceMetrics</code> API query. The Performance Insights query returns all of the
|
|
708
|
+
* dimensions within that group, unless you provide the names of specific dimensions within
|
|
709
|
+
* that group. You can also request that Performance Insights return a limited number of values for a
|
|
710
|
+
* dimension.</p>
|
|
674
711
|
*/
|
|
675
712
|
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
676
713
|
/**
|
|
677
|
-
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
|
|
678
|
-
*
|
|
714
|
+
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
|
|
715
|
+
* Restrictions:</p>
|
|
716
|
+
* <ul>
|
|
679
717
|
* <li>
|
|
680
|
-
*
|
|
681
|
-
*
|
|
718
|
+
* <p>Any number of filters by the same dimension, as specified in the
|
|
719
|
+
* <code>GroupBy</code> parameter.</p>
|
|
720
|
+
* </li>
|
|
682
721
|
* <li>
|
|
683
|
-
*
|
|
684
|
-
*
|
|
722
|
+
* <p>A single filter for any other dimension in this dimension group.</p>
|
|
723
|
+
* </li>
|
|
685
724
|
* </ul>
|
|
686
725
|
*/
|
|
687
726
|
Filter?: {
|
|
@@ -711,7 +750,7 @@ export declare namespace PerformanceInsightsReferenceMetric {
|
|
|
711
750
|
}
|
|
712
751
|
/**
|
|
713
752
|
* <p>A reference value to compare Performance Insights metrics against to determine if the metrics
|
|
714
|
-
*
|
|
753
|
+
* demonstrate anomalous behavior.</p>
|
|
715
754
|
*/
|
|
716
755
|
export interface PerformanceInsightsReferenceScalar {
|
|
717
756
|
/**
|
|
@@ -726,18 +765,21 @@ export declare namespace PerformanceInsightsReferenceScalar {
|
|
|
726
765
|
const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
|
|
727
766
|
}
|
|
728
767
|
/**
|
|
729
|
-
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
|
|
730
|
-
*
|
|
768
|
+
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
|
|
769
|
+
* console along with the actual metrics it analyzed. Compare these reference values to
|
|
770
|
+
* your actual metrics to help you understand anomalous behavior that DevOps Guru
|
|
771
|
+
* detected.</p>
|
|
731
772
|
*/
|
|
732
773
|
export interface PerformanceInsightsReferenceComparisonValues {
|
|
733
774
|
/**
|
|
734
|
-
* <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This
|
|
735
|
-
*
|
|
775
|
+
* <p>A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This
|
|
776
|
+
* reference value is used to determine if an actual metric value should be considered
|
|
777
|
+
* anomalous.</p>
|
|
736
778
|
*/
|
|
737
779
|
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
738
780
|
/**
|
|
739
|
-
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used
|
|
740
|
-
*
|
|
781
|
+
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used to
|
|
782
|
+
* determine if an actual metric should be considered anomalous.</p>
|
|
741
783
|
*/
|
|
742
784
|
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
743
785
|
}
|
|
@@ -748,8 +790,8 @@ export declare namespace PerformanceInsightsReferenceComparisonValues {
|
|
|
748
790
|
const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
|
|
749
791
|
}
|
|
750
792
|
/**
|
|
751
|
-
* <p>Reference data used to evaluate Performance Insights to determine if its performance
|
|
752
|
-
*
|
|
793
|
+
* <p>Reference data used to evaluate Performance Insights to determine if its performance is anomalous or
|
|
794
|
+
* not.</p>
|
|
753
795
|
*/
|
|
754
796
|
export interface PerformanceInsightsReferenceData {
|
|
755
797
|
/**
|
|
@@ -758,10 +800,9 @@ export interface PerformanceInsightsReferenceData {
|
|
|
758
800
|
Name?: string;
|
|
759
801
|
/**
|
|
760
802
|
* <p>The specific reference values used to evaluate the Performance Insights. For more information, see
|
|
761
|
-
*
|
|
803
|
+
* <code>
|
|
762
804
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceComparisonValues.html">PerformanceInsightsReferenceComparisonValues</a>
|
|
763
|
-
* </code>.
|
|
764
|
-
* </p>
|
|
805
|
+
* </code>. </p>
|
|
765
806
|
*/
|
|
766
807
|
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
767
808
|
}
|
|
@@ -792,8 +833,7 @@ export declare namespace PerformanceInsightsStat {
|
|
|
792
833
|
}
|
|
793
834
|
/**
|
|
794
835
|
* <p>Details about Performance Insights metrics.</p>
|
|
795
|
-
*
|
|
796
|
-
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
836
|
+
* <p>Amazon RDS Performance Insights enables you to monitor and explore different
|
|
797
837
|
* dimensions of database load based on data captured from a running DB instance.
|
|
798
838
|
* DB load is measured as average active sessions. Performance Insights provides the
|
|
799
839
|
* data to API consumers as a two-dimensional time-series dataset. The time dimension
|
|
@@ -822,19 +862,15 @@ export interface PerformanceInsightsMetricsDetail {
|
|
|
822
862
|
*/
|
|
823
863
|
Unit?: string;
|
|
824
864
|
/**
|
|
825
|
-
* <p>A single query to be processed for the metric. For more information, see
|
|
826
|
-
* <code>
|
|
865
|
+
* <p>A single query to be processed for the metric. For more information, see <code>
|
|
827
866
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
|
|
828
867
|
* </code>.</p>
|
|
829
868
|
*/
|
|
830
869
|
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
831
870
|
/**
|
|
832
|
-
* <p>
|
|
833
|
-
* For more information, see
|
|
834
|
-
* <code>
|
|
871
|
+
* <p> For more information, see <code>
|
|
835
872
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
|
|
836
|
-
* </code>.
|
|
837
|
-
* </p>
|
|
873
|
+
* </code>. </p>
|
|
838
874
|
*/
|
|
839
875
|
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
840
876
|
/**
|
|
@@ -865,8 +901,8 @@ export interface AnomalySourceDetails {
|
|
|
865
901
|
*/
|
|
866
902
|
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
867
903
|
/**
|
|
868
|
-
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
|
|
869
|
-
*
|
|
904
|
+
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
|
|
905
|
+
* information about analyzed Performance Insights metrics that show anomalous behavior.</p>
|
|
870
906
|
*/
|
|
871
907
|
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
872
908
|
}
|
|
@@ -876,6 +912,30 @@ export declare namespace AnomalySourceDetails {
|
|
|
876
912
|
*/
|
|
877
913
|
const filterSensitiveLog: (obj: AnomalySourceDetails) => any;
|
|
878
914
|
}
|
|
915
|
+
/**
|
|
916
|
+
* <p>Metadata about an anomaly. The anomaly is detected using analysis of the metric data
|
|
917
|
+
over a period of time</p>
|
|
918
|
+
*/
|
|
919
|
+
export interface AnomalySourceMetadata {
|
|
920
|
+
/**
|
|
921
|
+
* <p>The source of the anomaly.</p>
|
|
922
|
+
*/
|
|
923
|
+
Source?: string;
|
|
924
|
+
/**
|
|
925
|
+
* <p>The name of the anomaly's resource.</p>
|
|
926
|
+
*/
|
|
927
|
+
SourceResourceName?: string;
|
|
928
|
+
/**
|
|
929
|
+
* <p>The anomaly's resource type.</p>
|
|
930
|
+
*/
|
|
931
|
+
SourceResourceType?: string;
|
|
932
|
+
}
|
|
933
|
+
export declare namespace AnomalySourceMetadata {
|
|
934
|
+
/**
|
|
935
|
+
* @internal
|
|
936
|
+
*/
|
|
937
|
+
const filterSensitiveLog: (obj: AnomalySourceMetadata) => any;
|
|
938
|
+
}
|
|
879
939
|
export declare enum AnomalyStatus {
|
|
880
940
|
CLOSED = "CLOSED",
|
|
881
941
|
ONGOING = "ONGOING"
|
|
@@ -1041,7 +1101,7 @@ export declare namespace CloudFormationCollection {
|
|
|
1041
1101
|
}
|
|
1042
1102
|
/**
|
|
1043
1103
|
* <p>A collection of Amazon Web Services stags.</p>
|
|
1044
|
-
*
|
|
1104
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1045
1105
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1046
1106
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1047
1107
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -1095,7 +1155,7 @@ export interface TagCollection {
|
|
|
1095
1155
|
AppBoundaryKey: string | undefined;
|
|
1096
1156
|
/**
|
|
1097
1157
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
1098
|
-
*
|
|
1158
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1099
1159
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1100
1160
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1101
1161
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -1124,7 +1184,7 @@ export interface ResourceCollection {
|
|
|
1124
1184
|
CloudFormation?: CloudFormationCollection;
|
|
1125
1185
|
/**
|
|
1126
1186
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1127
|
-
*
|
|
1187
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1128
1188
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1129
1189
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1130
1190
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -1229,6 +1289,14 @@ export interface ProactiveAnomaly {
|
|
|
1229
1289
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
1230
1290
|
*/
|
|
1231
1291
|
Limit?: number;
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>The metadata for the anomaly.</p>
|
|
1294
|
+
*/
|
|
1295
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
1296
|
+
/**
|
|
1297
|
+
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
1298
|
+
*/
|
|
1299
|
+
AnomalyResources?: AnomalyResource[];
|
|
1232
1300
|
}
|
|
1233
1301
|
export declare namespace ProactiveAnomaly {
|
|
1234
1302
|
/**
|
|
@@ -1339,6 +1407,41 @@ export declare namespace DescribeAnomalyResponse {
|
|
|
1339
1407
|
*/
|
|
1340
1408
|
const filterSensitiveLog: (obj: DescribeAnomalyResponse) => any;
|
|
1341
1409
|
}
|
|
1410
|
+
export interface DescribeEventSourcesConfigRequest {
|
|
1411
|
+
}
|
|
1412
|
+
export declare namespace DescribeEventSourcesConfigRequest {
|
|
1413
|
+
/**
|
|
1414
|
+
* @internal
|
|
1415
|
+
*/
|
|
1416
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigRequest) => any;
|
|
1417
|
+
}
|
|
1418
|
+
/**
|
|
1419
|
+
* <p>Describes the event sources.</p>
|
|
1420
|
+
*/
|
|
1421
|
+
export interface EventSourcesConfig {
|
|
1422
|
+
/**
|
|
1423
|
+
* <p></p>
|
|
1424
|
+
*/
|
|
1425
|
+
AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
|
|
1426
|
+
}
|
|
1427
|
+
export declare namespace EventSourcesConfig {
|
|
1428
|
+
/**
|
|
1429
|
+
* @internal
|
|
1430
|
+
*/
|
|
1431
|
+
const filterSensitiveLog: (obj: EventSourcesConfig) => any;
|
|
1432
|
+
}
|
|
1433
|
+
export interface DescribeEventSourcesConfigResponse {
|
|
1434
|
+
/**
|
|
1435
|
+
* <p>The name of the event source.</p>
|
|
1436
|
+
*/
|
|
1437
|
+
EventSources?: EventSourcesConfig;
|
|
1438
|
+
}
|
|
1439
|
+
export declare namespace DescribeEventSourcesConfigResponse {
|
|
1440
|
+
/**
|
|
1441
|
+
* @internal
|
|
1442
|
+
*/
|
|
1443
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigResponse) => any;
|
|
1444
|
+
}
|
|
1342
1445
|
export interface DescribeFeedbackRequest {
|
|
1343
1446
|
/**
|
|
1344
1447
|
* <p> The ID of the insight for which the feedback was provided. </p>
|
|
@@ -1479,6 +1582,10 @@ export interface ProactiveInsight {
|
|
|
1479
1582
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1480
1583
|
*/
|
|
1481
1584
|
SsmOpsItemId?: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>Describes the proactive insight.</p>
|
|
1587
|
+
*/
|
|
1588
|
+
Description?: string;
|
|
1482
1589
|
}
|
|
1483
1590
|
export declare namespace ProactiveInsight {
|
|
1484
1591
|
/**
|
|
@@ -1526,6 +1633,10 @@ export interface ReactiveInsight {
|
|
|
1526
1633
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1527
1634
|
*/
|
|
1528
1635
|
SsmOpsItemId?: string;
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>Describes the reactive insight.</p>
|
|
1638
|
+
*/
|
|
1639
|
+
Description?: string;
|
|
1529
1640
|
}
|
|
1530
1641
|
export declare namespace ReactiveInsight {
|
|
1531
1642
|
/**
|
|
@@ -1794,7 +1905,7 @@ export declare namespace ServiceHealth {
|
|
|
1794
1905
|
}
|
|
1795
1906
|
/**
|
|
1796
1907
|
* <p> Information about the health of Amazon Web Services resources in your account that are specified by
|
|
1797
|
-
*
|
|
1908
|
+
* an Amazon Web Services tag <i>key</i>. </p>
|
|
1798
1909
|
*/
|
|
1799
1910
|
export interface TagHealth {
|
|
1800
1911
|
/**
|
|
@@ -1816,7 +1927,7 @@ export interface TagHealth {
|
|
|
1816
1927
|
AppBoundaryKey?: string;
|
|
1817
1928
|
/**
|
|
1818
1929
|
* <p>The value in an Amazon Web Services tag.</p>
|
|
1819
|
-
*
|
|
1930
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
1820
1931
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
1821
1932
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
1822
1933
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -1825,9 +1936,9 @@ export interface TagHealth {
|
|
|
1825
1936
|
*/
|
|
1826
1937
|
TagValue?: string;
|
|
1827
1938
|
/**
|
|
1828
|
-
* <p>Information about the health of the Amazon Web Services resources in your account that are
|
|
1829
|
-
*
|
|
1830
|
-
*
|
|
1939
|
+
* <p>Information about the health of the Amazon Web Services resources in your account that are specified
|
|
1940
|
+
* by an Amazon Web Services tag, including the number of open proactive, open reactive insights, and the
|
|
1941
|
+
* Mean Time to Recover (MTTR) of closed insights. </p>
|
|
1831
1942
|
*/
|
|
1832
1943
|
Insight?: InsightHealth;
|
|
1833
1944
|
}
|
|
@@ -1840,7 +1951,7 @@ export declare namespace TagHealth {
|
|
|
1840
1951
|
export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
1841
1952
|
/**
|
|
1842
1953
|
* <p>The returned <code>CloudFormationHealthOverview</code> object that contains an
|
|
1843
|
-
*
|
|
1954
|
+
* <code>InsightHealthOverview</code> object with the requested system health
|
|
1844
1955
|
* information.</p>
|
|
1845
1956
|
*/
|
|
1846
1957
|
CloudFormation?: CloudFormationHealth[];
|
|
@@ -1945,7 +2056,7 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
1945
2056
|
NextToken?: string;
|
|
1946
2057
|
/**
|
|
1947
2058
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1948
|
-
*
|
|
2059
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
1949
2060
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
1950
2061
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
1951
2062
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2127,12 +2238,12 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
2127
2238
|
const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
|
|
2128
2239
|
}
|
|
2129
2240
|
/**
|
|
2130
|
-
* <p>Information about a collection of Amazon Web Services resources that are identified by an
|
|
2131
|
-
*
|
|
2132
|
-
*
|
|
2133
|
-
*
|
|
2134
|
-
*
|
|
2135
|
-
*
|
|
2241
|
+
* <p>Information about a collection of Amazon Web Services resources that are identified by an Amazon Web Services tag.
|
|
2242
|
+
* This collection of resources is used to create a monthly cost estimate for DevOps Guru to
|
|
2243
|
+
* analyze Amazon Web Services resources. The maximum number of tags you can specify for a cost estimate
|
|
2244
|
+
* is one. The estimate created is for the cost to analyze the Amazon Web Services resources defined by
|
|
2245
|
+
* the tag. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.html">Stacks</a> in the
|
|
2246
|
+
* <i>Amazon Web Services CloudFormation User Guide</i>.</p>
|
|
2136
2247
|
*/
|
|
2137
2248
|
export interface TagCostEstimationResourceCollectionFilter {
|
|
2138
2249
|
/**
|
|
@@ -2154,7 +2265,7 @@ export interface TagCostEstimationResourceCollectionFilter {
|
|
|
2154
2265
|
AppBoundaryKey: string | undefined;
|
|
2155
2266
|
/**
|
|
2156
2267
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2157
|
-
*
|
|
2268
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2158
2269
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2159
2270
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2160
2271
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -2183,9 +2294,9 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
2183
2294
|
*/
|
|
2184
2295
|
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
2185
2296
|
/**
|
|
2186
|
-
* <p>The Amazon Web Services tags used to filter the resource collection that is used for
|
|
2187
|
-
*
|
|
2188
|
-
*
|
|
2297
|
+
* <p>The Amazon Web Services tags used to filter the resource collection that is used for a cost
|
|
2298
|
+
* estimate.</p>
|
|
2299
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2189
2300
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2190
2301
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2191
2302
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2326,8 +2437,8 @@ export declare namespace CloudFormationCollectionFilter {
|
|
|
2326
2437
|
const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
|
|
2327
2438
|
}
|
|
2328
2439
|
/**
|
|
2329
|
-
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
|
|
2330
|
-
*
|
|
2440
|
+
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
|
|
2441
|
+
* generated from only resources that contain the tags in the tag collection.</p>
|
|
2331
2442
|
*/
|
|
2332
2443
|
export interface TagCollectionFilter {
|
|
2333
2444
|
/**
|
|
@@ -2349,7 +2460,7 @@ export interface TagCollectionFilter {
|
|
|
2349
2460
|
AppBoundaryKey: string | undefined;
|
|
2350
2461
|
/**
|
|
2351
2462
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
2352
|
-
*
|
|
2463
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
2353
2464
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
2354
2465
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
2355
2466
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -2378,7 +2489,7 @@ export interface ResourceCollectionFilter {
|
|
|
2378
2489
|
CloudFormation?: CloudFormationCollectionFilter;
|
|
2379
2490
|
/**
|
|
2380
2491
|
* <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
2381
|
-
*
|
|
2492
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2382
2493
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
2383
2494
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
2384
2495
|
* table resource that you assign to an Lambda function. For more information about
|
|
@@ -2555,6 +2666,14 @@ export interface ProactiveAnomalySummary {
|
|
|
2555
2666
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
2556
2667
|
*/
|
|
2557
2668
|
Limit?: number;
|
|
2669
|
+
/**
|
|
2670
|
+
* <p>Returns the metadata of the source.</p>
|
|
2671
|
+
*/
|
|
2672
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
2673
|
+
/**
|
|
2674
|
+
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
2675
|
+
*/
|
|
2676
|
+
AnomalyResources?: AnomalyResource[];
|
|
2558
2677
|
}
|
|
2559
2678
|
export declare namespace ProactiveAnomalySummary {
|
|
2560
2679
|
/**
|
|
@@ -3235,7 +3354,7 @@ export declare namespace ListOrganizationInsightsRequest {
|
|
|
3235
3354
|
}
|
|
3236
3355
|
/**
|
|
3237
3356
|
* <p>Details about a proactive insight. This object is returned by
|
|
3238
|
-
*
|
|
3357
|
+
* <code>DescribeInsight</code>.</p>
|
|
3239
3358
|
*/
|
|
3240
3359
|
export interface ProactiveOrganizationInsightSummary {
|
|
3241
3360
|
/**
|
|
@@ -3255,7 +3374,8 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
3255
3374
|
*/
|
|
3256
3375
|
Name?: string;
|
|
3257
3376
|
/**
|
|
3258
|
-
* <p> An array of severity values used to search for insights.
|
|
3377
|
+
* <p> An array of severity values used to search for insights.
|
|
3378
|
+
* For more information, see
|
|
3259
3379
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3260
3380
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3261
3381
|
*/
|
|
@@ -3294,7 +3414,7 @@ export declare namespace ProactiveOrganizationInsightSummary {
|
|
|
3294
3414
|
}
|
|
3295
3415
|
/**
|
|
3296
3416
|
* <p>Information about a reactive insight. This object is returned by
|
|
3297
|
-
*
|
|
3417
|
+
* <code>DescribeInsight</code>.</p>
|
|
3298
3418
|
*/
|
|
3299
3419
|
export interface ReactiveOrganizationInsightSummary {
|
|
3300
3420
|
/**
|
|
@@ -3314,7 +3434,8 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
3314
3434
|
*/
|
|
3315
3435
|
Name?: string;
|
|
3316
3436
|
/**
|
|
3317
|
-
* <p> An array of severity values used to search for insights.
|
|
3437
|
+
* <p> An array of severity values used to search for insights.
|
|
3438
|
+
* For more information, see
|
|
3318
3439
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3319
3440
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3320
3441
|
*/
|
|
@@ -3416,11 +3537,11 @@ export interface RecommendationRelatedAnomalyResource {
|
|
|
3416
3537
|
*/
|
|
3417
3538
|
Name?: string;
|
|
3418
3539
|
/**
|
|
3419
|
-
* <p> The type of the resource. Resource types take the same form that is
|
|
3420
|
-
*
|
|
3421
|
-
* For example, <code>AWS::RDS::DBCluster</code>. For more information, see
|
|
3422
|
-
*
|
|
3423
|
-
*
|
|
3540
|
+
* <p> The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation
|
|
3541
|
+
* resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
|
|
3542
|
+
* For example, <code>AWS::RDS::DBCluster</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services
|
|
3543
|
+
* resource and property types reference</a> in the <i>Amazon Web Services CloudFormation User
|
|
3544
|
+
* Guide</i>.</p>
|
|
3424
3545
|
*/
|
|
3425
3546
|
Type?: string;
|
|
3426
3547
|
}
|
|
@@ -3566,6 +3687,10 @@ export interface Recommendation {
|
|
|
3566
3687
|
* what's happening and to help address the issue. </p>
|
|
3567
3688
|
*/
|
|
3568
3689
|
RelatedAnomalies?: RecommendationRelatedAnomaly[];
|
|
3690
|
+
/**
|
|
3691
|
+
* <p>The category type of the recommendation.</p>
|
|
3692
|
+
*/
|
|
3693
|
+
Category?: string;
|
|
3569
3694
|
}
|
|
3570
3695
|
export declare namespace Recommendation {
|
|
3571
3696
|
/**
|
|
@@ -3773,7 +3898,7 @@ export interface SearchOrganizationInsightsRequest {
|
|
|
3773
3898
|
NextToken?: string;
|
|
3774
3899
|
/**
|
|
3775
3900
|
* <p> The type of insights you are searching for (<code>REACTIVE</code> or
|
|
3776
|
-
*
|
|
3901
|
+
* <code>PROACTIVE</code>). </p>
|
|
3777
3902
|
*/
|
|
3778
3903
|
Type: InsightType | string | undefined;
|
|
3779
3904
|
}
|
|
@@ -3830,6 +3955,26 @@ export declare namespace StartCostEstimationResponse {
|
|
|
3830
3955
|
*/
|
|
3831
3956
|
const filterSensitiveLog: (obj: StartCostEstimationResponse) => any;
|
|
3832
3957
|
}
|
|
3958
|
+
export interface UpdateEventSourcesConfigRequest {
|
|
3959
|
+
/**
|
|
3960
|
+
* <p>The name of the event source.</p>
|
|
3961
|
+
*/
|
|
3962
|
+
EventSources?: EventSourcesConfig;
|
|
3963
|
+
}
|
|
3964
|
+
export declare namespace UpdateEventSourcesConfigRequest {
|
|
3965
|
+
/**
|
|
3966
|
+
* @internal
|
|
3967
|
+
*/
|
|
3968
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigRequest) => any;
|
|
3969
|
+
}
|
|
3970
|
+
export interface UpdateEventSourcesConfigResponse {
|
|
3971
|
+
}
|
|
3972
|
+
export declare namespace UpdateEventSourcesConfigResponse {
|
|
3973
|
+
/**
|
|
3974
|
+
* @internal
|
|
3975
|
+
*/
|
|
3976
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigResponse) => any;
|
|
3977
|
+
}
|
|
3833
3978
|
export declare enum UpdateResourceCollectionAction {
|
|
3834
3979
|
ADD = "ADD",
|
|
3835
3980
|
REMOVE = "REMOVE"
|
|
@@ -3853,7 +3998,7 @@ export declare namespace UpdateCloudFormationCollectionFilter {
|
|
|
3853
3998
|
}
|
|
3854
3999
|
/**
|
|
3855
4000
|
* <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
|
|
3856
|
-
*
|
|
4001
|
+
* <i>key</i>/<i>value</i> pair.</p>
|
|
3857
4002
|
*/
|
|
3858
4003
|
export interface UpdateTagCollectionFilter {
|
|
3859
4004
|
/**
|
|
@@ -3875,7 +4020,7 @@ export interface UpdateTagCollectionFilter {
|
|
|
3875
4020
|
AppBoundaryKey: string | undefined;
|
|
3876
4021
|
/**
|
|
3877
4022
|
* <p>The values in an Amazon Web Services tag collection.</p>
|
|
3878
|
-
*
|
|
4023
|
+
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
3879
4024
|
* the tag <i>key</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team
|
|
3880
4025
|
* name). The <i>key</i> and <i>value</i> are the tag's <i>key</i> pair.
|
|
3881
4026
|
* Omitting the tag <i>value</i> is the same as using an empty
|
|
@@ -3900,7 +4045,7 @@ export interface UpdateResourceCollectionFilter {
|
|
|
3900
4045
|
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
3901
4046
|
/**
|
|
3902
4047
|
* <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
3903
|
-
*
|
|
4048
|
+
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
3904
4049
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
3905
4050
|
* that the resources are related. For example, you can assign the same tag to an Amazon DynamoDB
|
|
3906
4051
|
* table resource that you assign to an Lambda function. For more information about
|