@aws-sdk/client-devops-guru 3.686.0 → 3.691.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/dist-types/models/models_0.d.ts +388 -388
- package/dist-types/ts3.4/models/models_0.d.ts +394 -388
- package/package.json +7 -7
|
@@ -27,13 +27,13 @@ export interface AccountInsightHealth {
|
|
|
27
27
|
* account.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
OpenProactiveInsights?: number;
|
|
30
|
+
OpenProactiveInsights?: number | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>An integer that specifies the number of open reactive insights in your Amazon Web Services
|
|
33
33
|
* account.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
OpenReactiveInsights?: number;
|
|
36
|
+
OpenReactiveInsights?: number | undefined;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* <p> Returns the number of open reactive insights, the number of open proactive insights,
|
|
@@ -46,14 +46,14 @@ export interface AccountHealth {
|
|
|
46
46
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
AccountId?: string;
|
|
49
|
+
AccountId?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* <p> Information about the health of the Amazon Web Services resources in your account, including the
|
|
52
52
|
* number of open proactive, open reactive insights, and the Mean Time to Recover (MTTR) of closed insights.
|
|
53
53
|
* </p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
|
-
Insight?: AccountInsightHealth;
|
|
56
|
+
Insight?: AccountInsightHealth | undefined;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
59
|
* @public
|
|
@@ -98,14 +98,14 @@ export interface NotificationFilterConfig {
|
|
|
98
98
|
* </p>
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
|
-
Severities?: InsightSeverity[];
|
|
101
|
+
Severities?: InsightSeverity[] | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* <p>
|
|
104
104
|
* The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
|
|
105
105
|
* </p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
MessageTypes?: NotificationMessageType[];
|
|
108
|
+
MessageTypes?: NotificationMessageType[] | undefined;
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* <p> Contains the Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic. </p>
|
|
@@ -123,7 +123,7 @@ export interface SnsChannelConfig {
|
|
|
123
123
|
* <p> The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic. </p>
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
|
-
TopicArn?: string;
|
|
126
|
+
TopicArn?: string | undefined;
|
|
127
127
|
}
|
|
128
128
|
/**
|
|
129
129
|
* <p> Information about notification channels you have configured with DevOps Guru.
|
|
@@ -152,7 +152,7 @@ export interface NotificationChannelConfig {
|
|
|
152
152
|
* </p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
Filters?: NotificationFilterConfig;
|
|
155
|
+
Filters?: NotificationFilterConfig | undefined;
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* @public
|
|
@@ -212,7 +212,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
212
212
|
* exception can be retried. </p>
|
|
213
213
|
* @public
|
|
214
214
|
*/
|
|
215
|
-
RetryAfterSeconds?: number;
|
|
215
|
+
RetryAfterSeconds?: number | undefined;
|
|
216
216
|
/**
|
|
217
217
|
* @internal
|
|
218
218
|
*/
|
|
@@ -248,7 +248,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
248
248
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
249
249
|
readonly name: "ServiceQuotaExceededException";
|
|
250
250
|
readonly $fault: "client";
|
|
251
|
-
Message?: string;
|
|
251
|
+
Message?: string | undefined;
|
|
252
252
|
/**
|
|
253
253
|
* @internal
|
|
254
254
|
*/
|
|
@@ -266,18 +266,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
266
266
|
* <p> The code of the quota that was exceeded, causing the throttling exception. </p>
|
|
267
267
|
* @public
|
|
268
268
|
*/
|
|
269
|
-
QuotaCode?: string;
|
|
269
|
+
QuotaCode?: string | undefined;
|
|
270
270
|
/**
|
|
271
271
|
* <p> The code of the service that caused the throttling exception. </p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
ServiceCode?: string;
|
|
274
|
+
ServiceCode?: string | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p> The number of seconds after which the action that caused the throttling exception can
|
|
277
277
|
* be retried. </p>
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
|
-
RetryAfterSeconds?: number;
|
|
280
|
+
RetryAfterSeconds?: number | undefined;
|
|
281
281
|
/**
|
|
282
282
|
* @internal
|
|
283
283
|
*/
|
|
@@ -333,12 +333,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
333
333
|
* <p> The reason the validation exception was thrown. </p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
Reason?: ValidationExceptionReason;
|
|
336
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p> An array of fields that are associated with the validation exception. </p>
|
|
339
339
|
* @public
|
|
340
340
|
*/
|
|
341
|
-
Fields?: ValidationExceptionField[];
|
|
341
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
342
342
|
/**
|
|
343
343
|
* @internal
|
|
344
344
|
*/
|
|
@@ -368,7 +368,7 @@ export interface AmazonCodeGuruProfilerIntegration {
|
|
|
368
368
|
* consume recommendations that are generated from Amazon CodeGuru Profiler.</p>
|
|
369
369
|
* @public
|
|
370
370
|
*/
|
|
371
|
-
Status?: EventSourceOptInStatus;
|
|
371
|
+
Status?: EventSourceOptInStatus | undefined;
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
374
|
* @public
|
|
@@ -401,49 +401,49 @@ export interface LogAnomalyClass {
|
|
|
401
401
|
* </p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
LogStreamName?: string;
|
|
404
|
+
LogStreamName?: string | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* <p>
|
|
407
407
|
* The type of log anomaly that has been detected.
|
|
408
408
|
* </p>
|
|
409
409
|
* @public
|
|
410
410
|
*/
|
|
411
|
-
LogAnomalyType?: LogAnomalyType;
|
|
411
|
+
LogAnomalyType?: LogAnomalyType | undefined;
|
|
412
412
|
/**
|
|
413
413
|
* <p>
|
|
414
414
|
* The token where the anomaly was detected. This may refer to an exception or another location, or it may be blank for log anomalies such as format anomalies.
|
|
415
415
|
* </p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
LogAnomalyToken?: string;
|
|
418
|
+
LogAnomalyToken?: string | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* <p>
|
|
421
421
|
* The ID of the log event.
|
|
422
422
|
* </p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
|
-
LogEventId?: string;
|
|
425
|
+
LogEventId?: string | undefined;
|
|
426
426
|
/**
|
|
427
427
|
* <p>
|
|
428
428
|
* The explanation for why the log event is considered an anomaly.
|
|
429
429
|
* </p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
Explanation?: string;
|
|
432
|
+
Explanation?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>
|
|
435
435
|
* The number of log lines where this anomalous log event occurs.
|
|
436
436
|
* </p>
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
NumberOfLogLinesOccurrences?: number;
|
|
439
|
+
NumberOfLogLinesOccurrences?: number | undefined;
|
|
440
440
|
/**
|
|
441
441
|
* <p>
|
|
442
442
|
* The time of the first occurrence of the anomalous log event.
|
|
443
443
|
* </p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
LogEventTimestamp?: Date;
|
|
446
|
+
LogEventTimestamp?: Date | undefined;
|
|
447
447
|
}
|
|
448
448
|
/**
|
|
449
449
|
* <p>
|
|
@@ -458,7 +458,7 @@ export interface LogAnomalyShowcase {
|
|
|
458
458
|
* </p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
LogAnomalyClasses?: LogAnomalyClass[];
|
|
461
|
+
LogAnomalyClasses?: LogAnomalyClass[] | undefined;
|
|
462
462
|
}
|
|
463
463
|
/**
|
|
464
464
|
* <p>
|
|
@@ -473,35 +473,35 @@ export interface AnomalousLogGroup {
|
|
|
473
473
|
* </p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
LogGroupName?: string;
|
|
476
|
+
LogGroupName?: string | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>
|
|
479
479
|
* The time the anomalous log events began. The impact start time indicates the time of the first log anomaly event that occurs.
|
|
480
480
|
* </p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
ImpactStartTime?: Date;
|
|
483
|
+
ImpactStartTime?: Date | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>
|
|
486
486
|
* The time the anomalous log events stopped.
|
|
487
487
|
* </p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
ImpactEndTime?: Date;
|
|
490
|
+
ImpactEndTime?: Date | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* <p>
|
|
493
493
|
* The number of log lines that were scanned for anomalous log events.
|
|
494
494
|
* </p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
NumberOfLogLinesScanned?: number;
|
|
497
|
+
NumberOfLogLinesScanned?: number | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>
|
|
500
500
|
* The log anomalies in the log group. Each log anomaly displayed represents a cluster of similar anomalous log events.
|
|
501
501
|
* </p>
|
|
502
502
|
* @public
|
|
503
503
|
*/
|
|
504
|
-
LogAnomalyShowcases?: LogAnomalyShowcase[];
|
|
504
|
+
LogAnomalyShowcases?: LogAnomalyShowcase[] | undefined;
|
|
505
505
|
}
|
|
506
506
|
/**
|
|
507
507
|
* <p> A time range that specifies when DevOps Guru opens and then closes an anomaly. This
|
|
@@ -519,7 +519,7 @@ export interface AnomalyReportedTimeRange {
|
|
|
519
519
|
* <p> The time when an anomaly is closed. </p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
CloseTime?: Date;
|
|
522
|
+
CloseTime?: Date | undefined;
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
525
525
|
* <p>The Amazon Web Services resources in which DevOps Guru detected unusual behavior that resulted in the
|
|
@@ -533,12 +533,12 @@ export interface AnomalyResource {
|
|
|
533
533
|
* <p>The name of the Amazon Web Services resource.</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
Name?: string;
|
|
536
|
+
Name?: string | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>The type of the Amazon Web Services resource.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
Type?: string;
|
|
541
|
+
Type?: string | undefined;
|
|
542
542
|
}
|
|
543
543
|
/**
|
|
544
544
|
* @public
|
|
@@ -565,12 +565,12 @@ export interface CloudWatchMetricsDimension {
|
|
|
565
565
|
* <p> The name of the CloudWatch dimension. </p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
Name?: string;
|
|
568
|
+
Name?: string | undefined;
|
|
569
569
|
/**
|
|
570
570
|
* <p> The value of the CloudWatch dimension. </p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
Value?: string;
|
|
573
|
+
Value?: string | undefined;
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
576
576
|
* @public
|
|
@@ -594,12 +594,12 @@ export interface TimestampMetricValuePair {
|
|
|
594
594
|
* <p>A <code>Timestamp</code> that specifies the time the event occurred. </p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
Timestamp?: Date;
|
|
597
|
+
Timestamp?: Date | undefined;
|
|
598
598
|
/**
|
|
599
599
|
* <p>Value of the anomalous metric data point at respective Timestamp.</p>
|
|
600
600
|
* @public
|
|
601
601
|
*/
|
|
602
|
-
MetricValue?: number;
|
|
602
|
+
MetricValue?: number | undefined;
|
|
603
603
|
}
|
|
604
604
|
/**
|
|
605
605
|
* <p>Contains information about the analyzed metrics that displayed anomalous behavior.
|
|
@@ -611,13 +611,13 @@ export interface CloudWatchMetricsDataSummary {
|
|
|
611
611
|
* <p>This is a list of Amazon CloudWatch metric values at given timestamp.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
TimestampMetricValuePairList?: TimestampMetricValuePair[];
|
|
614
|
+
TimestampMetricValuePairList?: TimestampMetricValuePair[] | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>This is an enum of the status showing whether the metric value pair list has partial
|
|
617
617
|
* or complete data, or if there was an error.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
StatusCode?: CloudWatchMetricDataStatusCode;
|
|
620
|
+
StatusCode?: CloudWatchMetricDataStatusCode | undefined;
|
|
621
621
|
}
|
|
622
622
|
/**
|
|
623
623
|
* @public
|
|
@@ -646,40 +646,40 @@ export interface CloudWatchMetricsDetail {
|
|
|
646
646
|
* <p> The name of the CloudWatch metric. </p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
MetricName?: string;
|
|
649
|
+
MetricName?: string | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* <p> The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics.
|
|
652
652
|
* </p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
Namespace?: string;
|
|
655
|
+
Namespace?: string | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p> An array of CloudWatch dimensions associated with </p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
Dimensions?: CloudWatchMetricsDimension[];
|
|
660
|
+
Dimensions?: CloudWatchMetricsDimension[] | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p> The type of statistic associated with the CloudWatch metric. For more information, see
|
|
663
663
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Statistic">Statistics</a> in the <i>Amazon CloudWatch User Guide</i>. </p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
Stat?: CloudWatchMetricsStat;
|
|
666
|
+
Stat?: CloudWatchMetricsStat | undefined;
|
|
667
667
|
/**
|
|
668
668
|
* <p> The unit of measure used for the CloudWatch metric. For example, <code>Bytes</code>,
|
|
669
669
|
* <code>Seconds</code>, <code>Count</code>, and <code>Percent</code>. </p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
Unit?: string;
|
|
672
|
+
Unit?: string | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p> The length of time associated with the CloudWatch metric in number of seconds. </p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
Period?: number;
|
|
677
|
+
Period?: number | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>This object returns anomaly metric data.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
MetricDataSummary?: CloudWatchMetricsDataSummary;
|
|
682
|
+
MetricDataSummary?: CloudWatchMetricsDataSummary | undefined;
|
|
683
683
|
}
|
|
684
684
|
/**
|
|
685
685
|
* <p>A logical grouping of Performance Insights metrics for a related subject area. For example, the
|
|
@@ -758,7 +758,7 @@ export interface PerformanceInsightsMetricDimensionGroup {
|
|
|
758
758
|
* </ul>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
Group?: string;
|
|
761
|
+
Group?: string | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* <p>A list of specific dimensions from a dimension group. If this parameter is not
|
|
764
764
|
* present, then it signifies that all of the dimensions in the group were requested or are
|
|
@@ -852,12 +852,12 @@ export interface PerformanceInsightsMetricDimensionGroup {
|
|
|
852
852
|
* </ul>
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
Dimensions?: string[];
|
|
855
|
+
Dimensions?: string[] | undefined;
|
|
856
856
|
/**
|
|
857
857
|
* <p>The maximum number of items to fetch for this dimension group.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
Limit?: number;
|
|
860
|
+
Limit?: number | undefined;
|
|
861
861
|
}
|
|
862
862
|
/**
|
|
863
863
|
* <p>A single query to be processed. Use these parameters to query the Performance Insights
|
|
@@ -911,7 +911,7 @@ export interface PerformanceInsightsMetricQuery {
|
|
|
911
911
|
* only. </p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
Metric?: string;
|
|
914
|
+
Metric?: string | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* <p>The specification for how to aggregate the data points from a Performance Insights
|
|
917
917
|
* <code>GetResourceMetrics</code> API query. The Performance Insights query returns all of the
|
|
@@ -920,7 +920,7 @@ export interface PerformanceInsightsMetricQuery {
|
|
|
920
920
|
* dimension.</p>
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
923
|
+
GroupBy?: PerformanceInsightsMetricDimensionGroup | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* <p>One or more filters to apply to a Performance Insights <code>GetResourceMetrics</code> API query.
|
|
926
926
|
* Restrictions:</p>
|
|
@@ -935,7 +935,7 @@ export interface PerformanceInsightsMetricQuery {
|
|
|
935
935
|
* </ul>
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
Filter?: Record<string, string
|
|
938
|
+
Filter?: Record<string, string> | undefined;
|
|
939
939
|
}
|
|
940
940
|
/**
|
|
941
941
|
* <p>Information about a reference metric used to evaluate Performance Insights.</p>
|
|
@@ -946,7 +946,7 @@ export interface PerformanceInsightsReferenceMetric {
|
|
|
946
946
|
* <p>A query to be processed on the metric.</p>
|
|
947
947
|
* @public
|
|
948
948
|
*/
|
|
949
|
-
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
949
|
+
MetricQuery?: PerformanceInsightsMetricQuery | undefined;
|
|
950
950
|
}
|
|
951
951
|
/**
|
|
952
952
|
* <p>A reference value to compare Performance Insights metrics against to determine if the metrics
|
|
@@ -958,7 +958,7 @@ export interface PerformanceInsightsReferenceScalar {
|
|
|
958
958
|
* <p>The reference value.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
Value?: number;
|
|
961
|
+
Value?: number | undefined;
|
|
962
962
|
}
|
|
963
963
|
/**
|
|
964
964
|
* <p>Reference scalar values and other metrics that DevOps Guru displays on a graph in its
|
|
@@ -974,13 +974,13 @@ export interface PerformanceInsightsReferenceComparisonValues {
|
|
|
974
974
|
* anomalous.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
977
|
+
ReferenceScalar?: PerformanceInsightsReferenceScalar | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>A metric that DevOps Guru compares to actual metric values. This reference metric is used to
|
|
980
980
|
* determine if an actual metric should be considered anomalous.</p>
|
|
981
981
|
* @public
|
|
982
982
|
*/
|
|
983
|
-
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
983
|
+
ReferenceMetric?: PerformanceInsightsReferenceMetric | undefined;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
986
986
|
* <p>Reference data used to evaluate Performance Insights to determine if its performance is anomalous or
|
|
@@ -992,7 +992,7 @@ export interface PerformanceInsightsReferenceData {
|
|
|
992
992
|
* <p>The name of the reference data.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
Name?: string;
|
|
995
|
+
Name?: string | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>The specific reference values used to evaluate the Performance Insights. For more information, see
|
|
998
998
|
* <code>
|
|
@@ -1000,7 +1000,7 @@ export interface PerformanceInsightsReferenceData {
|
|
|
1000
1000
|
* </code>. </p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
1003
|
+
ComparisonValues?: PerformanceInsightsReferenceComparisonValues | undefined;
|
|
1004
1004
|
}
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>A statistic in a Performance Insights collection.</p>
|
|
@@ -1011,12 +1011,12 @@ export interface PerformanceInsightsStat {
|
|
|
1011
1011
|
* <p>The statistic type.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
Type?: string;
|
|
1014
|
+
Type?: string | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The value of the statistic.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
Value?: number;
|
|
1019
|
+
Value?: number | undefined;
|
|
1020
1020
|
}
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>Details about Performance Insights metrics.</p>
|
|
@@ -1044,38 +1044,38 @@ export interface PerformanceInsightsMetricsDetail {
|
|
|
1044
1044
|
* <p>The name used for a specific Performance Insights metric.</p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
MetricDisplayName?: string;
|
|
1047
|
+
MetricDisplayName?: string | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* <p>The unit of measure for a metric. For example, a session or a process.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
Unit?: string;
|
|
1052
|
+
Unit?: string | undefined;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* <p>A single query to be processed for the metric. For more information, see <code>
|
|
1055
1055
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsMetricQuery.html">PerformanceInsightsMetricQuery</a>
|
|
1056
1056
|
* </code>.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
1059
|
+
MetricQuery?: PerformanceInsightsMetricQuery | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p> For more information, see <code>
|
|
1062
1062
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/APIReference/API_PerformanceInsightsReferenceData.html">PerformanceInsightsReferenceData</a>
|
|
1063
1063
|
* </code>. </p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
1066
|
+
ReferenceData?: PerformanceInsightsReferenceData[] | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>The metric statistics during the anomalous period detected by DevOps Guru;</p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
StatsAtAnomaly?: PerformanceInsightsStat[];
|
|
1071
|
+
StatsAtAnomaly?: PerformanceInsightsStat[] | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>Typical metric statistics that are not considered anomalous. When DevOps Guru analyzes
|
|
1074
1074
|
* metrics, it compares them to <code>StatsAtBaseline</code> to help determine if they are
|
|
1075
1075
|
* anomalous.</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
StatsAtBaseline?: PerformanceInsightsStat[];
|
|
1078
|
+
StatsAtBaseline?: PerformanceInsightsStat[] | undefined;
|
|
1079
1079
|
}
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p> Details about the source of the anomalous operational data that triggered the
|
|
@@ -1088,13 +1088,13 @@ export interface AnomalySourceDetails {
|
|
|
1088
1088
|
* about analyzed CloudWatch metrics that show anomalous behavior. </p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
1091
|
+
CloudWatchMetrics?: CloudWatchMetricsDetail[] | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* <p>An array of <code>PerformanceInsightsMetricsDetail</code> objects that contain
|
|
1094
1094
|
* information about analyzed Performance Insights metrics that show anomalous behavior.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
1097
|
+
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[] | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>Metadata about the detection source that generates proactive anomalies. The anomaly is
|
|
@@ -1107,17 +1107,17 @@ export interface AnomalySourceMetadata {
|
|
|
1107
1107
|
* <p>The source of the anomaly.</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
Source?: string;
|
|
1110
|
+
Source?: string | undefined;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* <p>The name of the anomaly's resource.</p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
SourceResourceName?: string;
|
|
1115
|
+
SourceResourceName?: string | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* <p>The anomaly's resource type.</p>
|
|
1118
1118
|
* @public
|
|
1119
1119
|
*/
|
|
1120
|
-
SourceResourceType?: string;
|
|
1120
|
+
SourceResourceType?: string | undefined;
|
|
1121
1121
|
}
|
|
1122
1122
|
/**
|
|
1123
1123
|
* @public
|
|
@@ -1147,7 +1147,7 @@ export interface AnomalyTimeRange {
|
|
|
1147
1147
|
* <p> The time when the anomalous behavior ended. </p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
EndTime?: Date;
|
|
1150
|
+
EndTime?: Date | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
/**
|
|
1153
1153
|
* @public
|
|
@@ -1215,7 +1215,7 @@ export interface DescribeAccountHealthResponse {
|
|
|
1215
1215
|
* </p>
|
|
1216
1216
|
* @public
|
|
1217
1217
|
*/
|
|
1218
|
-
AnalyzedResourceCount?: number;
|
|
1218
|
+
AnalyzedResourceCount?: number | undefined;
|
|
1219
1219
|
}
|
|
1220
1220
|
/**
|
|
1221
1221
|
* @public
|
|
@@ -1234,7 +1234,7 @@ export interface DescribeAccountOverviewRequest {
|
|
|
1234
1234
|
* this is not specified, then the current day is used. </p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
ToTime?: Date;
|
|
1237
|
+
ToTime?: Date | undefined;
|
|
1238
1238
|
}
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @public
|
|
@@ -1272,7 +1272,7 @@ export interface DescribeAnomalyRequest {
|
|
|
1272
1272
|
* <p>The ID of the member account.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
AccountId?: string;
|
|
1275
|
+
AccountId?: string | undefined;
|
|
1276
1276
|
}
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
@@ -1290,7 +1290,7 @@ export interface PredictionTimeRange {
|
|
|
1290
1290
|
* <p> The time when the behavior in a proactive insight is expected to end. </p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
EndTime?: Date;
|
|
1293
|
+
EndTime?: Date | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
/**
|
|
1296
1296
|
* <p> Information about Amazon Web Services CloudFormation stacks. You can use up to 500
|
|
@@ -1304,7 +1304,7 @@ export interface CloudFormationCollection {
|
|
|
1304
1304
|
* <p> An array of CloudFormation stack names. </p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
StackNames?: string[];
|
|
1307
|
+
StackNames?: string[] | undefined;
|
|
1308
1308
|
}
|
|
1309
1309
|
/**
|
|
1310
1310
|
* <p>A collection of Amazon Web Services tags.</p>
|
|
@@ -1387,7 +1387,7 @@ export interface ResourceCollection {
|
|
|
1387
1387
|
* DevOps Guru analyzes. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
CloudFormation?: CloudFormationCollection;
|
|
1390
|
+
CloudFormation?: CloudFormationCollection | undefined;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
1393
1393
|
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
@@ -1425,7 +1425,7 @@ export interface ResourceCollection {
|
|
|
1425
1425
|
* </important>
|
|
1426
1426
|
* @public
|
|
1427
1427
|
*/
|
|
1428
|
-
Tags?: TagCollection[];
|
|
1428
|
+
Tags?: TagCollection[] | undefined;
|
|
1429
1429
|
}
|
|
1430
1430
|
/**
|
|
1431
1431
|
* <p>Information about an anomaly. This object is returned by
|
|
@@ -1437,7 +1437,7 @@ export interface ProactiveAnomaly {
|
|
|
1437
1437
|
* <p> The ID of a proactive anomaly. </p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
Id?: string;
|
|
1440
|
+
Id?: string | undefined;
|
|
1441
1441
|
/**
|
|
1442
1442
|
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
1443
1443
|
* an insight determine that insight's severity. For more information, see
|
|
@@ -1445,49 +1445,49 @@ export interface ProactiveAnomaly {
|
|
|
1445
1445
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
Severity?: AnomalySeverity;
|
|
1448
|
+
Severity?: AnomalySeverity | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p> The status of a proactive anomaly. </p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
Status?: AnomalyStatus;
|
|
1453
|
+
Status?: AnomalyStatus | undefined;
|
|
1454
1454
|
/**
|
|
1455
1455
|
* <p> The time of the anomaly's most recent update. </p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
UpdateTime?: Date;
|
|
1458
|
+
UpdateTime?: Date | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p> A time range that specifies when the observed unusual behavior in an anomaly started
|
|
1461
1461
|
* and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
|
|
1462
1462
|
* the time range when DevOps Guru opens and then closes an anomaly. </p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
AnomalyTimeRange?: AnomalyTimeRange;
|
|
1465
|
+
AnomalyTimeRange?: AnomalyTimeRange | undefined;
|
|
1466
1466
|
/**
|
|
1467
1467
|
* <p>
|
|
1468
1468
|
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
1469
1469
|
* </p>
|
|
1470
1470
|
* @public
|
|
1471
1471
|
*/
|
|
1472
|
-
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
1472
|
+
AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
|
|
1473
1473
|
/**
|
|
1474
1474
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
1475
1475
|
* is expected to occur. </p>
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
PredictionTimeRange?: PredictionTimeRange;
|
|
1478
|
+
PredictionTimeRange?: PredictionTimeRange | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <p> Details about the source of the analyzed operational data that triggered the anomaly.
|
|
1481
1481
|
* The one supported source is Amazon CloudWatch metrics. </p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
SourceDetails?: AnomalySourceDetails;
|
|
1484
|
+
SourceDetails?: AnomalySourceDetails | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p> The ID of the insight that contains this anomaly. An insight is composed of related
|
|
1487
1487
|
* anomalies. </p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
AssociatedInsightId?: string;
|
|
1490
|
+
AssociatedInsightId?: string | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1493
1493
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -1495,30 +1495,30 @@ export interface ProactiveAnomaly {
|
|
|
1495
1495
|
* 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>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
ResourceCollection?: ResourceCollection;
|
|
1498
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p> A threshold that was exceeded by behavior in analyzed resources. Exceeding this
|
|
1501
1501
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
1502
1502
|
* @public
|
|
1503
1503
|
*/
|
|
1504
|
-
Limit?: number;
|
|
1504
|
+
Limit?: number | undefined;
|
|
1505
1505
|
/**
|
|
1506
1506
|
* <p>The metadata for the anomaly.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
SourceMetadata?: AnomalySourceMetadata;
|
|
1509
|
+
SourceMetadata?: AnomalySourceMetadata | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
AnomalyResources?: AnomalyResource[];
|
|
1514
|
+
AnomalyResources?: AnomalyResource[] | undefined;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>
|
|
1517
1517
|
* A description of the proactive anomaly.
|
|
1518
1518
|
* </p>
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
Description?: string;
|
|
1521
|
+
Description?: string | undefined;
|
|
1522
1522
|
}
|
|
1523
1523
|
/**
|
|
1524
1524
|
* <p>Details about a reactive anomaly. This object is returned by
|
|
@@ -1530,7 +1530,7 @@ export interface ReactiveAnomaly {
|
|
|
1530
1530
|
* <p>The ID of the reactive anomaly. </p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
Id?: string;
|
|
1533
|
+
Id?: string | undefined;
|
|
1534
1534
|
/**
|
|
1535
1535
|
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
1536
1536
|
* an insight determine that insight's severity. For more information, see
|
|
@@ -1538,38 +1538,38 @@ export interface ReactiveAnomaly {
|
|
|
1538
1538
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
Severity?: AnomalySeverity;
|
|
1541
|
+
Severity?: AnomalySeverity | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p> The status of the anomaly. </p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
Status?: AnomalyStatus;
|
|
1546
|
+
Status?: AnomalyStatus | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p> A time range that specifies when the observed unusual behavior in an anomaly started
|
|
1549
1549
|
* and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
|
|
1550
1550
|
* the time range when DevOps Guru opens and then closes an anomaly. </p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
AnomalyTimeRange?: AnomalyTimeRange;
|
|
1553
|
+
AnomalyTimeRange?: AnomalyTimeRange | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* <p>
|
|
1556
1556
|
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
1557
1557
|
* </p>
|
|
1558
1558
|
* @public
|
|
1559
1559
|
*/
|
|
1560
|
-
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
1560
|
+
AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
|
|
1561
1561
|
/**
|
|
1562
1562
|
* <p> Details about the source of the analyzed operational data that triggered the anomaly.
|
|
1563
1563
|
* The one supported source is Amazon CloudWatch metrics. </p>
|
|
1564
1564
|
* @public
|
|
1565
1565
|
*/
|
|
1566
|
-
SourceDetails?: AnomalySourceDetails;
|
|
1566
|
+
SourceDetails?: AnomalySourceDetails | undefined;
|
|
1567
1567
|
/**
|
|
1568
1568
|
* <p> The ID of the insight that contains this anomaly. An insight is composed of related
|
|
1569
1569
|
* anomalies. </p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
AssociatedInsightId?: string;
|
|
1572
|
+
AssociatedInsightId?: string | undefined;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1575
1575
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -1577,7 +1577,7 @@ export interface ReactiveAnomaly {
|
|
|
1577
1577
|
* 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>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
ResourceCollection?: ResourceCollection;
|
|
1580
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The type of the reactive anomaly. It can be one of the following types.</p>
|
|
1583
1583
|
* <ul>
|
|
@@ -1592,28 +1592,28 @@ export interface ReactiveAnomaly {
|
|
|
1592
1592
|
* </ul>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
Type?: AnomalyType;
|
|
1595
|
+
Type?: AnomalyType | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <p>The name of the reactive anomaly.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
Name?: string;
|
|
1600
|
+
Name?: string | undefined;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* <p>A description of the reactive anomaly.</p>
|
|
1603
1603
|
* @public
|
|
1604
1604
|
*/
|
|
1605
|
-
Description?: string;
|
|
1605
|
+
Description?: string | undefined;
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>The ID of the causal anomaly that is associated with this
|
|
1608
1608
|
* reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
CausalAnomalyId?: string;
|
|
1611
|
+
CausalAnomalyId?: string | undefined;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
|
|
1614
1614
|
* @public
|
|
1615
1615
|
*/
|
|
1616
|
-
AnomalyResources?: AnomalyResource[];
|
|
1616
|
+
AnomalyResources?: AnomalyResource[] | undefined;
|
|
1617
1617
|
}
|
|
1618
1618
|
/**
|
|
1619
1619
|
* @public
|
|
@@ -1623,12 +1623,12 @@ export interface DescribeAnomalyResponse {
|
|
|
1623
1623
|
* <p> A <code>ProactiveAnomaly</code> object that represents the requested anomaly. </p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
ProactiveAnomaly?: ProactiveAnomaly;
|
|
1626
|
+
ProactiveAnomaly?: ProactiveAnomaly | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p> A <code>ReactiveAnomaly</code> object that represents the requested anomaly. </p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
ReactiveAnomaly?: ReactiveAnomaly;
|
|
1631
|
+
ReactiveAnomaly?: ReactiveAnomaly | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
1634
|
* @public
|
|
@@ -1646,7 +1646,7 @@ export interface EventSourcesConfig {
|
|
|
1646
1646
|
* are generated from AWS CodeGuru Profiler.</p>
|
|
1647
1647
|
* @public
|
|
1648
1648
|
*/
|
|
1649
|
-
AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
|
|
1649
|
+
AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration | undefined;
|
|
1650
1650
|
}
|
|
1651
1651
|
/**
|
|
1652
1652
|
* @public
|
|
@@ -1656,7 +1656,7 @@ export interface DescribeEventSourcesConfigResponse {
|
|
|
1656
1656
|
* <p>Lists the event sources in the configuration.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
EventSources?: EventSourcesConfig;
|
|
1659
|
+
EventSources?: EventSourcesConfig | undefined;
|
|
1660
1660
|
}
|
|
1661
1661
|
/**
|
|
1662
1662
|
* @public
|
|
@@ -1666,7 +1666,7 @@ export interface DescribeFeedbackRequest {
|
|
|
1666
1666
|
* <p> The ID of the insight for which the feedback was provided. </p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
InsightId?: string;
|
|
1669
|
+
InsightId?: string | undefined;
|
|
1670
1670
|
}
|
|
1671
1671
|
/**
|
|
1672
1672
|
* @public
|
|
@@ -1692,12 +1692,12 @@ export interface InsightFeedback {
|
|
|
1692
1692
|
* <p> The insight feedback ID. </p>
|
|
1693
1693
|
* @public
|
|
1694
1694
|
*/
|
|
1695
|
-
Id?: string;
|
|
1695
|
+
Id?: string | undefined;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* <p> The feedback provided by the customer. </p>
|
|
1698
1698
|
* @public
|
|
1699
1699
|
*/
|
|
1700
|
-
Feedback?: InsightFeedbackOption;
|
|
1700
|
+
Feedback?: InsightFeedbackOption | undefined;
|
|
1701
1701
|
}
|
|
1702
1702
|
/**
|
|
1703
1703
|
* @public
|
|
@@ -1707,7 +1707,7 @@ export interface DescribeFeedbackResponse {
|
|
|
1707
1707
|
* <p> Information about insight feedback received from a customer. </p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
InsightFeedback?: InsightFeedback;
|
|
1710
|
+
InsightFeedback?: InsightFeedback | undefined;
|
|
1711
1711
|
}
|
|
1712
1712
|
/**
|
|
1713
1713
|
* @public
|
|
@@ -1722,7 +1722,7 @@ export interface DescribeInsightRequest {
|
|
|
1722
1722
|
* <p>The ID of the member account in the organization.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
AccountId?: string;
|
|
1725
|
+
AccountId?: string | undefined;
|
|
1726
1726
|
}
|
|
1727
1727
|
/**
|
|
1728
1728
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
@@ -1739,7 +1739,7 @@ export interface InsightTimeRange {
|
|
|
1739
1739
|
* <p> The time when the behavior described in an insight ended. </p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
EndTime?: Date;
|
|
1742
|
+
EndTime?: Date | undefined;
|
|
1743
1743
|
}
|
|
1744
1744
|
/**
|
|
1745
1745
|
* @public
|
|
@@ -1763,36 +1763,36 @@ export interface ProactiveInsight {
|
|
|
1763
1763
|
* <p>The ID of the proactive insight. </p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
Id?: string;
|
|
1766
|
+
Id?: string | undefined;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* <p>The name of the proactive insight. </p>
|
|
1769
1769
|
* @public
|
|
1770
1770
|
*/
|
|
1771
|
-
Name?: string;
|
|
1771
|
+
Name?: string | undefined;
|
|
1772
1772
|
/**
|
|
1773
1773
|
* <p>The severity of the insight. For more information, see
|
|
1774
1774
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1775
1775
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1776
1776
|
* @public
|
|
1777
1777
|
*/
|
|
1778
|
-
Severity?: InsightSeverity;
|
|
1778
|
+
Severity?: InsightSeverity | undefined;
|
|
1779
1779
|
/**
|
|
1780
1780
|
* <p>The status of the proactive insight. </p>
|
|
1781
1781
|
* @public
|
|
1782
1782
|
*/
|
|
1783
|
-
Status?: InsightStatus;
|
|
1783
|
+
Status?: InsightStatus | undefined;
|
|
1784
1784
|
/**
|
|
1785
1785
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
1786
1786
|
* ended. </p>
|
|
1787
1787
|
* @public
|
|
1788
1788
|
*/
|
|
1789
|
-
InsightTimeRange?: InsightTimeRange;
|
|
1789
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
1790
1790
|
/**
|
|
1791
1791
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
1792
1792
|
* is expected to occur. </p>
|
|
1793
1793
|
* @public
|
|
1794
1794
|
*/
|
|
1795
|
-
PredictionTimeRange?: PredictionTimeRange;
|
|
1795
|
+
PredictionTimeRange?: PredictionTimeRange | undefined;
|
|
1796
1796
|
/**
|
|
1797
1797
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1798
1798
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -1800,18 +1800,18 @@ export interface ProactiveInsight {
|
|
|
1800
1800
|
* 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>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
ResourceCollection?: ResourceCollection;
|
|
1803
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p> The ID of the Amazon Web Services System Manager OpsItem created for this insight. You must enable
|
|
1806
1806
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
SsmOpsItemId?: string;
|
|
1809
|
+
SsmOpsItemId?: string | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>Describes the proactive insight.</p>
|
|
1812
1812
|
* @public
|
|
1813
1813
|
*/
|
|
1814
|
-
Description?: string;
|
|
1814
|
+
Description?: string | undefined;
|
|
1815
1815
|
}
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p> Information about a reactive insight. This object is returned by
|
|
@@ -1823,30 +1823,30 @@ export interface ReactiveInsight {
|
|
|
1823
1823
|
* <p> The ID of a reactive insight. </p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
Id?: string;
|
|
1826
|
+
Id?: string | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p> The name of a reactive insight. </p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
Name?: string;
|
|
1831
|
+
Name?: string | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>The severity of the insight. For more information, see
|
|
1834
1834
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
1835
1835
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
1836
1836
|
* @public
|
|
1837
1837
|
*/
|
|
1838
|
-
Severity?: InsightSeverity;
|
|
1838
|
+
Severity?: InsightSeverity | undefined;
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p> The status of a reactive insight. </p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
Status?: InsightStatus;
|
|
1843
|
+
Status?: InsightStatus | undefined;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
1846
1846
|
* ended. </p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
InsightTimeRange?: InsightTimeRange;
|
|
1849
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
1852
1852
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -1854,18 +1854,18 @@ export interface ReactiveInsight {
|
|
|
1854
1854
|
* 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>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
ResourceCollection?: ResourceCollection;
|
|
1857
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p> The ID of the Amazon Web Services System Manager OpsItem created for this insight. You must enable
|
|
1860
1860
|
* the creation of OpstItems insights before they are created for each insight. </p>
|
|
1861
1861
|
* @public
|
|
1862
1862
|
*/
|
|
1863
|
-
SsmOpsItemId?: string;
|
|
1863
|
+
SsmOpsItemId?: string | undefined;
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>Describes the reactive insight.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
Description?: string;
|
|
1868
|
+
Description?: string | undefined;
|
|
1869
1869
|
}
|
|
1870
1870
|
/**
|
|
1871
1871
|
* @public
|
|
@@ -1875,12 +1875,12 @@ export interface DescribeInsightResponse {
|
|
|
1875
1875
|
* <p> A <code>ProactiveInsight</code> object that represents the requested insight. </p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
ProactiveInsight?: ProactiveInsight;
|
|
1878
|
+
ProactiveInsight?: ProactiveInsight | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p> A <code>ReactiveInsight</code> object that represents the requested insight. </p>
|
|
1881
1881
|
* @public
|
|
1882
1882
|
*/
|
|
1883
|
-
ReactiveInsight?: ReactiveInsight;
|
|
1883
|
+
ReactiveInsight?: ReactiveInsight | undefined;
|
|
1884
1884
|
}
|
|
1885
1885
|
/**
|
|
1886
1886
|
* @public
|
|
@@ -1890,12 +1890,12 @@ export interface DescribeOrganizationHealthRequest {
|
|
|
1890
1890
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
1891
1891
|
* @public
|
|
1892
1892
|
*/
|
|
1893
|
-
AccountIds?: string[];
|
|
1893
|
+
AccountIds?: string[] | undefined;
|
|
1894
1894
|
/**
|
|
1895
1895
|
* <p>The ID of the organizational unit.</p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
OrganizationalUnitIds?: string[];
|
|
1898
|
+
OrganizationalUnitIds?: string[] | undefined;
|
|
1899
1899
|
}
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
@@ -1943,17 +1943,17 @@ export interface DescribeOrganizationOverviewRequest {
|
|
|
1943
1943
|
* this is not specified, then the current day is used. </p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
ToTime?: Date;
|
|
1946
|
+
ToTime?: Date | undefined;
|
|
1947
1947
|
/**
|
|
1948
1948
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
1949
1949
|
* @public
|
|
1950
1950
|
*/
|
|
1951
|
-
AccountIds?: string[];
|
|
1951
|
+
AccountIds?: string[] | undefined;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* <p>The ID of the organizational unit.</p>
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
OrganizationalUnitIds?: string[];
|
|
1956
|
+
OrganizationalUnitIds?: string[] | undefined;
|
|
1957
1957
|
}
|
|
1958
1958
|
/**
|
|
1959
1959
|
* @public
|
|
@@ -2002,24 +2002,24 @@ export interface DescribeOrganizationResourceCollectionHealthRequest {
|
|
|
2002
2002
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
2003
2003
|
* @public
|
|
2004
2004
|
*/
|
|
2005
|
-
AccountIds?: string[];
|
|
2005
|
+
AccountIds?: string[] | undefined;
|
|
2006
2006
|
/**
|
|
2007
2007
|
* <p>The ID of the organizational unit.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
OrganizationalUnitIds?: string[];
|
|
2010
|
+
OrganizationalUnitIds?: string[] | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>The pagination token to use to retrieve
|
|
2013
2013
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
NextToken?: string;
|
|
2016
|
+
NextToken?: string | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>The maximum number of results to return with a single call.
|
|
2019
2019
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
MaxResults?: number;
|
|
2022
|
+
MaxResults?: number | undefined;
|
|
2023
2023
|
}
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p> Information about the number of open reactive and proactive insights that can be used
|
|
@@ -2031,17 +2031,17 @@ export interface InsightHealth {
|
|
|
2031
2031
|
* <p> The number of open proactive insights. </p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
OpenProactiveInsights?: number;
|
|
2034
|
+
OpenProactiveInsights?: number | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p> The number of open reactive insights. </p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
OpenReactiveInsights?: number;
|
|
2039
|
+
OpenReactiveInsights?: number | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p> The Meant Time to Recover (MTTR) for the insight. </p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
MeanTimeToRecoverInMilliseconds?: number;
|
|
2044
|
+
MeanTimeToRecoverInMilliseconds?: number | undefined;
|
|
2045
2045
|
}
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p> Information about the health of Amazon Web Services resources in your account that are specified by
|
|
@@ -2053,21 +2053,21 @@ export interface CloudFormationHealth {
|
|
|
2053
2053
|
* <p> The name of the CloudFormation stack. </p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
StackName?: string;
|
|
2056
|
+
StackName?: string | undefined;
|
|
2057
2057
|
/**
|
|
2058
2058
|
* <p> Information about the health of the Amazon Web Services resources in your account that are
|
|
2059
2059
|
* specified by an Amazon Web Services CloudFormation stack, including the number of open proactive, open reactive
|
|
2060
2060
|
* insights, and the Mean Time to Recover (MTTR) of closed insights. </p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
Insight?: InsightHealth;
|
|
2063
|
+
Insight?: InsightHealth | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>
|
|
2066
2066
|
* Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web Services CloudFormation stack.
|
|
2067
2067
|
* </p>
|
|
2068
2068
|
* @public
|
|
2069
2069
|
*/
|
|
2070
|
-
AnalyzedResourceCount?: number;
|
|
2070
|
+
AnalyzedResourceCount?: number | undefined;
|
|
2071
2071
|
}
|
|
2072
2072
|
/**
|
|
2073
2073
|
* <p>Contains the number of open proactive and reactive insights in an analyzed Amazon Web Services
|
|
@@ -2079,12 +2079,12 @@ export interface ServiceInsightHealth {
|
|
|
2079
2079
|
* <p>The number of open proactive insights in the Amazon Web Services service</p>
|
|
2080
2080
|
* @public
|
|
2081
2081
|
*/
|
|
2082
|
-
OpenProactiveInsights?: number;
|
|
2082
|
+
OpenProactiveInsights?: number | undefined;
|
|
2083
2083
|
/**
|
|
2084
2084
|
* <p>The number of open reactive insights in the Amazon Web Services service</p>
|
|
2085
2085
|
* @public
|
|
2086
2086
|
*/
|
|
2087
|
-
OpenReactiveInsights?: number;
|
|
2087
|
+
OpenReactiveInsights?: number | undefined;
|
|
2088
2088
|
}
|
|
2089
2089
|
/**
|
|
2090
2090
|
* @public
|
|
@@ -2130,21 +2130,21 @@ export interface ServiceHealth {
|
|
|
2130
2130
|
* <p>The name of the Amazon Web Services service.</p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
ServiceName?: ServiceName;
|
|
2133
|
+
ServiceName?: ServiceName | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>Represents the health of an Amazon Web Services service. This is a <code>ServiceInsightHealth</code>
|
|
2136
2136
|
* that contains the number of open proactive and reactive insights for this
|
|
2137
2137
|
* service.</p>
|
|
2138
2138
|
* @public
|
|
2139
2139
|
*/
|
|
2140
|
-
Insight?: ServiceInsightHealth;
|
|
2140
|
+
Insight?: ServiceInsightHealth | undefined;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* <p>
|
|
2143
2143
|
* Number of resources that DevOps Guru is monitoring in an analyzed Amazon Web Services service.
|
|
2144
2144
|
* </p>
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
AnalyzedResourceCount?: number;
|
|
2147
|
+
AnalyzedResourceCount?: number | undefined;
|
|
2148
2148
|
}
|
|
2149
2149
|
/**
|
|
2150
2150
|
* <p> Information about the health of Amazon Web Services resources in your account that are specified by
|
|
@@ -2169,7 +2169,7 @@ export interface TagHealth {
|
|
|
2169
2169
|
* </important>
|
|
2170
2170
|
* @public
|
|
2171
2171
|
*/
|
|
2172
|
-
AppBoundaryKey?: string;
|
|
2172
|
+
AppBoundaryKey?: string | undefined;
|
|
2173
2173
|
/**
|
|
2174
2174
|
* <p>The value in an Amazon Web Services tag.</p>
|
|
2175
2175
|
* <p>The tag's <i>value</i> is an optional field used to associate a string with
|
|
@@ -2180,21 +2180,21 @@ export interface TagHealth {
|
|
|
2180
2180
|
* case-sensitive. You can specify a maximum of 256 characters for a tag value.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
TagValue?: string;
|
|
2183
|
+
TagValue?: string | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>Information about the health of the Amazon Web Services resources in your account that are specified
|
|
2186
2186
|
* by an Amazon Web Services tag, including the number of open proactive, open reactive insights, and the
|
|
2187
2187
|
* Mean Time to Recover (MTTR) of closed insights. </p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
Insight?: InsightHealth;
|
|
2190
|
+
Insight?: InsightHealth | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p>
|
|
2193
2193
|
* Number of resources that DevOps Guru is monitoring in your account that are specified by an Amazon Web Services tag.
|
|
2194
2194
|
* </p>
|
|
2195
2195
|
* @public
|
|
2196
2196
|
*/
|
|
2197
|
-
AnalyzedResourceCount?: number;
|
|
2197
|
+
AnalyzedResourceCount?: number | undefined;
|
|
2198
2198
|
}
|
|
2199
2199
|
/**
|
|
2200
2200
|
* @public
|
|
@@ -2206,24 +2206,24 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
2206
2206
|
* information.</p>
|
|
2207
2207
|
* @public
|
|
2208
2208
|
*/
|
|
2209
|
-
CloudFormation?: CloudFormationHealth[];
|
|
2209
|
+
CloudFormation?: CloudFormationHealth[] | undefined;
|
|
2210
2210
|
/**
|
|
2211
2211
|
* <p>An array of <code>ServiceHealth</code> objects that describes the health of the Amazon Web Services
|
|
2212
2212
|
* services associated with the resources in the collection.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
Service?: ServiceHealth[];
|
|
2215
|
+
Service?: ServiceHealth[] | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>The name of the organization's account.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
Account?: AccountHealth[];
|
|
2220
|
+
Account?: AccountHealth[] | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>The pagination token to use to retrieve
|
|
2223
2223
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
NextToken?: string;
|
|
2226
|
+
NextToken?: string | undefined;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
2229
2229
|
* tagging, so you can assign the same tag to resources from different services to indicate
|
|
@@ -2260,7 +2260,7 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
2260
2260
|
* </important>
|
|
2261
2261
|
* @public
|
|
2262
2262
|
*/
|
|
2263
|
-
Tags?: TagHealth[];
|
|
2263
|
+
Tags?: TagHealth[] | undefined;
|
|
2264
2264
|
}
|
|
2265
2265
|
/**
|
|
2266
2266
|
* @public
|
|
@@ -2292,7 +2292,7 @@ export interface DescribeResourceCollectionHealthRequest {
|
|
|
2292
2292
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
NextToken?: string;
|
|
2295
|
+
NextToken?: string | undefined;
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
2298
|
* @public
|
|
@@ -2304,19 +2304,19 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
2304
2304
|
* information. </p>
|
|
2305
2305
|
* @public
|
|
2306
2306
|
*/
|
|
2307
|
-
CloudFormation?: CloudFormationHealth[];
|
|
2307
|
+
CloudFormation?: CloudFormationHealth[] | undefined;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* <p>An array of <code>ServiceHealth</code> objects that describes the health of the Amazon Web Services
|
|
2310
2310
|
* services associated with the resources in the collection.</p>
|
|
2311
2311
|
* @public
|
|
2312
2312
|
*/
|
|
2313
|
-
Service?: ServiceHealth[];
|
|
2313
|
+
Service?: ServiceHealth[] | undefined;
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>The pagination token to use to retrieve
|
|
2316
2316
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
2317
2317
|
* @public
|
|
2318
2318
|
*/
|
|
2319
|
-
NextToken?: string;
|
|
2319
|
+
NextToken?: string | undefined;
|
|
2320
2320
|
/**
|
|
2321
2321
|
* <p>The Amazon Web Services tags that are used by resources in the resource collection.</p>
|
|
2322
2322
|
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
@@ -2354,7 +2354,7 @@ export interface DescribeResourceCollectionHealthResponse {
|
|
|
2354
2354
|
* </important>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
Tags?: TagHealth[];
|
|
2357
|
+
Tags?: TagHealth[] | undefined;
|
|
2358
2358
|
}
|
|
2359
2359
|
/**
|
|
2360
2360
|
* @public
|
|
@@ -2409,21 +2409,21 @@ export interface KMSServerSideEncryptionIntegration {
|
|
|
2409
2409
|
* <p>Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias</p>
|
|
2410
2410
|
* @public
|
|
2411
2411
|
*/
|
|
2412
|
-
KMSKeyId?: string;
|
|
2412
|
+
KMSKeyId?: string | undefined;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* <p>
|
|
2415
2415
|
* Specifies if DevOps Guru is enabled for customer managed keys.
|
|
2416
2416
|
* </p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
OptInStatus?: OptInStatus;
|
|
2419
|
+
OptInStatus?: OptInStatus | undefined;
|
|
2420
2420
|
/**
|
|
2421
2421
|
* <p>
|
|
2422
2422
|
* The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.
|
|
2423
2423
|
* </p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
Type?: ServerSideEncryptionType;
|
|
2426
|
+
Type?: ServerSideEncryptionType | undefined;
|
|
2427
2427
|
}
|
|
2428
2428
|
/**
|
|
2429
2429
|
* <p>
|
|
@@ -2436,7 +2436,7 @@ export interface LogsAnomalyDetectionIntegration {
|
|
|
2436
2436
|
* <p>Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups.</p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
OptInStatus?: OptInStatus;
|
|
2439
|
+
OptInStatus?: OptInStatus | undefined;
|
|
2440
2440
|
}
|
|
2441
2441
|
/**
|
|
2442
2442
|
* <p> Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager
|
|
@@ -2449,7 +2449,7 @@ export interface OpsCenterIntegration {
|
|
|
2449
2449
|
* insight. </p>
|
|
2450
2450
|
* @public
|
|
2451
2451
|
*/
|
|
2452
|
-
OptInStatus?: OptInStatus;
|
|
2452
|
+
OptInStatus?: OptInStatus | undefined;
|
|
2453
2453
|
}
|
|
2454
2454
|
/**
|
|
2455
2455
|
* <p> Information about the integration of DevOps Guru with another Amazon Web Services service, such as
|
|
@@ -2462,21 +2462,21 @@ export interface ServiceIntegrationConfig {
|
|
|
2462
2462
|
* OpsCenter for each created insight. </p>
|
|
2463
2463
|
* @public
|
|
2464
2464
|
*/
|
|
2465
|
-
OpsCenter?: OpsCenterIntegration;
|
|
2465
|
+
OpsCenter?: OpsCenterIntegration | undefined;
|
|
2466
2466
|
/**
|
|
2467
2467
|
* <p>
|
|
2468
2468
|
* Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
|
|
2469
2469
|
* </p>
|
|
2470
2470
|
* @public
|
|
2471
2471
|
*/
|
|
2472
|
-
LogsAnomalyDetection?: LogsAnomalyDetectionIntegration;
|
|
2472
|
+
LogsAnomalyDetection?: LogsAnomalyDetectionIntegration | undefined;
|
|
2473
2473
|
/**
|
|
2474
2474
|
* <p>
|
|
2475
2475
|
* Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
|
|
2476
2476
|
* </p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
KMSServerSideEncryption?: KMSServerSideEncryptionIntegration;
|
|
2479
|
+
KMSServerSideEncryption?: KMSServerSideEncryptionIntegration | undefined;
|
|
2480
2480
|
}
|
|
2481
2481
|
/**
|
|
2482
2482
|
* @public
|
|
@@ -2487,7 +2487,7 @@ export interface DescribeServiceIntegrationResponse {
|
|
|
2487
2487
|
* Amazon Web Services Systems Manager. </p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
ServiceIntegration?: ServiceIntegrationConfig;
|
|
2490
|
+
ServiceIntegration?: ServiceIntegrationConfig | undefined;
|
|
2491
2491
|
}
|
|
2492
2492
|
/**
|
|
2493
2493
|
* @public
|
|
@@ -2498,7 +2498,7 @@ export interface GetCostEstimationRequest {
|
|
|
2498
2498
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
2499
2499
|
* @public
|
|
2500
2500
|
*/
|
|
2501
|
-
NextToken?: string;
|
|
2501
|
+
NextToken?: string | undefined;
|
|
2502
2502
|
}
|
|
2503
2503
|
/**
|
|
2504
2504
|
* @public
|
|
@@ -2525,7 +2525,7 @@ export interface ServiceResourceCost {
|
|
|
2525
2525
|
* <p>The type of the Amazon Web Services resource.</p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
Type?: string;
|
|
2528
|
+
Type?: string | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* <p>The state of the resource. The resource is <code>ACTIVE</code> if it produces metrics,
|
|
2531
2531
|
* events, or logs within an hour, otherwise it is <code>INACTIVE</code>. You pay for the
|
|
@@ -2533,13 +2533,13 @@ export interface ServiceResourceCost {
|
|
|
2533
2533
|
* not charged. </p>
|
|
2534
2534
|
* @public
|
|
2535
2535
|
*/
|
|
2536
|
-
State?: CostEstimationServiceResourceState;
|
|
2536
|
+
State?: CostEstimationServiceResourceState | undefined;
|
|
2537
2537
|
/**
|
|
2538
2538
|
* <p>The number of active resources analyzed for this service to create a monthly cost
|
|
2539
2539
|
* estimate.</p>
|
|
2540
2540
|
* @public
|
|
2541
2541
|
*/
|
|
2542
|
-
Count?: number;
|
|
2542
|
+
Count?: number | undefined;
|
|
2543
2543
|
/**
|
|
2544
2544
|
* <p>The price per hour to analyze the resources in the service.
|
|
2545
2545
|
* For more information,
|
|
@@ -2548,13 +2548,13 @@ export interface ServiceResourceCost {
|
|
|
2548
2548
|
* <a href="http://aws.amazon.com/devops-guru/pricing/">Amazon DevOps Guru pricing</a>.</p>
|
|
2549
2549
|
* @public
|
|
2550
2550
|
*/
|
|
2551
|
-
UnitCost?: number;
|
|
2551
|
+
UnitCost?: number | undefined;
|
|
2552
2552
|
/**
|
|
2553
2553
|
* <p>The total estimated monthly cost to analyze the active resources for this
|
|
2554
2554
|
* resource.</p>
|
|
2555
2555
|
* @public
|
|
2556
2556
|
*/
|
|
2557
|
-
Cost?: number;
|
|
2557
|
+
Cost?: number | undefined;
|
|
2558
2558
|
}
|
|
2559
2559
|
/**
|
|
2560
2560
|
* <p>Information about an Amazon Web Services CloudFormation stack used to create a monthly cost estimate
|
|
@@ -2569,7 +2569,7 @@ export interface CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
2569
2569
|
* <p>An array of CloudFormation stack names. Its size is fixed at 1 item.</p>
|
|
2570
2570
|
* @public
|
|
2571
2571
|
*/
|
|
2572
|
-
StackNames?: string[];
|
|
2572
|
+
StackNames?: string[] | undefined;
|
|
2573
2573
|
}
|
|
2574
2574
|
/**
|
|
2575
2575
|
* <p>Information about a collection of Amazon Web Services resources that are identified by an Amazon Web Services tag.
|
|
@@ -2625,7 +2625,7 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
2625
2625
|
* used to create a monthly estimate for DevOps Guru.</p>
|
|
2626
2626
|
* @public
|
|
2627
2627
|
*/
|
|
2628
|
-
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
2628
|
+
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter | undefined;
|
|
2629
2629
|
/**
|
|
2630
2630
|
* <p>The Amazon Web Services tags used to filter the resource collection that is used for a cost
|
|
2631
2631
|
* estimate.</p>
|
|
@@ -2664,7 +2664,7 @@ export interface CostEstimationResourceCollectionFilter {
|
|
|
2664
2664
|
* </important>
|
|
2665
2665
|
* @public
|
|
2666
2666
|
*/
|
|
2667
|
-
Tags?: TagCostEstimationResourceCollectionFilter[];
|
|
2667
|
+
Tags?: TagCostEstimationResourceCollectionFilter[] | undefined;
|
|
2668
2668
|
}
|
|
2669
2669
|
/**
|
|
2670
2670
|
* @public
|
|
@@ -2687,12 +2687,12 @@ export interface CostEstimationTimeRange {
|
|
|
2687
2687
|
* <p>The start time of the cost estimation.</p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
StartTime?: Date;
|
|
2690
|
+
StartTime?: Date | undefined;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* <p>The end time of the cost estimation.</p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
EndTime?: Date;
|
|
2695
|
+
EndTime?: Date | undefined;
|
|
2696
2696
|
}
|
|
2697
2697
|
/**
|
|
2698
2698
|
* @public
|
|
@@ -2703,38 +2703,38 @@ export interface GetCostEstimationResponse {
|
|
|
2703
2703
|
* estimate.</p>
|
|
2704
2704
|
* @public
|
|
2705
2705
|
*/
|
|
2706
|
-
ResourceCollection?: CostEstimationResourceCollectionFilter;
|
|
2706
|
+
ResourceCollection?: CostEstimationResourceCollectionFilter | undefined;
|
|
2707
2707
|
/**
|
|
2708
2708
|
* <p>The status of creating this cost estimate. If it's still in progress, the status
|
|
2709
2709
|
* <code>ONGOING</code> is returned. If it is finished, the status
|
|
2710
2710
|
* <code>COMPLETED</code> is returned.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
Status?: CostEstimationStatus;
|
|
2713
|
+
Status?: CostEstimationStatus | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>An array of <code>ResourceCost</code> objects that each contains details about the
|
|
2716
2716
|
* monthly cost estimate to analyze one of your Amazon Web Services resources.</p>
|
|
2717
2717
|
* @public
|
|
2718
2718
|
*/
|
|
2719
|
-
Costs?: ServiceResourceCost[];
|
|
2719
|
+
Costs?: ServiceResourceCost[] | undefined;
|
|
2720
2720
|
/**
|
|
2721
2721
|
* <p>The start and end time of the cost estimation.</p>
|
|
2722
2722
|
* @public
|
|
2723
2723
|
*/
|
|
2724
|
-
TimeRange?: CostEstimationTimeRange;
|
|
2724
|
+
TimeRange?: CostEstimationTimeRange | undefined;
|
|
2725
2725
|
/**
|
|
2726
2726
|
* <p>The estimated monthly cost to analyze the Amazon Web Services resources. This value is the sum of
|
|
2727
2727
|
* the estimated costs to analyze each resource in the <code>Costs</code> object in this
|
|
2728
2728
|
* response.</p>
|
|
2729
2729
|
* @public
|
|
2730
2730
|
*/
|
|
2731
|
-
TotalCost?: number;
|
|
2731
|
+
TotalCost?: number | undefined;
|
|
2732
2732
|
/**
|
|
2733
2733
|
* <p>The pagination token to use to retrieve
|
|
2734
2734
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
2735
2735
|
* @public
|
|
2736
2736
|
*/
|
|
2737
|
-
NextToken?: string;
|
|
2737
|
+
NextToken?: string | undefined;
|
|
2738
2738
|
}
|
|
2739
2739
|
/**
|
|
2740
2740
|
* @public
|
|
@@ -2751,7 +2751,7 @@ export interface GetResourceCollectionRequest {
|
|
|
2751
2751
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
2752
2752
|
* @public
|
|
2753
2753
|
*/
|
|
2754
|
-
NextToken?: string;
|
|
2754
|
+
NextToken?: string | undefined;
|
|
2755
2755
|
}
|
|
2756
2756
|
/**
|
|
2757
2757
|
* <p> Information about Amazon Web Services CloudFormation stacks. You can use up to 500
|
|
@@ -2765,7 +2765,7 @@ export interface CloudFormationCollectionFilter {
|
|
|
2765
2765
|
* <p> An array of CloudFormation stack names. </p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
StackNames?: string[];
|
|
2768
|
+
StackNames?: string[] | undefined;
|
|
2769
2769
|
}
|
|
2770
2770
|
/**
|
|
2771
2771
|
* <p>A collection of Amazon Web Services tags used to filter insights. This is used to return insights
|
|
@@ -2816,7 +2816,7 @@ export interface ResourceCollectionFilter {
|
|
|
2816
2816
|
* <i>Amazon Web Services CloudFormation User Guide</i>. </p>
|
|
2817
2817
|
* @public
|
|
2818
2818
|
*/
|
|
2819
|
-
CloudFormation?: CloudFormationCollectionFilter;
|
|
2819
|
+
CloudFormation?: CloudFormationCollectionFilter | undefined;
|
|
2820
2820
|
/**
|
|
2821
2821
|
* <p>The Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
2822
2822
|
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
@@ -2854,7 +2854,7 @@ export interface ResourceCollectionFilter {
|
|
|
2854
2854
|
* </important>
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
Tags?: TagCollectionFilter[];
|
|
2857
|
+
Tags?: TagCollectionFilter[] | undefined;
|
|
2858
2858
|
}
|
|
2859
2859
|
/**
|
|
2860
2860
|
* @public
|
|
@@ -2867,13 +2867,13 @@ export interface GetResourceCollectionResponse {
|
|
|
2867
2867
|
* 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>
|
|
2868
2868
|
* @public
|
|
2869
2869
|
*/
|
|
2870
|
-
ResourceCollection?: ResourceCollectionFilter;
|
|
2870
|
+
ResourceCollection?: ResourceCollectionFilter | undefined;
|
|
2871
2871
|
/**
|
|
2872
2872
|
* <p>The pagination token to use to retrieve
|
|
2873
2873
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
2874
2874
|
* @public
|
|
2875
2875
|
*/
|
|
2876
|
-
NextToken?: string;
|
|
2876
|
+
NextToken?: string | undefined;
|
|
2877
2877
|
}
|
|
2878
2878
|
/**
|
|
2879
2879
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
@@ -2884,7 +2884,7 @@ export interface ServiceCollection {
|
|
|
2884
2884
|
* <p>An array of strings that each specifies the name of an Amazon Web Services service.</p>
|
|
2885
2885
|
* @public
|
|
2886
2886
|
*/
|
|
2887
|
-
ServiceNames?: ServiceName[];
|
|
2887
|
+
ServiceNames?: ServiceName[] | undefined;
|
|
2888
2888
|
}
|
|
2889
2889
|
/**
|
|
2890
2890
|
* <p>
|
|
@@ -2897,7 +2897,7 @@ export interface ListAnomaliesForInsightFilters {
|
|
|
2897
2897
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
2898
2898
|
* @public
|
|
2899
2899
|
*/
|
|
2900
|
-
ServiceCollection?: ServiceCollection;
|
|
2900
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
2901
2901
|
}
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p> A time range used to specify when the behavior of an insight or anomaly started.
|
|
@@ -2909,12 +2909,12 @@ export interface StartTimeRange {
|
|
|
2909
2909
|
* <p> The start time of the time range. </p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
FromTime?: Date;
|
|
2912
|
+
FromTime?: Date | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p> The end time of the time range. </p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
ToTime?: Date;
|
|
2917
|
+
ToTime?: Date | undefined;
|
|
2918
2918
|
}
|
|
2919
2919
|
/**
|
|
2920
2920
|
* @public
|
|
@@ -2930,31 +2930,31 @@ export interface ListAnomaliesForInsightRequest {
|
|
|
2930
2930
|
* anomalies started during this time range. </p>
|
|
2931
2931
|
* @public
|
|
2932
2932
|
*/
|
|
2933
|
-
StartTimeRange?: StartTimeRange;
|
|
2933
|
+
StartTimeRange?: StartTimeRange | undefined;
|
|
2934
2934
|
/**
|
|
2935
2935
|
* <p>The maximum number of results to return with a single call.
|
|
2936
2936
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
2937
2937
|
* @public
|
|
2938
2938
|
*/
|
|
2939
|
-
MaxResults?: number;
|
|
2939
|
+
MaxResults?: number | undefined;
|
|
2940
2940
|
/**
|
|
2941
2941
|
* <p>The pagination token to use to retrieve
|
|
2942
2942
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
2943
2943
|
* @public
|
|
2944
2944
|
*/
|
|
2945
|
-
NextToken?: string;
|
|
2945
|
+
NextToken?: string | undefined;
|
|
2946
2946
|
/**
|
|
2947
2947
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
2948
2948
|
* @public
|
|
2949
2949
|
*/
|
|
2950
|
-
AccountId?: string;
|
|
2950
|
+
AccountId?: string | undefined;
|
|
2951
2951
|
/**
|
|
2952
2952
|
* <p>
|
|
2953
2953
|
* Specifies one or more service names that are used to list anomalies.
|
|
2954
2954
|
* </p>
|
|
2955
2955
|
* @public
|
|
2956
2956
|
*/
|
|
2957
|
-
Filters?: ListAnomaliesForInsightFilters;
|
|
2957
|
+
Filters?: ListAnomaliesForInsightFilters | undefined;
|
|
2958
2958
|
}
|
|
2959
2959
|
/**
|
|
2960
2960
|
* <p>Details about a proactive anomaly. This object is returned by
|
|
@@ -2967,7 +2967,7 @@ export interface ProactiveAnomalySummary {
|
|
|
2967
2967
|
* <p>The ID of the anomaly.</p>
|
|
2968
2968
|
* @public
|
|
2969
2969
|
*/
|
|
2970
|
-
Id?: string;
|
|
2970
|
+
Id?: string | undefined;
|
|
2971
2971
|
/**
|
|
2972
2972
|
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
2973
2973
|
* an insight determine that insight's severity. For more information, see
|
|
@@ -2975,49 +2975,49 @@ export interface ProactiveAnomalySummary {
|
|
|
2975
2975
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
2976
2976
|
* @public
|
|
2977
2977
|
*/
|
|
2978
|
-
Severity?: AnomalySeverity;
|
|
2978
|
+
Severity?: AnomalySeverity | undefined;
|
|
2979
2979
|
/**
|
|
2980
2980
|
* <p>The status of the anomaly.</p>
|
|
2981
2981
|
* @public
|
|
2982
2982
|
*/
|
|
2983
|
-
Status?: AnomalyStatus;
|
|
2983
|
+
Status?: AnomalyStatus | undefined;
|
|
2984
2984
|
/**
|
|
2985
2985
|
* <p> The time of the anomaly's most recent update. </p>
|
|
2986
2986
|
* @public
|
|
2987
2987
|
*/
|
|
2988
|
-
UpdateTime?: Date;
|
|
2988
|
+
UpdateTime?: Date | undefined;
|
|
2989
2989
|
/**
|
|
2990
2990
|
* <p> A time range that specifies when the observed unusual behavior in an anomaly started
|
|
2991
2991
|
* and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
|
|
2992
2992
|
* the time range when DevOps Guru opens and then closes an anomaly. </p>
|
|
2993
2993
|
* @public
|
|
2994
2994
|
*/
|
|
2995
|
-
AnomalyTimeRange?: AnomalyTimeRange;
|
|
2995
|
+
AnomalyTimeRange?: AnomalyTimeRange | undefined;
|
|
2996
2996
|
/**
|
|
2997
2997
|
* <p>
|
|
2998
2998
|
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
2999
2999
|
* </p>
|
|
3000
3000
|
* @public
|
|
3001
3001
|
*/
|
|
3002
|
-
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
3002
|
+
AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
|
|
3003
3003
|
/**
|
|
3004
3004
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
3005
3005
|
* is expected to occur. </p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
PredictionTimeRange?: PredictionTimeRange;
|
|
3008
|
+
PredictionTimeRange?: PredictionTimeRange | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p> Details about the source of the analyzed operational data that triggered the anomaly.
|
|
3011
3011
|
* The one supported source is Amazon CloudWatch metrics. </p>
|
|
3012
3012
|
* @public
|
|
3013
3013
|
*/
|
|
3014
|
-
SourceDetails?: AnomalySourceDetails;
|
|
3014
|
+
SourceDetails?: AnomalySourceDetails | undefined;
|
|
3015
3015
|
/**
|
|
3016
3016
|
* <p> The ID of the insight that contains this anomaly. An insight is composed of related
|
|
3017
3017
|
* anomalies. </p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
AssociatedInsightId?: string;
|
|
3020
|
+
AssociatedInsightId?: string | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3023
3023
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3025,30 +3025,30 @@ export interface ProactiveAnomalySummary {
|
|
|
3025
3025
|
* 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>
|
|
3026
3026
|
* @public
|
|
3027
3027
|
*/
|
|
3028
|
-
ResourceCollection?: ResourceCollection;
|
|
3028
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3029
3029
|
/**
|
|
3030
3030
|
* <p> A threshold that was exceeded by behavior in analyzed resources. Exceeding this
|
|
3031
3031
|
* threshold is related to the anomalous behavior that generated this anomaly. </p>
|
|
3032
3032
|
* @public
|
|
3033
3033
|
*/
|
|
3034
|
-
Limit?: number;
|
|
3034
|
+
Limit?: number | undefined;
|
|
3035
3035
|
/**
|
|
3036
3036
|
* <p>The metadata of the source which detects proactive anomalies.</p>
|
|
3037
3037
|
* @public
|
|
3038
3038
|
*/
|
|
3039
|
-
SourceMetadata?: AnomalySourceMetadata;
|
|
3039
|
+
SourceMetadata?: AnomalySourceMetadata | undefined;
|
|
3040
3040
|
/**
|
|
3041
3041
|
* <p>Information about a resource in which DevOps Guru detected anomalous behavior.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
AnomalyResources?: AnomalyResource[];
|
|
3044
|
+
AnomalyResources?: AnomalyResource[] | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>
|
|
3047
3047
|
* A description of the proactive anomaly.
|
|
3048
3048
|
* </p>
|
|
3049
3049
|
* @public
|
|
3050
3050
|
*/
|
|
3051
|
-
Description?: string;
|
|
3051
|
+
Description?: string | undefined;
|
|
3052
3052
|
}
|
|
3053
3053
|
/**
|
|
3054
3054
|
* <p>Details about a reactive anomaly. This object is returned by
|
|
@@ -3061,7 +3061,7 @@ export interface ReactiveAnomalySummary {
|
|
|
3061
3061
|
* <p> The ID of the reactive anomaly. </p>
|
|
3062
3062
|
* @public
|
|
3063
3063
|
*/
|
|
3064
|
-
Id?: string;
|
|
3064
|
+
Id?: string | undefined;
|
|
3065
3065
|
/**
|
|
3066
3066
|
* <p>The severity of the anomaly. The severity of anomalies that generate
|
|
3067
3067
|
* an insight determine that insight's severity. For more information, see
|
|
@@ -3069,38 +3069,38 @@ export interface ReactiveAnomalySummary {
|
|
|
3069
3069
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
Severity?: AnomalySeverity;
|
|
3072
|
+
Severity?: AnomalySeverity | undefined;
|
|
3073
3073
|
/**
|
|
3074
3074
|
* <p> The status of the reactive anomaly. </p>
|
|
3075
3075
|
* @public
|
|
3076
3076
|
*/
|
|
3077
|
-
Status?: AnomalyStatus;
|
|
3077
|
+
Status?: AnomalyStatus | undefined;
|
|
3078
3078
|
/**
|
|
3079
3079
|
* <p> A time range that specifies when the observed unusual behavior in an anomaly started
|
|
3080
3080
|
* and ended. This is different from <code>AnomalyReportedTimeRange</code>, which specifies
|
|
3081
3081
|
* the time range when DevOps Guru opens and then closes an anomaly. </p>
|
|
3082
3082
|
* @public
|
|
3083
3083
|
*/
|
|
3084
|
-
AnomalyTimeRange?: AnomalyTimeRange;
|
|
3084
|
+
AnomalyTimeRange?: AnomalyTimeRange | undefined;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* <p>
|
|
3087
3087
|
* An <code>AnomalyReportedTimeRange</code> object that specifies the time range between when the anomaly is opened and the time when it is closed.
|
|
3088
3088
|
* </p>
|
|
3089
3089
|
* @public
|
|
3090
3090
|
*/
|
|
3091
|
-
AnomalyReportedTimeRange?: AnomalyReportedTimeRange;
|
|
3091
|
+
AnomalyReportedTimeRange?: AnomalyReportedTimeRange | undefined;
|
|
3092
3092
|
/**
|
|
3093
3093
|
* <p> Details about the source of the analyzed operational data that triggered the anomaly.
|
|
3094
3094
|
* The one supported source is Amazon CloudWatch metrics. </p>
|
|
3095
3095
|
* @public
|
|
3096
3096
|
*/
|
|
3097
|
-
SourceDetails?: AnomalySourceDetails;
|
|
3097
|
+
SourceDetails?: AnomalySourceDetails | undefined;
|
|
3098
3098
|
/**
|
|
3099
3099
|
* <p> The ID of the insight that contains this anomaly. An insight is composed of related
|
|
3100
3100
|
* anomalies. </p>
|
|
3101
3101
|
* @public
|
|
3102
3102
|
*/
|
|
3103
|
-
AssociatedInsightId?: string;
|
|
3103
|
+
AssociatedInsightId?: string | undefined;
|
|
3104
3104
|
/**
|
|
3105
3105
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3106
3106
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3108,7 +3108,7 @@ export interface ReactiveAnomalySummary {
|
|
|
3108
3108
|
* 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>
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
3111
|
-
ResourceCollection?: ResourceCollection;
|
|
3111
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3112
3112
|
/**
|
|
3113
3113
|
* <p>The type of the reactive anomaly. It can be one of the following types.</p>
|
|
3114
3114
|
* <ul>
|
|
@@ -3123,28 +3123,28 @@ export interface ReactiveAnomalySummary {
|
|
|
3123
3123
|
* </ul>
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
Type?: AnomalyType;
|
|
3126
|
+
Type?: AnomalyType | undefined;
|
|
3127
3127
|
/**
|
|
3128
3128
|
* <p>The name of the reactive anomaly.</p>
|
|
3129
3129
|
* @public
|
|
3130
3130
|
*/
|
|
3131
|
-
Name?: string;
|
|
3131
|
+
Name?: string | undefined;
|
|
3132
3132
|
/**
|
|
3133
3133
|
* <p>A description of the reactive anomaly.</p>
|
|
3134
3134
|
* @public
|
|
3135
3135
|
*/
|
|
3136
|
-
Description?: string;
|
|
3136
|
+
Description?: string | undefined;
|
|
3137
3137
|
/**
|
|
3138
3138
|
* <p>The ID of the causal anomaly that is associated with this
|
|
3139
3139
|
* reactive anomaly. The ID of a `CAUSAL` anomaly is always `NULL`.</p>
|
|
3140
3140
|
* @public
|
|
3141
3141
|
*/
|
|
3142
|
-
CausalAnomalyId?: string;
|
|
3142
|
+
CausalAnomalyId?: string | undefined;
|
|
3143
3143
|
/**
|
|
3144
3144
|
* <p>The Amazon Web Services resources in which anomalous behavior was detected by DevOps Guru.</p>
|
|
3145
3145
|
* @public
|
|
3146
3146
|
*/
|
|
3147
|
-
AnomalyResources?: AnomalyResource[];
|
|
3147
|
+
AnomalyResources?: AnomalyResource[] | undefined;
|
|
3148
3148
|
}
|
|
3149
3149
|
/**
|
|
3150
3150
|
* @public
|
|
@@ -3155,19 +3155,19 @@ export interface ListAnomaliesForInsightResponse {
|
|
|
3155
3155
|
* anomalies </p>
|
|
3156
3156
|
* @public
|
|
3157
3157
|
*/
|
|
3158
|
-
ProactiveAnomalies?: ProactiveAnomalySummary[];
|
|
3158
|
+
ProactiveAnomalies?: ProactiveAnomalySummary[] | undefined;
|
|
3159
3159
|
/**
|
|
3160
3160
|
* <p> An array of <code>ReactiveAnomalySummary</code> objects that represent the requested
|
|
3161
3161
|
* anomalies </p>
|
|
3162
3162
|
* @public
|
|
3163
3163
|
*/
|
|
3164
|
-
ReactiveAnomalies?: ReactiveAnomalySummary[];
|
|
3164
|
+
ReactiveAnomalies?: ReactiveAnomalySummary[] | undefined;
|
|
3165
3165
|
/**
|
|
3166
3166
|
* <p>The pagination token to use to retrieve
|
|
3167
3167
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
NextToken?: string;
|
|
3170
|
+
NextToken?: string | undefined;
|
|
3171
3171
|
}
|
|
3172
3172
|
/**
|
|
3173
3173
|
* @public
|
|
@@ -3185,13 +3185,13 @@ export interface ListAnomalousLogGroupsRequest {
|
|
|
3185
3185
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
3186
3186
|
* @public
|
|
3187
3187
|
*/
|
|
3188
|
-
MaxResults?: number;
|
|
3188
|
+
MaxResults?: number | undefined;
|
|
3189
3189
|
/**
|
|
3190
3190
|
* <p>The pagination token to use to retrieve
|
|
3191
3191
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3192
3192
|
* @public
|
|
3193
3193
|
*/
|
|
3194
|
-
NextToken?: string;
|
|
3194
|
+
NextToken?: string | undefined;
|
|
3195
3195
|
}
|
|
3196
3196
|
/**
|
|
3197
3197
|
* @public
|
|
@@ -3216,7 +3216,7 @@ export interface ListAnomalousLogGroupsResponse {
|
|
|
3216
3216
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3217
3217
|
* @public
|
|
3218
3218
|
*/
|
|
3219
|
-
NextToken?: string;
|
|
3219
|
+
NextToken?: string | undefined;
|
|
3220
3220
|
}
|
|
3221
3221
|
/**
|
|
3222
3222
|
* @public
|
|
@@ -3273,29 +3273,29 @@ export interface ListEventsFilters {
|
|
|
3273
3273
|
* <p> An ID of an insight that is related to the events you want to filter for. </p>
|
|
3274
3274
|
* @public
|
|
3275
3275
|
*/
|
|
3276
|
-
InsightId?: string;
|
|
3276
|
+
InsightId?: string | undefined;
|
|
3277
3277
|
/**
|
|
3278
3278
|
* <p> A time range during which you want the filtered events to have occurred. </p>
|
|
3279
3279
|
* @public
|
|
3280
3280
|
*/
|
|
3281
|
-
EventTimeRange?: EventTimeRange;
|
|
3281
|
+
EventTimeRange?: EventTimeRange | undefined;
|
|
3282
3282
|
/**
|
|
3283
3283
|
* <p> The class of the events you want to filter for, such as an infrastructure change, a
|
|
3284
3284
|
* deployment, or a schema change. </p>
|
|
3285
3285
|
* @public
|
|
3286
3286
|
*/
|
|
3287
|
-
EventClass?: EventClass;
|
|
3287
|
+
EventClass?: EventClass | undefined;
|
|
3288
3288
|
/**
|
|
3289
3289
|
* <p> The Amazon Web Services source that emitted the events you want to filter for. </p>
|
|
3290
3290
|
* @public
|
|
3291
3291
|
*/
|
|
3292
|
-
EventSource?: string;
|
|
3292
|
+
EventSource?: string | undefined;
|
|
3293
3293
|
/**
|
|
3294
3294
|
* <p> The source, <code>AWS_CLOUD_TRAIL</code> or <code>AWS_CODE_DEPLOY</code>, of the
|
|
3295
3295
|
* events you want returned. </p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
DataSource?: EventDataSource;
|
|
3298
|
+
DataSource?: EventDataSource | undefined;
|
|
3299
3299
|
/**
|
|
3300
3300
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3301
3301
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3303,7 +3303,7 @@ export interface ListEventsFilters {
|
|
|
3303
3303
|
* 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>
|
|
3304
3304
|
* @public
|
|
3305
3305
|
*/
|
|
3306
|
-
ResourceCollection?: ResourceCollection;
|
|
3306
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
* @public
|
|
@@ -3320,18 +3320,18 @@ export interface ListEventsRequest {
|
|
|
3320
3320
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
3321
3321
|
* @public
|
|
3322
3322
|
*/
|
|
3323
|
-
MaxResults?: number;
|
|
3323
|
+
MaxResults?: number | undefined;
|
|
3324
3324
|
/**
|
|
3325
3325
|
* <p>The pagination token to use to retrieve
|
|
3326
3326
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3327
3327
|
* @public
|
|
3328
3328
|
*/
|
|
3329
|
-
NextToken?: string;
|
|
3329
|
+
NextToken?: string | undefined;
|
|
3330
3330
|
/**
|
|
3331
3331
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
3332
3332
|
* @public
|
|
3333
3333
|
*/
|
|
3334
|
-
AccountId?: string;
|
|
3334
|
+
AccountId?: string | undefined;
|
|
3335
3335
|
}
|
|
3336
3336
|
/**
|
|
3337
3337
|
* <p> The Amazon Web Services resource that emitted an event. Amazon Web Services resource events and metrics are
|
|
@@ -3344,17 +3344,17 @@ export interface EventResource {
|
|
|
3344
3344
|
* <p> The type of resource that emitted an event. </p>
|
|
3345
3345
|
* @public
|
|
3346
3346
|
*/
|
|
3347
|
-
Type?: string;
|
|
3347
|
+
Type?: string | undefined;
|
|
3348
3348
|
/**
|
|
3349
3349
|
* <p> The name of the resource that emitted an event. </p>
|
|
3350
3350
|
* @public
|
|
3351
3351
|
*/
|
|
3352
|
-
Name?: string;
|
|
3352
|
+
Name?: string | undefined;
|
|
3353
3353
|
/**
|
|
3354
3354
|
* <p> The Amazon Resource Name (ARN) of the resource that emitted an event. </p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
Arn?: string;
|
|
3357
|
+
Arn?: string | undefined;
|
|
3358
3358
|
}
|
|
3359
3359
|
/**
|
|
3360
3360
|
* <p> An Amazon Web Services resource event. Amazon Web Services resource events and metrics are analyzed by DevOps Guru to
|
|
@@ -3370,45 +3370,45 @@ export interface Event {
|
|
|
3370
3370
|
* 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>
|
|
3371
3371
|
* @public
|
|
3372
3372
|
*/
|
|
3373
|
-
ResourceCollection?: ResourceCollection;
|
|
3373
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3374
3374
|
/**
|
|
3375
3375
|
* <p> The ID of the event. </p>
|
|
3376
3376
|
* @public
|
|
3377
3377
|
*/
|
|
3378
|
-
Id?: string;
|
|
3378
|
+
Id?: string | undefined;
|
|
3379
3379
|
/**
|
|
3380
3380
|
* <p> A <code>Timestamp</code> that specifies the time the event occurred. </p>
|
|
3381
3381
|
* @public
|
|
3382
3382
|
*/
|
|
3383
|
-
Time?: Date;
|
|
3383
|
+
Time?: Date | undefined;
|
|
3384
3384
|
/**
|
|
3385
3385
|
* <p> The Amazon Web Services source that emitted the event. </p>
|
|
3386
3386
|
* @public
|
|
3387
3387
|
*/
|
|
3388
|
-
EventSource?: string;
|
|
3388
|
+
EventSource?: string | undefined;
|
|
3389
3389
|
/**
|
|
3390
3390
|
* <p> The name of the event. </p>
|
|
3391
3391
|
* @public
|
|
3392
3392
|
*/
|
|
3393
|
-
Name?: string;
|
|
3393
|
+
Name?: string | undefined;
|
|
3394
3394
|
/**
|
|
3395
3395
|
* <p> The source, <code>AWS_CLOUD_TRAIL</code> or <code>AWS_CODE_DEPLOY</code>, where DevOps Guru
|
|
3396
3396
|
* analysis found the event. </p>
|
|
3397
3397
|
* @public
|
|
3398
3398
|
*/
|
|
3399
|
-
DataSource?: EventDataSource;
|
|
3399
|
+
DataSource?: EventDataSource | undefined;
|
|
3400
3400
|
/**
|
|
3401
3401
|
* <p> The class of the event. The class specifies what the event is related to, such as an
|
|
3402
3402
|
* infrastructure change, a deployment, or a schema change. </p>
|
|
3403
3403
|
* @public
|
|
3404
3404
|
*/
|
|
3405
|
-
EventClass?: EventClass;
|
|
3405
|
+
EventClass?: EventClass | undefined;
|
|
3406
3406
|
/**
|
|
3407
3407
|
* <p> An <code>EventResource</code> object that contains information about the resource
|
|
3408
3408
|
* that emitted the event. </p>
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
Resources?: EventResource[];
|
|
3411
|
+
Resources?: EventResource[] | undefined;
|
|
3412
3412
|
}
|
|
3413
3413
|
/**
|
|
3414
3414
|
* @public
|
|
@@ -3424,7 +3424,7 @@ export interface ListEventsResponse {
|
|
|
3424
3424
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
NextToken?: string;
|
|
3427
|
+
NextToken?: string | undefined;
|
|
3428
3428
|
}
|
|
3429
3429
|
/**
|
|
3430
3430
|
* @public
|
|
@@ -3466,12 +3466,12 @@ export interface EndTimeRange {
|
|
|
3466
3466
|
* <p> The earliest end time in the time range. </p>
|
|
3467
3467
|
* @public
|
|
3468
3468
|
*/
|
|
3469
|
-
FromTime?: Date;
|
|
3469
|
+
FromTime?: Date | undefined;
|
|
3470
3470
|
/**
|
|
3471
3471
|
* <p> The latest end time in the time range. </p>
|
|
3472
3472
|
* @public
|
|
3473
3473
|
*/
|
|
3474
|
-
ToTime?: Date;
|
|
3474
|
+
ToTime?: Date | undefined;
|
|
3475
3475
|
}
|
|
3476
3476
|
/**
|
|
3477
3477
|
* <p> Used to filter for insights that have the status <code>CLOSED</code>. </p>
|
|
@@ -3514,19 +3514,19 @@ export interface ListInsightsStatusFilter {
|
|
|
3514
3514
|
* either <code>REACTIVE</code> or <code>PROACTIVE</code>. </p>
|
|
3515
3515
|
* @public
|
|
3516
3516
|
*/
|
|
3517
|
-
Ongoing?: ListInsightsOngoingStatusFilter;
|
|
3517
|
+
Ongoing?: ListInsightsOngoingStatusFilter | undefined;
|
|
3518
3518
|
/**
|
|
3519
3519
|
* <p> A <code>ListInsightsClosedStatusFilter</code> that specifies closed insights that are
|
|
3520
3520
|
* either <code>REACTIVE</code> or <code>PROACTIVE</code>. </p>
|
|
3521
3521
|
* @public
|
|
3522
3522
|
*/
|
|
3523
|
-
Closed?: ListInsightsClosedStatusFilter;
|
|
3523
|
+
Closed?: ListInsightsClosedStatusFilter | undefined;
|
|
3524
3524
|
/**
|
|
3525
3525
|
* <p> A <code>ListInsightsAnyStatusFilter</code> that specifies insights of any status that
|
|
3526
3526
|
* are either <code>REACTIVE</code> or <code>PROACTIVE</code>. </p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
Any?: ListInsightsAnyStatusFilter;
|
|
3529
|
+
Any?: ListInsightsAnyStatusFilter | undefined;
|
|
3530
3530
|
}
|
|
3531
3531
|
/**
|
|
3532
3532
|
* @public
|
|
@@ -3543,13 +3543,13 @@ export interface ListInsightsRequest {
|
|
|
3543
3543
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
3544
3544
|
* @public
|
|
3545
3545
|
*/
|
|
3546
|
-
MaxResults?: number;
|
|
3546
|
+
MaxResults?: number | undefined;
|
|
3547
3547
|
/**
|
|
3548
3548
|
* <p>The pagination token to use to retrieve
|
|
3549
3549
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3550
3550
|
* @public
|
|
3551
3551
|
*/
|
|
3552
|
-
NextToken?: string;
|
|
3552
|
+
NextToken?: string | undefined;
|
|
3553
3553
|
}
|
|
3554
3554
|
/**
|
|
3555
3555
|
* <p>Details about a proactive insight. This object is returned by
|
|
@@ -3562,36 +3562,36 @@ export interface ProactiveInsightSummary {
|
|
|
3562
3562
|
* <p>The ID of the proactive insight. </p>
|
|
3563
3563
|
* @public
|
|
3564
3564
|
*/
|
|
3565
|
-
Id?: string;
|
|
3565
|
+
Id?: string | undefined;
|
|
3566
3566
|
/**
|
|
3567
3567
|
* <p>The name of the proactive insight. </p>
|
|
3568
3568
|
* @public
|
|
3569
3569
|
*/
|
|
3570
|
-
Name?: string;
|
|
3570
|
+
Name?: string | undefined;
|
|
3571
3571
|
/**
|
|
3572
3572
|
* <p>The severity of the insight. For more information, see
|
|
3573
3573
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3574
3574
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3575
3575
|
* @public
|
|
3576
3576
|
*/
|
|
3577
|
-
Severity?: InsightSeverity;
|
|
3577
|
+
Severity?: InsightSeverity | undefined;
|
|
3578
3578
|
/**
|
|
3579
3579
|
* <p>The status of the proactive insight. </p>
|
|
3580
3580
|
* @public
|
|
3581
3581
|
*/
|
|
3582
|
-
Status?: InsightStatus;
|
|
3582
|
+
Status?: InsightStatus | undefined;
|
|
3583
3583
|
/**
|
|
3584
3584
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
3585
3585
|
* ended. </p>
|
|
3586
3586
|
* @public
|
|
3587
3587
|
*/
|
|
3588
|
-
InsightTimeRange?: InsightTimeRange;
|
|
3588
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
3589
3589
|
/**
|
|
3590
3590
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
3591
3591
|
* is expected to occur. </p>
|
|
3592
3592
|
* @public
|
|
3593
3593
|
*/
|
|
3594
|
-
PredictionTimeRange?: PredictionTimeRange;
|
|
3594
|
+
PredictionTimeRange?: PredictionTimeRange | undefined;
|
|
3595
3595
|
/**
|
|
3596
3596
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3597
3597
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3599,18 +3599,18 @@ export interface ProactiveInsightSummary {
|
|
|
3599
3599
|
* 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>
|
|
3600
3600
|
* @public
|
|
3601
3601
|
*/
|
|
3602
|
-
ResourceCollection?: ResourceCollection;
|
|
3602
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3603
3603
|
/**
|
|
3604
3604
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
3605
3605
|
* @public
|
|
3606
3606
|
*/
|
|
3607
|
-
ServiceCollection?: ServiceCollection;
|
|
3607
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* <p>The Amazon Resource Names (ARNs)
|
|
3610
3610
|
* of the Amazon Web Services resources that generated this insight.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
AssociatedResourceArns?: string[];
|
|
3613
|
+
AssociatedResourceArns?: string[] | undefined;
|
|
3614
3614
|
}
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p> Information about a reactive insight. This object is returned by
|
|
@@ -3623,30 +3623,30 @@ export interface ReactiveInsightSummary {
|
|
|
3623
3623
|
* <p> The ID of a reactive summary. </p>
|
|
3624
3624
|
* @public
|
|
3625
3625
|
*/
|
|
3626
|
-
Id?: string;
|
|
3626
|
+
Id?: string | undefined;
|
|
3627
3627
|
/**
|
|
3628
3628
|
* <p> The name of a reactive insight. </p>
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
Name?: string;
|
|
3631
|
+
Name?: string | undefined;
|
|
3632
3632
|
/**
|
|
3633
3633
|
* <p>The severity of the insight. For more information, see
|
|
3634
3634
|
* <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/working-with-insights.html#understanding-insights-severities">Understanding
|
|
3635
3635
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3636
3636
|
* @public
|
|
3637
3637
|
*/
|
|
3638
|
-
Severity?: InsightSeverity;
|
|
3638
|
+
Severity?: InsightSeverity | undefined;
|
|
3639
3639
|
/**
|
|
3640
3640
|
* <p> The status of a reactive insight. </p>
|
|
3641
3641
|
* @public
|
|
3642
3642
|
*/
|
|
3643
|
-
Status?: InsightStatus;
|
|
3643
|
+
Status?: InsightStatus | undefined;
|
|
3644
3644
|
/**
|
|
3645
3645
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
3646
3646
|
* ended. </p>
|
|
3647
3647
|
* @public
|
|
3648
3648
|
*/
|
|
3649
|
-
InsightTimeRange?: InsightTimeRange;
|
|
3649
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
3650
3650
|
/**
|
|
3651
3651
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3652
3652
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3654,18 +3654,18 @@ export interface ReactiveInsightSummary {
|
|
|
3654
3654
|
* 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>
|
|
3655
3655
|
* @public
|
|
3656
3656
|
*/
|
|
3657
|
-
ResourceCollection?: ResourceCollection;
|
|
3657
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3658
3658
|
/**
|
|
3659
3659
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
3660
3660
|
* @public
|
|
3661
3661
|
*/
|
|
3662
|
-
ServiceCollection?: ServiceCollection;
|
|
3662
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
3663
3663
|
/**
|
|
3664
3664
|
* <p>The Amazon Resource Names (ARNs)
|
|
3665
3665
|
* of the Amazon Web Services resources that generated this insight.</p>
|
|
3666
3666
|
* @public
|
|
3667
3667
|
*/
|
|
3668
|
-
AssociatedResourceArns?: string[];
|
|
3668
|
+
AssociatedResourceArns?: string[] | undefined;
|
|
3669
3669
|
}
|
|
3670
3670
|
/**
|
|
3671
3671
|
* @public
|
|
@@ -3675,18 +3675,18 @@ export interface ListInsightsResponse {
|
|
|
3675
3675
|
* <p> The returned list of proactive insights. </p>
|
|
3676
3676
|
* @public
|
|
3677
3677
|
*/
|
|
3678
|
-
ProactiveInsights?: ProactiveInsightSummary[];
|
|
3678
|
+
ProactiveInsights?: ProactiveInsightSummary[] | undefined;
|
|
3679
3679
|
/**
|
|
3680
3680
|
* <p> The returned list of reactive insights. </p>
|
|
3681
3681
|
* @public
|
|
3682
3682
|
*/
|
|
3683
|
-
ReactiveInsights?: ReactiveInsightSummary[];
|
|
3683
|
+
ReactiveInsights?: ReactiveInsightSummary[] | undefined;
|
|
3684
3684
|
/**
|
|
3685
3685
|
* <p>The pagination token to use to retrieve
|
|
3686
3686
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3687
3687
|
* @public
|
|
3688
3688
|
*/
|
|
3689
|
-
NextToken?: string;
|
|
3689
|
+
NextToken?: string | undefined;
|
|
3690
3690
|
}
|
|
3691
3691
|
/**
|
|
3692
3692
|
* @public
|
|
@@ -3769,19 +3769,19 @@ export interface ListMonitoredResourcesRequest {
|
|
|
3769
3769
|
* </p>
|
|
3770
3770
|
* @public
|
|
3771
3771
|
*/
|
|
3772
|
-
Filters?: ListMonitoredResourcesFilters;
|
|
3772
|
+
Filters?: ListMonitoredResourcesFilters | undefined;
|
|
3773
3773
|
/**
|
|
3774
3774
|
* <p>The maximum number of results to return with a single call.
|
|
3775
3775
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
3776
3776
|
* @public
|
|
3777
3777
|
*/
|
|
3778
|
-
MaxResults?: number;
|
|
3778
|
+
MaxResults?: number | undefined;
|
|
3779
3779
|
/**
|
|
3780
3780
|
* <p>The pagination token to use to retrieve
|
|
3781
3781
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
NextToken?: string;
|
|
3784
|
+
NextToken?: string | undefined;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* <p>
|
|
@@ -3796,28 +3796,28 @@ export interface MonitoredResourceIdentifier {
|
|
|
3796
3796
|
* </p>
|
|
3797
3797
|
* @public
|
|
3798
3798
|
*/
|
|
3799
|
-
MonitoredResourceName?: string;
|
|
3799
|
+
MonitoredResourceName?: string | undefined;
|
|
3800
3800
|
/**
|
|
3801
3801
|
* <p>
|
|
3802
3802
|
* The type of resource being monitored.
|
|
3803
3803
|
* </p>
|
|
3804
3804
|
* @public
|
|
3805
3805
|
*/
|
|
3806
|
-
Type?: string;
|
|
3806
|
+
Type?: string | undefined;
|
|
3807
3807
|
/**
|
|
3808
3808
|
* <p>
|
|
3809
3809
|
* The permission status of a resource.
|
|
3810
3810
|
* </p>
|
|
3811
3811
|
* @public
|
|
3812
3812
|
*/
|
|
3813
|
-
ResourcePermission?: ResourcePermission;
|
|
3813
|
+
ResourcePermission?: ResourcePermission | undefined;
|
|
3814
3814
|
/**
|
|
3815
3815
|
* <p>
|
|
3816
3816
|
* The time at which DevOps Guru last updated this resource.
|
|
3817
3817
|
* </p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
LastUpdated?: Date;
|
|
3820
|
+
LastUpdated?: Date | undefined;
|
|
3821
3821
|
/**
|
|
3822
3822
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3823
3823
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3825,7 +3825,7 @@ export interface MonitoredResourceIdentifier {
|
|
|
3825
3825
|
* 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>
|
|
3826
3826
|
* @public
|
|
3827
3827
|
*/
|
|
3828
|
-
ResourceCollection?: ResourceCollection;
|
|
3828
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3829
3829
|
}
|
|
3830
3830
|
/**
|
|
3831
3831
|
* @public
|
|
@@ -3843,7 +3843,7 @@ export interface ListMonitoredResourcesResponse {
|
|
|
3843
3843
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3844
3844
|
* @public
|
|
3845
3845
|
*/
|
|
3846
|
-
NextToken?: string;
|
|
3846
|
+
NextToken?: string | undefined;
|
|
3847
3847
|
}
|
|
3848
3848
|
/**
|
|
3849
3849
|
* @public
|
|
@@ -3854,7 +3854,7 @@ export interface ListNotificationChannelsRequest {
|
|
|
3854
3854
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3855
3855
|
* @public
|
|
3856
3856
|
*/
|
|
3857
|
-
NextToken?: string;
|
|
3857
|
+
NextToken?: string | undefined;
|
|
3858
3858
|
}
|
|
3859
3859
|
/**
|
|
3860
3860
|
* <p> Information about a notification channel. A notification channel is used to notify
|
|
@@ -3874,13 +3874,13 @@ export interface NotificationChannel {
|
|
|
3874
3874
|
* <p> The ID of a notification channel. </p>
|
|
3875
3875
|
* @public
|
|
3876
3876
|
*/
|
|
3877
|
-
Id?: string;
|
|
3877
|
+
Id?: string | undefined;
|
|
3878
3878
|
/**
|
|
3879
3879
|
* <p> A <code>NotificationChannelConfig</code> object that contains information about
|
|
3880
3880
|
* configured notification channels. </p>
|
|
3881
3881
|
* @public
|
|
3882
3882
|
*/
|
|
3883
|
-
Config?: NotificationChannelConfig;
|
|
3883
|
+
Config?: NotificationChannelConfig | undefined;
|
|
3884
3884
|
}
|
|
3885
3885
|
/**
|
|
3886
3886
|
* @public
|
|
@@ -3890,13 +3890,13 @@ export interface ListNotificationChannelsResponse {
|
|
|
3890
3890
|
* <p> An array that contains the requested notification channels. </p>
|
|
3891
3891
|
* @public
|
|
3892
3892
|
*/
|
|
3893
|
-
Channels?: NotificationChannel[];
|
|
3893
|
+
Channels?: NotificationChannel[] | undefined;
|
|
3894
3894
|
/**
|
|
3895
3895
|
* <p>The pagination token to use to retrieve
|
|
3896
3896
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
3897
3897
|
* @public
|
|
3898
3898
|
*/
|
|
3899
|
-
NextToken?: string;
|
|
3899
|
+
NextToken?: string | undefined;
|
|
3900
3900
|
}
|
|
3901
3901
|
/**
|
|
3902
3902
|
* @public
|
|
@@ -3913,23 +3913,23 @@ export interface ListOrganizationInsightsRequest {
|
|
|
3913
3913
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
3914
3914
|
* @public
|
|
3915
3915
|
*/
|
|
3916
|
-
MaxResults?: number;
|
|
3916
|
+
MaxResults?: number | undefined;
|
|
3917
3917
|
/**
|
|
3918
3918
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
3919
3919
|
* @public
|
|
3920
3920
|
*/
|
|
3921
|
-
AccountIds?: string[];
|
|
3921
|
+
AccountIds?: string[] | undefined;
|
|
3922
3922
|
/**
|
|
3923
3923
|
* <p>The ID of the organizational unit.</p>
|
|
3924
3924
|
* @public
|
|
3925
3925
|
*/
|
|
3926
|
-
OrganizationalUnitIds?: string[];
|
|
3926
|
+
OrganizationalUnitIds?: string[] | undefined;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* <p>The pagination token to use to retrieve
|
|
3929
3929
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
3930
3930
|
* @public
|
|
3931
3931
|
*/
|
|
3932
|
-
NextToken?: string;
|
|
3932
|
+
NextToken?: string | undefined;
|
|
3933
3933
|
}
|
|
3934
3934
|
/**
|
|
3935
3935
|
* <p>Details about a proactive insight. This object is returned by
|
|
@@ -3941,22 +3941,22 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
3941
3941
|
* <p>The ID of the insight summary.</p>
|
|
3942
3942
|
* @public
|
|
3943
3943
|
*/
|
|
3944
|
-
Id?: string;
|
|
3944
|
+
Id?: string | undefined;
|
|
3945
3945
|
/**
|
|
3946
3946
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
3947
3947
|
* @public
|
|
3948
3948
|
*/
|
|
3949
|
-
AccountId?: string;
|
|
3949
|
+
AccountId?: string | undefined;
|
|
3950
3950
|
/**
|
|
3951
3951
|
* <p>The ID of the organizational unit.</p>
|
|
3952
3952
|
* @public
|
|
3953
3953
|
*/
|
|
3954
|
-
OrganizationalUnitId?: string;
|
|
3954
|
+
OrganizationalUnitId?: string | undefined;
|
|
3955
3955
|
/**
|
|
3956
3956
|
* <p>The name of the insight summary.</p>
|
|
3957
3957
|
* @public
|
|
3958
3958
|
*/
|
|
3959
|
-
Name?: string;
|
|
3959
|
+
Name?: string | undefined;
|
|
3960
3960
|
/**
|
|
3961
3961
|
* <p> An array of severity values used to search for insights.
|
|
3962
3962
|
* For more information, see
|
|
@@ -3964,24 +3964,24 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
3964
3964
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
3965
3965
|
* @public
|
|
3966
3966
|
*/
|
|
3967
|
-
Severity?: InsightSeverity;
|
|
3967
|
+
Severity?: InsightSeverity | undefined;
|
|
3968
3968
|
/**
|
|
3969
3969
|
* <p> An array of status values used to search for insights. </p>
|
|
3970
3970
|
* @public
|
|
3971
3971
|
*/
|
|
3972
|
-
Status?: InsightStatus;
|
|
3972
|
+
Status?: InsightStatus | undefined;
|
|
3973
3973
|
/**
|
|
3974
3974
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
3975
3975
|
* ended. </p>
|
|
3976
3976
|
* @public
|
|
3977
3977
|
*/
|
|
3978
|
-
InsightTimeRange?: InsightTimeRange;
|
|
3978
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
3979
3979
|
/**
|
|
3980
3980
|
* <p> The time range during which anomalous behavior in a proactive anomaly or an insight
|
|
3981
3981
|
* is expected to occur. </p>
|
|
3982
3982
|
* @public
|
|
3983
3983
|
*/
|
|
3984
|
-
PredictionTimeRange?: PredictionTimeRange;
|
|
3984
|
+
PredictionTimeRange?: PredictionTimeRange | undefined;
|
|
3985
3985
|
/**
|
|
3986
3986
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
3987
3987
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -3989,12 +3989,12 @@ export interface ProactiveOrganizationInsightSummary {
|
|
|
3989
3989
|
* 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>
|
|
3990
3990
|
* @public
|
|
3991
3991
|
*/
|
|
3992
|
-
ResourceCollection?: ResourceCollection;
|
|
3992
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
3993
3993
|
/**
|
|
3994
3994
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
3995
3995
|
* @public
|
|
3996
3996
|
*/
|
|
3997
|
-
ServiceCollection?: ServiceCollection;
|
|
3997
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
3998
3998
|
}
|
|
3999
3999
|
/**
|
|
4000
4000
|
* <p>Information about a reactive insight. This object is returned by
|
|
@@ -4006,22 +4006,22 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
4006
4006
|
* <p>The ID of the insight summary.</p>
|
|
4007
4007
|
* @public
|
|
4008
4008
|
*/
|
|
4009
|
-
Id?: string;
|
|
4009
|
+
Id?: string | undefined;
|
|
4010
4010
|
/**
|
|
4011
4011
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
4012
4012
|
* @public
|
|
4013
4013
|
*/
|
|
4014
|
-
AccountId?: string;
|
|
4014
|
+
AccountId?: string | undefined;
|
|
4015
4015
|
/**
|
|
4016
4016
|
* <p>The ID of the organizational unit.</p>
|
|
4017
4017
|
* @public
|
|
4018
4018
|
*/
|
|
4019
|
-
OrganizationalUnitId?: string;
|
|
4019
|
+
OrganizationalUnitId?: string | undefined;
|
|
4020
4020
|
/**
|
|
4021
4021
|
* <p>The name of the insight summary.</p>
|
|
4022
4022
|
* @public
|
|
4023
4023
|
*/
|
|
4024
|
-
Name?: string;
|
|
4024
|
+
Name?: string | undefined;
|
|
4025
4025
|
/**
|
|
4026
4026
|
* <p> An array of severity values used to search for insights.
|
|
4027
4027
|
* For more information, see
|
|
@@ -4029,18 +4029,18 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
4029
4029
|
* insight severities</a> in the <i>Amazon DevOps Guru User Guide</i>.</p>
|
|
4030
4030
|
* @public
|
|
4031
4031
|
*/
|
|
4032
|
-
Severity?: InsightSeverity;
|
|
4032
|
+
Severity?: InsightSeverity | undefined;
|
|
4033
4033
|
/**
|
|
4034
4034
|
* <p> An array of status values used to search for insights. </p>
|
|
4035
4035
|
* @public
|
|
4036
4036
|
*/
|
|
4037
|
-
Status?: InsightStatus;
|
|
4037
|
+
Status?: InsightStatus | undefined;
|
|
4038
4038
|
/**
|
|
4039
4039
|
* <p> A time ranged that specifies when the observed behavior in an insight started and
|
|
4040
4040
|
* ended. </p>
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
InsightTimeRange?: InsightTimeRange;
|
|
4043
|
+
InsightTimeRange?: InsightTimeRange | undefined;
|
|
4044
4044
|
/**
|
|
4045
4045
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
4046
4046
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -4048,12 +4048,12 @@ export interface ReactiveOrganizationInsightSummary {
|
|
|
4048
4048
|
* 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>
|
|
4049
4049
|
* @public
|
|
4050
4050
|
*/
|
|
4051
|
-
ResourceCollection?: ResourceCollection;
|
|
4051
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
4052
4052
|
/**
|
|
4053
4053
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
4054
4054
|
* @public
|
|
4055
4055
|
*/
|
|
4056
|
-
ServiceCollection?: ServiceCollection;
|
|
4056
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
4057
4057
|
}
|
|
4058
4058
|
/**
|
|
4059
4059
|
* @public
|
|
@@ -4064,19 +4064,19 @@ export interface ListOrganizationInsightsResponse {
|
|
|
4064
4064
|
* account.</p>
|
|
4065
4065
|
* @public
|
|
4066
4066
|
*/
|
|
4067
|
-
ProactiveInsights?: ProactiveOrganizationInsightSummary[];
|
|
4067
|
+
ProactiveInsights?: ProactiveOrganizationInsightSummary[] | undefined;
|
|
4068
4068
|
/**
|
|
4069
4069
|
* <p>An integer that specifies the number of open reactive insights in your Amazon Web Services
|
|
4070
4070
|
* account.</p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
ReactiveInsights?: ReactiveOrganizationInsightSummary[];
|
|
4073
|
+
ReactiveInsights?: ReactiveOrganizationInsightSummary[] | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>The pagination token to use to retrieve
|
|
4076
4076
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4077
4077
|
* @public
|
|
4078
4078
|
*/
|
|
4079
|
-
NextToken?: string;
|
|
4079
|
+
NextToken?: string | undefined;
|
|
4080
4080
|
}
|
|
4081
4081
|
/**
|
|
4082
4082
|
* @public
|
|
@@ -4113,17 +4113,17 @@ export interface ListRecommendationsRequest {
|
|
|
4113
4113
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4114
4114
|
* @public
|
|
4115
4115
|
*/
|
|
4116
|
-
NextToken?: string;
|
|
4116
|
+
NextToken?: string | undefined;
|
|
4117
4117
|
/**
|
|
4118
4118
|
* <p>A locale that specifies the language to use for recommendations.</p>
|
|
4119
4119
|
* @public
|
|
4120
4120
|
*/
|
|
4121
|
-
Locale?: Locale;
|
|
4121
|
+
Locale?: Locale | undefined;
|
|
4122
4122
|
/**
|
|
4123
4123
|
* <p>The ID of the Amazon Web Services account. </p>
|
|
4124
4124
|
* @public
|
|
4125
4125
|
*/
|
|
4126
|
-
AccountId?: string;
|
|
4126
|
+
AccountId?: string | undefined;
|
|
4127
4127
|
}
|
|
4128
4128
|
/**
|
|
4129
4129
|
* <p> Information about a resource in which DevOps Guru detected anomalous behavior. </p>
|
|
@@ -4134,7 +4134,7 @@ export interface RecommendationRelatedAnomalyResource {
|
|
|
4134
4134
|
* <p> The name of the resource. </p>
|
|
4135
4135
|
* @public
|
|
4136
4136
|
*/
|
|
4137
|
-
Name?: string;
|
|
4137
|
+
Name?: string | undefined;
|
|
4138
4138
|
/**
|
|
4139
4139
|
* <p> The type of the resource. Resource types take the same form that is used by Amazon Web Services CloudFormation
|
|
4140
4140
|
* resource type identifiers, <code>service-provider::service-name::data-type-name</code>.
|
|
@@ -4143,7 +4143,7 @@ export interface RecommendationRelatedAnomalyResource {
|
|
|
4143
4143
|
* Guide</i>.</p>
|
|
4144
4144
|
* @public
|
|
4145
4145
|
*/
|
|
4146
|
-
Type?: string;
|
|
4146
|
+
Type?: string | undefined;
|
|
4147
4147
|
}
|
|
4148
4148
|
/**
|
|
4149
4149
|
* <p> Information about an Amazon CloudWatch metric that is analyzed by DevOps Guru. It is one of many
|
|
@@ -4155,12 +4155,12 @@ export interface RecommendationRelatedCloudWatchMetricsSourceDetail {
|
|
|
4155
4155
|
* <p>The name of the CloudWatch metric.</p>
|
|
4156
4156
|
* @public
|
|
4157
4157
|
*/
|
|
4158
|
-
MetricName?: string;
|
|
4158
|
+
MetricName?: string | undefined;
|
|
4159
4159
|
/**
|
|
4160
4160
|
* <p>The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics.</p>
|
|
4161
4161
|
* @public
|
|
4162
4162
|
*/
|
|
4163
|
-
Namespace?: string;
|
|
4163
|
+
Namespace?: string | undefined;
|
|
4164
4164
|
}
|
|
4165
4165
|
/**
|
|
4166
4166
|
* <p> Contains an array of <code>RecommendationRelatedCloudWatchMetricsSourceDetail</code>
|
|
@@ -4173,7 +4173,7 @@ export interface RecommendationRelatedAnomalySourceDetail {
|
|
|
4173
4173
|
* about the analyzed metrics that displayed anomalous behavior. </p>
|
|
4174
4174
|
* @public
|
|
4175
4175
|
*/
|
|
4176
|
-
CloudWatchMetrics?: RecommendationRelatedCloudWatchMetricsSourceDetail[];
|
|
4176
|
+
CloudWatchMetrics?: RecommendationRelatedCloudWatchMetricsSourceDetail[] | undefined;
|
|
4177
4177
|
}
|
|
4178
4178
|
/**
|
|
4179
4179
|
* <p> Information about an anomaly that is related to a recommendation. </p>
|
|
@@ -4185,18 +4185,18 @@ export interface RecommendationRelatedAnomaly {
|
|
|
4185
4185
|
* behavior. Each object contains the name and type of the resource. </p>
|
|
4186
4186
|
* @public
|
|
4187
4187
|
*/
|
|
4188
|
-
Resources?: RecommendationRelatedAnomalyResource[];
|
|
4188
|
+
Resources?: RecommendationRelatedAnomalyResource[] | undefined;
|
|
4189
4189
|
/**
|
|
4190
4190
|
* <p> Information about where the anomalous behavior related the recommendation was found.
|
|
4191
4191
|
* For example, details in Amazon CloudWatch metrics. </p>
|
|
4192
4192
|
* @public
|
|
4193
4193
|
*/
|
|
4194
|
-
SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
|
|
4194
|
+
SourceDetails?: RecommendationRelatedAnomalySourceDetail[] | undefined;
|
|
4195
4195
|
/**
|
|
4196
4196
|
* <p>The ID of an anomaly that generated the insight with this recommendation.</p>
|
|
4197
4197
|
* @public
|
|
4198
4198
|
*/
|
|
4199
|
-
AnomalyId?: string;
|
|
4199
|
+
AnomalyId?: string | undefined;
|
|
4200
4200
|
}
|
|
4201
4201
|
/**
|
|
4202
4202
|
* <p> Information about an Amazon Web Services resource that emitted and event that is related to a
|
|
@@ -4209,13 +4209,13 @@ export interface RecommendationRelatedEventResource {
|
|
|
4209
4209
|
* <code>Name</code> field in an <code>EventResource</code> object. </p>
|
|
4210
4210
|
* @public
|
|
4211
4211
|
*/
|
|
4212
|
-
Name?: string;
|
|
4212
|
+
Name?: string | undefined;
|
|
4213
4213
|
/**
|
|
4214
4214
|
* <p> The type of the resource that emitted the event. This corresponds to the
|
|
4215
4215
|
* <code>Type</code> field in an <code>EventResource</code> object. </p>
|
|
4216
4216
|
* @public
|
|
4217
4217
|
*/
|
|
4218
|
-
Type?: string;
|
|
4218
|
+
Type?: string | undefined;
|
|
4219
4219
|
}
|
|
4220
4220
|
/**
|
|
4221
4221
|
* <p> Information about an event that is related to a recommendation. </p>
|
|
@@ -4227,13 +4227,13 @@ export interface RecommendationRelatedEvent {
|
|
|
4227
4227
|
* <code>Event</code> object. </p>
|
|
4228
4228
|
* @public
|
|
4229
4229
|
*/
|
|
4230
|
-
Name?: string;
|
|
4230
|
+
Name?: string | undefined;
|
|
4231
4231
|
/**
|
|
4232
4232
|
* <p> A <code>ResourceCollection</code> object that contains arrays of the names of Amazon Web Services
|
|
4233
4233
|
* CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
4234
4234
|
* @public
|
|
4235
4235
|
*/
|
|
4236
|
-
Resources?: RecommendationRelatedEventResource[];
|
|
4236
|
+
Resources?: RecommendationRelatedEventResource[] | undefined;
|
|
4237
4237
|
}
|
|
4238
4238
|
/**
|
|
4239
4239
|
* <p> Recommendation information to help you remediate detected anomalous behavior that
|
|
@@ -4245,39 +4245,39 @@ export interface Recommendation {
|
|
|
4245
4245
|
* <p> A description of the problem. </p>
|
|
4246
4246
|
* @public
|
|
4247
4247
|
*/
|
|
4248
|
-
Description?: string;
|
|
4248
|
+
Description?: string | undefined;
|
|
4249
4249
|
/**
|
|
4250
4250
|
* <p> A hyperlink to information to help you address the problem. </p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
Link?: string;
|
|
4253
|
+
Link?: string | undefined;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* <p> The name of the recommendation. </p>
|
|
4256
4256
|
* @public
|
|
4257
4257
|
*/
|
|
4258
|
-
Name?: string;
|
|
4258
|
+
Name?: string | undefined;
|
|
4259
4259
|
/**
|
|
4260
4260
|
* <p> The reason DevOps Guru flagged the anomalous behavior as a problem. </p>
|
|
4261
4261
|
* @public
|
|
4262
4262
|
*/
|
|
4263
|
-
Reason?: string;
|
|
4263
|
+
Reason?: string | undefined;
|
|
4264
4264
|
/**
|
|
4265
4265
|
* <p> Events that are related to the problem. Use these events to learn more about what's
|
|
4266
4266
|
* happening and to help address the issue. </p>
|
|
4267
4267
|
* @public
|
|
4268
4268
|
*/
|
|
4269
|
-
RelatedEvents?: RecommendationRelatedEvent[];
|
|
4269
|
+
RelatedEvents?: RecommendationRelatedEvent[] | undefined;
|
|
4270
4270
|
/**
|
|
4271
4271
|
* <p> Anomalies that are related to the problem. Use these Anomalies to learn more about
|
|
4272
4272
|
* what's happening and to help address the issue. </p>
|
|
4273
4273
|
* @public
|
|
4274
4274
|
*/
|
|
4275
|
-
RelatedAnomalies?: RecommendationRelatedAnomaly[];
|
|
4275
|
+
RelatedAnomalies?: RecommendationRelatedAnomaly[] | undefined;
|
|
4276
4276
|
/**
|
|
4277
4277
|
* <p>The category type of the recommendation.</p>
|
|
4278
4278
|
* @public
|
|
4279
4279
|
*/
|
|
4280
|
-
Category?: string;
|
|
4280
|
+
Category?: string | undefined;
|
|
4281
4281
|
}
|
|
4282
4282
|
/**
|
|
4283
4283
|
* @public
|
|
@@ -4287,13 +4287,13 @@ export interface ListRecommendationsResponse {
|
|
|
4287
4287
|
* <p> An array of the requested recommendations. </p>
|
|
4288
4288
|
* @public
|
|
4289
4289
|
*/
|
|
4290
|
-
Recommendations?: Recommendation[];
|
|
4290
|
+
Recommendations?: Recommendation[] | undefined;
|
|
4291
4291
|
/**
|
|
4292
4292
|
* <p>The pagination token to use to retrieve
|
|
4293
4293
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4294
4294
|
* @public
|
|
4295
4295
|
*/
|
|
4296
|
-
NextToken?: string;
|
|
4296
|
+
NextToken?: string | undefined;
|
|
4297
4297
|
}
|
|
4298
4298
|
/**
|
|
4299
4299
|
* @public
|
|
@@ -4303,7 +4303,7 @@ export interface PutFeedbackRequest {
|
|
|
4303
4303
|
* <p> The feedback from customers is about the recommendations in this insight. </p>
|
|
4304
4304
|
* @public
|
|
4305
4305
|
*/
|
|
4306
|
-
InsightFeedback?: InsightFeedback;
|
|
4306
|
+
InsightFeedback?: InsightFeedback | undefined;
|
|
4307
4307
|
}
|
|
4308
4308
|
/**
|
|
4309
4309
|
* @public
|
|
@@ -4337,12 +4337,12 @@ export interface SearchInsightsFilters {
|
|
|
4337
4337
|
* <p> An array of severity values used to search for insights. </p>
|
|
4338
4338
|
* @public
|
|
4339
4339
|
*/
|
|
4340
|
-
Severities?: InsightSeverity[];
|
|
4340
|
+
Severities?: InsightSeverity[] | undefined;
|
|
4341
4341
|
/**
|
|
4342
4342
|
* <p> An array of status values used to search for insights. </p>
|
|
4343
4343
|
* @public
|
|
4344
4344
|
*/
|
|
4345
|
-
Statuses?: InsightStatus[];
|
|
4345
|
+
Statuses?: InsightStatus[] | undefined;
|
|
4346
4346
|
/**
|
|
4347
4347
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
4348
4348
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -4350,12 +4350,12 @@ export interface SearchInsightsFilters {
|
|
|
4350
4350
|
* 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>
|
|
4351
4351
|
* @public
|
|
4352
4352
|
*/
|
|
4353
|
-
ResourceCollection?: ResourceCollection;
|
|
4353
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
4354
4354
|
/**
|
|
4355
4355
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
4356
4356
|
* @public
|
|
4357
4357
|
*/
|
|
4358
|
-
ServiceCollection?: ServiceCollection;
|
|
4358
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
4359
4359
|
}
|
|
4360
4360
|
/**
|
|
4361
4361
|
* @public
|
|
@@ -4372,19 +4372,19 @@ export interface SearchInsightsRequest {
|
|
|
4372
4372
|
* status filters on your insight search. </p>
|
|
4373
4373
|
* @public
|
|
4374
4374
|
*/
|
|
4375
|
-
Filters?: SearchInsightsFilters;
|
|
4375
|
+
Filters?: SearchInsightsFilters | undefined;
|
|
4376
4376
|
/**
|
|
4377
4377
|
* <p>The maximum number of results to return with a single call.
|
|
4378
4378
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
4379
4379
|
* @public
|
|
4380
4380
|
*/
|
|
4381
|
-
MaxResults?: number;
|
|
4381
|
+
MaxResults?: number | undefined;
|
|
4382
4382
|
/**
|
|
4383
4383
|
* <p>The pagination token to use to retrieve
|
|
4384
4384
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4385
4385
|
* @public
|
|
4386
4386
|
*/
|
|
4387
|
-
NextToken?: string;
|
|
4387
|
+
NextToken?: string | undefined;
|
|
4388
4388
|
/**
|
|
4389
4389
|
* <p> The type of insights you are searching for (<code>REACTIVE</code> or
|
|
4390
4390
|
* <code>PROACTIVE</code>). </p>
|
|
@@ -4400,18 +4400,18 @@ export interface SearchInsightsResponse {
|
|
|
4400
4400
|
* <p> The returned proactive insights. </p>
|
|
4401
4401
|
* @public
|
|
4402
4402
|
*/
|
|
4403
|
-
ProactiveInsights?: ProactiveInsightSummary[];
|
|
4403
|
+
ProactiveInsights?: ProactiveInsightSummary[] | undefined;
|
|
4404
4404
|
/**
|
|
4405
4405
|
* <p> The returned reactive insights. </p>
|
|
4406
4406
|
* @public
|
|
4407
4407
|
*/
|
|
4408
|
-
ReactiveInsights?: ReactiveInsightSummary[];
|
|
4408
|
+
ReactiveInsights?: ReactiveInsightSummary[] | undefined;
|
|
4409
4409
|
/**
|
|
4410
4410
|
* <p>The pagination token to use to retrieve
|
|
4411
4411
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4412
4412
|
* @public
|
|
4413
4413
|
*/
|
|
4414
|
-
NextToken?: string;
|
|
4414
|
+
NextToken?: string | undefined;
|
|
4415
4415
|
}
|
|
4416
4416
|
/**
|
|
4417
4417
|
* <p> Filters you can use to specify which events are returned when <code>ListEvents</code>
|
|
@@ -4423,12 +4423,12 @@ export interface SearchOrganizationInsightsFilters {
|
|
|
4423
4423
|
* <p> An array of severity values used to search for insights. </p>
|
|
4424
4424
|
* @public
|
|
4425
4425
|
*/
|
|
4426
|
-
Severities?: InsightSeverity[];
|
|
4426
|
+
Severities?: InsightSeverity[] | undefined;
|
|
4427
4427
|
/**
|
|
4428
4428
|
* <p> An array of status values used to search for insights. </p>
|
|
4429
4429
|
* @public
|
|
4430
4430
|
*/
|
|
4431
|
-
Statuses?: InsightStatus[];
|
|
4431
|
+
Statuses?: InsightStatus[] | undefined;
|
|
4432
4432
|
/**
|
|
4433
4433
|
* <p> A collection of Amazon Web Services resources supported by DevOps Guru.
|
|
4434
4434
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -4436,12 +4436,12 @@ export interface SearchOrganizationInsightsFilters {
|
|
|
4436
4436
|
* 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>
|
|
4437
4437
|
* @public
|
|
4438
4438
|
*/
|
|
4439
|
-
ResourceCollection?: ResourceCollection;
|
|
4439
|
+
ResourceCollection?: ResourceCollection | undefined;
|
|
4440
4440
|
/**
|
|
4441
4441
|
* <p>A collection of the names of Amazon Web Services services.</p>
|
|
4442
4442
|
* @public
|
|
4443
4443
|
*/
|
|
4444
|
-
ServiceCollection?: ServiceCollection;
|
|
4444
|
+
ServiceCollection?: ServiceCollection | undefined;
|
|
4445
4445
|
}
|
|
4446
4446
|
/**
|
|
4447
4447
|
* @public
|
|
@@ -4463,19 +4463,19 @@ export interface SearchOrganizationInsightsRequest {
|
|
|
4463
4463
|
* severity and status filters on your insight search. </p>
|
|
4464
4464
|
* @public
|
|
4465
4465
|
*/
|
|
4466
|
-
Filters?: SearchOrganizationInsightsFilters;
|
|
4466
|
+
Filters?: SearchOrganizationInsightsFilters | undefined;
|
|
4467
4467
|
/**
|
|
4468
4468
|
* <p>The maximum number of results to return with a single call.
|
|
4469
4469
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
4470
4470
|
* @public
|
|
4471
4471
|
*/
|
|
4472
|
-
MaxResults?: number;
|
|
4472
|
+
MaxResults?: number | undefined;
|
|
4473
4473
|
/**
|
|
4474
4474
|
* <p>The pagination token to use to retrieve
|
|
4475
4475
|
* the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4476
4476
|
* @public
|
|
4477
4477
|
*/
|
|
4478
|
-
NextToken?: string;
|
|
4478
|
+
NextToken?: string | undefined;
|
|
4479
4479
|
/**
|
|
4480
4480
|
* <p> The type of insights you are searching for (<code>REACTIVE</code> or
|
|
4481
4481
|
* <code>PROACTIVE</code>). </p>
|
|
@@ -4492,19 +4492,19 @@ export interface SearchOrganizationInsightsResponse {
|
|
|
4492
4492
|
* account.</p>
|
|
4493
4493
|
* @public
|
|
4494
4494
|
*/
|
|
4495
|
-
ProactiveInsights?: ProactiveInsightSummary[];
|
|
4495
|
+
ProactiveInsights?: ProactiveInsightSummary[] | undefined;
|
|
4496
4496
|
/**
|
|
4497
4497
|
* <p>An integer that specifies the number of open reactive insights in your Amazon Web Services
|
|
4498
4498
|
* account.</p>
|
|
4499
4499
|
* @public
|
|
4500
4500
|
*/
|
|
4501
|
-
ReactiveInsights?: ReactiveInsightSummary[];
|
|
4501
|
+
ReactiveInsights?: ReactiveInsightSummary[] | undefined;
|
|
4502
4502
|
/**
|
|
4503
4503
|
* <p>The pagination token to use to retrieve
|
|
4504
4504
|
* the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4505
4505
|
* @public
|
|
4506
4506
|
*/
|
|
4507
|
-
NextToken?: string;
|
|
4507
|
+
NextToken?: string | undefined;
|
|
4508
4508
|
}
|
|
4509
4509
|
/**
|
|
4510
4510
|
* @public
|
|
@@ -4519,7 +4519,7 @@ export interface StartCostEstimationRequest {
|
|
|
4519
4519
|
* <p>The idempotency token used to identify each cost estimate request.</p>
|
|
4520
4520
|
* @public
|
|
4521
4521
|
*/
|
|
4522
|
-
ClientToken?: string;
|
|
4522
|
+
ClientToken?: string | undefined;
|
|
4523
4523
|
}
|
|
4524
4524
|
/**
|
|
4525
4525
|
* @public
|
|
@@ -4535,7 +4535,7 @@ export interface UpdateEventSourcesConfigRequest {
|
|
|
4535
4535
|
* EventBridge with another AWS Service.</p>
|
|
4536
4536
|
* @public
|
|
4537
4537
|
*/
|
|
4538
|
-
EventSources?: EventSourcesConfig;
|
|
4538
|
+
EventSources?: EventSourcesConfig | undefined;
|
|
4539
4539
|
}
|
|
4540
4540
|
/**
|
|
4541
4541
|
* @public
|
|
@@ -4565,7 +4565,7 @@ export interface UpdateCloudFormationCollectionFilter {
|
|
|
4565
4565
|
* </p>
|
|
4566
4566
|
* @public
|
|
4567
4567
|
*/
|
|
4568
|
-
StackNames?: string[];
|
|
4568
|
+
StackNames?: string[] | undefined;
|
|
4569
4569
|
}
|
|
4570
4570
|
/**
|
|
4571
4571
|
* <p>A new collection of Amazon Web Services resources that are defined by an Amazon Web Services tag or tag
|
|
@@ -4612,7 +4612,7 @@ export interface UpdateResourceCollectionFilter {
|
|
|
4612
4612
|
* <p> A collection of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
4613
4613
|
* @public
|
|
4614
4614
|
*/
|
|
4615
|
-
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
4615
|
+
CloudFormation?: UpdateCloudFormationCollectionFilter | undefined;
|
|
4616
4616
|
/**
|
|
4617
4617
|
* <p>The updated Amazon Web Services tags used to filter the resources in the resource collection.</p>
|
|
4618
4618
|
* <p>Tags help you identify and organize your Amazon Web Services resources. Many Amazon Web Services services support
|
|
@@ -4650,7 +4650,7 @@ export interface UpdateResourceCollectionFilter {
|
|
|
4650
4650
|
* </important>
|
|
4651
4651
|
* @public
|
|
4652
4652
|
*/
|
|
4653
|
-
Tags?: UpdateTagCollectionFilter[];
|
|
4653
|
+
Tags?: UpdateTagCollectionFilter[] | undefined;
|
|
4654
4654
|
}
|
|
4655
4655
|
/**
|
|
4656
4656
|
* @public
|
|
@@ -4696,21 +4696,21 @@ export interface KMSServerSideEncryptionIntegrationConfig {
|
|
|
4696
4696
|
* <p>Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias</p>
|
|
4697
4697
|
* @public
|
|
4698
4698
|
*/
|
|
4699
|
-
KMSKeyId?: string;
|
|
4699
|
+
KMSKeyId?: string | undefined;
|
|
4700
4700
|
/**
|
|
4701
4701
|
* <p>
|
|
4702
4702
|
* Specifies if DevOps Guru is enabled for KMS integration.
|
|
4703
4703
|
* </p>
|
|
4704
4704
|
* @public
|
|
4705
4705
|
*/
|
|
4706
|
-
OptInStatus?: OptInStatus;
|
|
4706
|
+
OptInStatus?: OptInStatus | undefined;
|
|
4707
4707
|
/**
|
|
4708
4708
|
* <p>
|
|
4709
4709
|
* The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.
|
|
4710
4710
|
* </p>
|
|
4711
4711
|
* @public
|
|
4712
4712
|
*/
|
|
4713
|
-
Type?: ServerSideEncryptionType;
|
|
4713
|
+
Type?: ServerSideEncryptionType | undefined;
|
|
4714
4714
|
}
|
|
4715
4715
|
/**
|
|
4716
4716
|
* <p>
|
|
@@ -4723,7 +4723,7 @@ export interface LogsAnomalyDetectionIntegrationConfig {
|
|
|
4723
4723
|
* <p>Specifies if DevOps Guru is configured to perform log anomaly detection on CloudWatch log groups.</p>
|
|
4724
4724
|
* @public
|
|
4725
4725
|
*/
|
|
4726
|
-
OptInStatus?: OptInStatus;
|
|
4726
|
+
OptInStatus?: OptInStatus | undefined;
|
|
4727
4727
|
}
|
|
4728
4728
|
/**
|
|
4729
4729
|
* <p> Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager
|
|
@@ -4736,7 +4736,7 @@ export interface OpsCenterIntegrationConfig {
|
|
|
4736
4736
|
* insight. </p>
|
|
4737
4737
|
* @public
|
|
4738
4738
|
*/
|
|
4739
|
-
OptInStatus?: OptInStatus;
|
|
4739
|
+
OptInStatus?: OptInStatus | undefined;
|
|
4740
4740
|
}
|
|
4741
4741
|
/**
|
|
4742
4742
|
* <p> Information about updating the integration status of an Amazon Web Services service, such as
|
|
@@ -4749,21 +4749,21 @@ export interface UpdateServiceIntegrationConfig {
|
|
|
4749
4749
|
* OpsCenter for each created insight. You can use this to update the configuration.</p>
|
|
4750
4750
|
* @public
|
|
4751
4751
|
*/
|
|
4752
|
-
OpsCenter?: OpsCenterIntegrationConfig;
|
|
4752
|
+
OpsCenter?: OpsCenterIntegrationConfig | undefined;
|
|
4753
4753
|
/**
|
|
4754
4754
|
* <p>
|
|
4755
4755
|
* Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
|
|
4756
4756
|
* </p>
|
|
4757
4757
|
* @public
|
|
4758
4758
|
*/
|
|
4759
|
-
LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig;
|
|
4759
|
+
LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig | undefined;
|
|
4760
4760
|
/**
|
|
4761
4761
|
* <p>
|
|
4762
4762
|
* Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
|
|
4763
4763
|
* </p>
|
|
4764
4764
|
* @public
|
|
4765
4765
|
*/
|
|
4766
|
-
KMSServerSideEncryption?: KMSServerSideEncryptionIntegrationConfig;
|
|
4766
|
+
KMSServerSideEncryption?: KMSServerSideEncryptionIntegrationConfig | undefined;
|
|
4767
4767
|
}
|
|
4768
4768
|
/**
|
|
4769
4769
|
* @public
|