@aws-sdk/client-cloudwatch 3.687.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 +304 -304
- package/dist-types/ts3.4/models/models_0.d.ts +304 -304
- package/package.json +7 -7
|
@@ -47,32 +47,32 @@ export interface AlarmHistoryItem {
|
|
|
47
47
|
* <p>The descriptive name for the alarm.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
AlarmName?: string;
|
|
50
|
+
AlarmName?: string | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>The type of alarm, either metric alarm or composite alarm.</p>
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
AlarmType?: AlarmType;
|
|
55
|
+
AlarmType?: AlarmType | undefined;
|
|
56
56
|
/**
|
|
57
57
|
* <p>The time stamp for the alarm history item.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
Timestamp?: Date;
|
|
60
|
+
Timestamp?: Date | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>The type of alarm history item.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
HistoryItemType?: HistoryItemType;
|
|
65
|
+
HistoryItemType?: HistoryItemType | undefined;
|
|
66
66
|
/**
|
|
67
67
|
* <p>A summary of the alarm history, in text format.</p>
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
HistorySummary?: string;
|
|
70
|
+
HistorySummary?: string | undefined;
|
|
71
71
|
/**
|
|
72
72
|
* <p>Data about the alarm, in JSON format.</p>
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
|
-
HistoryData?: string;
|
|
75
|
+
HistoryData?: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* <p>Specifies one range of days or times to exclude from use for training an
|
|
@@ -106,7 +106,7 @@ export interface AnomalyDetectorConfiguration {
|
|
|
106
106
|
* deployments, aren't used when CloudWatch creates the model.</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
ExcludedTimeRanges?: Range[];
|
|
109
|
+
ExcludedTimeRanges?: Range[] | undefined;
|
|
110
110
|
/**
|
|
111
111
|
* <p>The time zone to use for the metric. This is useful to enable the model to automatically
|
|
112
112
|
* account for daylight savings time changes if the metric is sensitive to such time
|
|
@@ -115,7 +115,7 @@ export interface AnomalyDetectorConfiguration {
|
|
|
115
115
|
* see <a href="https://en.wikipedia.org/wiki/Tz_database">tz database</a>.</p>
|
|
116
116
|
* @public
|
|
117
117
|
*/
|
|
118
|
-
MetricTimezone?: string;
|
|
118
|
+
MetricTimezone?: string | undefined;
|
|
119
119
|
}
|
|
120
120
|
/**
|
|
121
121
|
* <p>A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique
|
|
@@ -156,7 +156,7 @@ export interface MetricCharacteristics {
|
|
|
156
156
|
* as anomalies.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
PeriodicSpikes?: boolean;
|
|
159
|
+
PeriodicSpikes?: boolean | undefined;
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
162
|
* <p>Represents a specific metric.</p>
|
|
@@ -167,17 +167,17 @@ export interface Metric {
|
|
|
167
167
|
* <p>The namespace of the metric.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
Namespace?: string;
|
|
170
|
+
Namespace?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The name of the metric. This is a required field.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
MetricName?: string;
|
|
175
|
+
MetricName?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* <p>The dimensions for the metric.</p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
Dimensions?: Dimension[];
|
|
180
|
+
Dimensions?: Dimension[] | undefined;
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
183
|
* @public
|
|
@@ -259,7 +259,7 @@ export interface MetricStat {
|
|
|
259
259
|
* If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.</p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
Unit?: StandardUnit;
|
|
262
|
+
Unit?: StandardUnit | undefined;
|
|
263
263
|
}
|
|
264
264
|
/**
|
|
265
265
|
* <p>This structure is used in both <code>GetMetricData</code> and <code>PutMetricAlarm</code>. The supported
|
|
@@ -301,7 +301,7 @@ export interface MetricDataQuery {
|
|
|
301
301
|
* <code>Expression</code> or <code>MetricStat</code> but not both.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
MetricStat?: MetricStat;
|
|
304
|
+
MetricStat?: MetricStat | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>This field can contain either a Metrics Insights query, or a metric math expression to be performed on the
|
|
307
307
|
* returned data. For more information about Metrics Insights queries, see
|
|
@@ -317,7 +317,7 @@ export interface MetricDataQuery {
|
|
|
317
317
|
* <code>Expression</code> or <code>MetricStat</code> but not both.</p>
|
|
318
318
|
* @public
|
|
319
319
|
*/
|
|
320
|
-
Expression?: string;
|
|
320
|
+
Expression?: string | undefined;
|
|
321
321
|
/**
|
|
322
322
|
* <p>A human-readable label for this metric or expression. This is especially useful
|
|
323
323
|
* if this is an expression, so that you know
|
|
@@ -328,7 +328,7 @@ export interface MetricDataQuery {
|
|
|
328
328
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html">Using Dynamic Labels</a>.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
Label?: string;
|
|
331
|
+
Label?: string | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>When used in <code>GetMetricData</code>, this option indicates whether to return the
|
|
334
334
|
* timestamps and raw data values of this metric. If you are performing this call just to
|
|
@@ -339,7 +339,7 @@ export interface MetricDataQuery {
|
|
|
339
339
|
* other metrics and expressions in the same <code>PutMetricAlarm</code> operation, specify <code>ReturnData</code> as False.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
ReturnData?: boolean;
|
|
342
|
+
ReturnData?: boolean | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The granularity, in seconds, of the returned data points. For metrics with regular resolution, a
|
|
345
345
|
* period can be as short as one minute (60 seconds) and must be a multiple of 60.
|
|
@@ -348,7 +348,7 @@ export interface MetricDataQuery {
|
|
|
348
348
|
* stored by a <code>PutMetricData</code> operation that includes a <code>StorageResolution of 1 second</code>.</p>
|
|
349
349
|
* @public
|
|
350
350
|
*/
|
|
351
|
-
Period?: number;
|
|
351
|
+
Period?: number | undefined;
|
|
352
352
|
/**
|
|
353
353
|
* <p>The ID of the account where the metrics are located.</p>
|
|
354
354
|
* <p>If you are performing a <code>GetMetricData</code> operation in a monitoring account, use this to specify
|
|
@@ -357,7 +357,7 @@ export interface MetricDataQuery {
|
|
|
357
357
|
* which account contains the metric that the alarm is watching.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
AccountId?: string;
|
|
360
|
+
AccountId?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
/**
|
|
363
363
|
* <p>Indicates the CloudWatch math expression that provides the time series the anomaly detector
|
|
@@ -381,7 +381,7 @@ export interface MetricMathAnomalyDetector {
|
|
|
381
381
|
* a single time series.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
MetricDataQueries?: MetricDataQuery[];
|
|
384
|
+
MetricDataQueries?: MetricDataQuery[] | undefined;
|
|
385
385
|
}
|
|
386
386
|
/**
|
|
387
387
|
* <p>Designates the CloudWatch metric and statistic that provides the time series the anomaly detector
|
|
@@ -396,27 +396,27 @@ export interface SingleMetricAnomalyDetector {
|
|
|
396
396
|
* the current account is used.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
AccountId?: string;
|
|
399
|
+
AccountId?: string | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* <p>The namespace of the metric to create the anomaly detection model for.</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
Namespace?: string;
|
|
404
|
+
Namespace?: string | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* <p>The name of the metric to create the anomaly detection model for.</p>
|
|
407
407
|
* @public
|
|
408
408
|
*/
|
|
409
|
-
MetricName?: string;
|
|
409
|
+
MetricName?: string | undefined;
|
|
410
410
|
/**
|
|
411
411
|
* <p>The metric dimensions to create the anomaly detection model for.</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
Dimensions?: Dimension[];
|
|
414
|
+
Dimensions?: Dimension[] | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>The statistic to use for the metric and anomaly detection model.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
Stat?: string;
|
|
419
|
+
Stat?: string | undefined;
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* @public
|
|
@@ -446,28 +446,28 @@ export interface AnomalyDetector {
|
|
|
446
446
|
* <p>The namespace of the metric associated with the anomaly detection model.</p>
|
|
447
447
|
* @public
|
|
448
448
|
*/
|
|
449
|
-
Namespace?: string;
|
|
449
|
+
Namespace?: string | undefined;
|
|
450
450
|
/**
|
|
451
451
|
* @deprecated
|
|
452
452
|
*
|
|
453
453
|
* <p>The name of the metric associated with the anomaly detection model.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
MetricName?: string;
|
|
456
|
+
MetricName?: string | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* @deprecated
|
|
459
459
|
*
|
|
460
460
|
* <p>The metric dimensions associated with the anomaly detection model.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
Dimensions?: Dimension[];
|
|
463
|
+
Dimensions?: Dimension[] | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* @deprecated
|
|
466
466
|
*
|
|
467
467
|
* <p>The statistic associated with the anomaly detection model.</p>
|
|
468
468
|
* @public
|
|
469
469
|
*/
|
|
470
|
-
Stat?: string;
|
|
470
|
+
Stat?: string | undefined;
|
|
471
471
|
/**
|
|
472
472
|
* <p>The configuration specifies details about how the
|
|
473
473
|
* anomaly detection model is to be trained, including time ranges to
|
|
@@ -475,29 +475,29 @@ export interface AnomalyDetector {
|
|
|
475
475
|
* the metric.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
Configuration?: AnomalyDetectorConfiguration;
|
|
478
|
+
Configuration?: AnomalyDetectorConfiguration | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The current status of the anomaly detector's training.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
StateValue?: AnomalyDetectorStateValue;
|
|
483
|
+
StateValue?: AnomalyDetectorStateValue | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>This object includes parameters that you can use to provide information about your metric to
|
|
486
486
|
* CloudWatch to help it build more accurate anomaly detection models. Currently, it includes
|
|
487
487
|
* the <code>PeriodicSpikes</code> parameter.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
MetricCharacteristics?: MetricCharacteristics;
|
|
490
|
+
MetricCharacteristics?: MetricCharacteristics | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* <p>The CloudWatch metric and statistic for this anomaly detector.</p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
495
|
+
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* <p>The CloudWatch metric math expression for this anomaly detector.</p>
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
500
|
+
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
501
501
|
}
|
|
502
502
|
/**
|
|
503
503
|
* @public
|
|
@@ -521,22 +521,22 @@ export interface PartialFailure {
|
|
|
521
521
|
* <p>The specified rule that could not be deleted.</p>
|
|
522
522
|
* @public
|
|
523
523
|
*/
|
|
524
|
-
FailureResource?: string;
|
|
524
|
+
FailureResource?: string | undefined;
|
|
525
525
|
/**
|
|
526
526
|
* <p>The type of error.</p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
ExceptionType?: string;
|
|
529
|
+
ExceptionType?: string | undefined;
|
|
530
530
|
/**
|
|
531
531
|
* <p>The code of the error.</p>
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
FailureCode?: string;
|
|
534
|
+
FailureCode?: string | undefined;
|
|
535
535
|
/**
|
|
536
536
|
* <p>A description of the error.</p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
FailureDescription?: string;
|
|
539
|
+
FailureDescription?: string | undefined;
|
|
540
540
|
}
|
|
541
541
|
/**
|
|
542
542
|
* @public
|
|
@@ -577,67 +577,67 @@ export interface CompositeAlarm {
|
|
|
577
577
|
* <p>Indicates whether actions should be executed during any changes to the alarm state.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
ActionsEnabled?: boolean;
|
|
580
|
+
ActionsEnabled?: boolean | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
AlarmActions?: string[];
|
|
585
|
+
AlarmActions?: string[] | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* <p>The Amazon Resource Name (ARN) of the alarm.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
AlarmArn?: string;
|
|
590
|
+
AlarmArn?: string | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* <p>The time stamp of the last update to the alarm configuration.</p>
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
AlarmConfigurationUpdatedTimestamp?: Date;
|
|
595
|
+
AlarmConfigurationUpdatedTimestamp?: Date | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* <p>The description of the alarm.</p>
|
|
598
598
|
* @public
|
|
599
599
|
*/
|
|
600
|
-
AlarmDescription?: string;
|
|
600
|
+
AlarmDescription?: string | undefined;
|
|
601
601
|
/**
|
|
602
602
|
* <p>The name of the alarm.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
AlarmName?: string;
|
|
605
|
+
AlarmName?: string | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>The rule that this alarm uses to evaluate its alarm state.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
AlarmRule?: string;
|
|
610
|
+
AlarmRule?: string | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
InsufficientDataActions?: string[];
|
|
615
|
+
InsufficientDataActions?: string[] | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p>The actions to execute when this alarm transitions to the OK state from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
OKActions?: string[];
|
|
620
|
+
OKActions?: string[] | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>An explanation for the alarm state, in text format.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
StateReason?: string;
|
|
625
|
+
StateReason?: string | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>An explanation for the alarm state, in JSON format.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
StateReasonData?: string;
|
|
630
|
+
StateReasonData?: string | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* <p>Tracks the timestamp of any state update, even if <code>StateValue</code> doesn't change.</p>
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
StateUpdatedTimestamp?: Date;
|
|
635
|
+
StateUpdatedTimestamp?: Date | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* <p>The state value for the alarm.</p>
|
|
638
638
|
* @public
|
|
639
639
|
*/
|
|
640
|
-
StateValue?: StateValue;
|
|
640
|
+
StateValue?: StateValue | undefined;
|
|
641
641
|
/**
|
|
642
642
|
* <p>
|
|
643
643
|
* The timestamp
|
|
@@ -646,7 +646,7 @@ export interface CompositeAlarm {
|
|
|
646
646
|
* </p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
StateTransitionedTimestamp?: Date;
|
|
649
|
+
StateTransitionedTimestamp?: Date | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* <p>
|
|
652
652
|
* When the value is <code>ALARM</code>,
|
|
@@ -679,14 +679,14 @@ export interface CompositeAlarm {
|
|
|
679
679
|
* </p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
ActionsSuppressedBy?: ActionsSuppressedBy;
|
|
682
|
+
ActionsSuppressedBy?: ActionsSuppressedBy | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>
|
|
685
685
|
* Captures the reason for action suppression.
|
|
686
686
|
* </p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
ActionsSuppressedReason?: string;
|
|
689
|
+
ActionsSuppressedReason?: string | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>
|
|
692
692
|
* Actions will be suppressed
|
|
@@ -697,7 +697,7 @@ export interface CompositeAlarm {
|
|
|
697
697
|
* </p>
|
|
698
698
|
* @public
|
|
699
699
|
*/
|
|
700
|
-
ActionsSuppressor?: string;
|
|
700
|
+
ActionsSuppressor?: string | undefined;
|
|
701
701
|
/**
|
|
702
702
|
* <p>
|
|
703
703
|
* The maximum time
|
|
@@ -718,7 +718,7 @@ export interface CompositeAlarm {
|
|
|
718
718
|
* </important>
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
ActionsSuppressorWaitPeriod?: number;
|
|
721
|
+
ActionsSuppressorWaitPeriod?: number | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* <p>
|
|
724
724
|
* The maximum time
|
|
@@ -738,7 +738,7 @@ export interface CompositeAlarm {
|
|
|
738
738
|
* </important>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
ActionsSuppressorExtensionPeriod?: number;
|
|
741
|
+
ActionsSuppressorExtensionPeriod?: number | undefined;
|
|
742
742
|
}
|
|
743
743
|
/**
|
|
744
744
|
* <p>More than one process tried to modify a resource at the same time.</p>
|
|
@@ -747,7 +747,7 @@ export interface CompositeAlarm {
|
|
|
747
747
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
748
748
|
readonly name: "ConcurrentModificationException";
|
|
749
749
|
readonly $fault: "client";
|
|
750
|
-
Message?: string;
|
|
750
|
+
Message?: string | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* @internal
|
|
753
753
|
*/
|
|
@@ -762,23 +762,23 @@ export interface DashboardEntry {
|
|
|
762
762
|
* <p>The name of the dashboard.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
DashboardName?: string;
|
|
765
|
+
DashboardName?: string | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>The Amazon Resource Name (ARN) of the dashboard.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
DashboardArn?: string;
|
|
770
|
+
DashboardArn?: string | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>The time stamp of when the dashboard was last modified, either by an API call or
|
|
773
773
|
* through the console. This number is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.</p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
LastModified?: Date;
|
|
776
|
+
LastModified?: Date | undefined;
|
|
777
777
|
/**
|
|
778
778
|
* <p>The size of the dashboard, in bytes.</p>
|
|
779
779
|
* @public
|
|
780
780
|
*/
|
|
781
|
-
Size?: number;
|
|
781
|
+
Size?: number | undefined;
|
|
782
782
|
}
|
|
783
783
|
/**
|
|
784
784
|
* <p>An error or warning for the operation.</p>
|
|
@@ -789,12 +789,12 @@ export interface DashboardValidationMessage {
|
|
|
789
789
|
* <p>The data path related to the message.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
DataPath?: string;
|
|
792
|
+
DataPath?: string | undefined;
|
|
793
793
|
/**
|
|
794
794
|
* <p>A message describing the error or warning.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
Message?: string;
|
|
797
|
+
Message?: string | undefined;
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* <p>Some part of the dashboard data is invalid.</p>
|
|
@@ -803,7 +803,7 @@ export interface DashboardValidationMessage {
|
|
|
803
803
|
export declare class DashboardInvalidInputError extends __BaseException {
|
|
804
804
|
readonly name: "DashboardInvalidInputError";
|
|
805
805
|
readonly $fault: "client";
|
|
806
|
-
dashboardValidationMessages?: DashboardValidationMessage[];
|
|
806
|
+
dashboardValidationMessages?: DashboardValidationMessage[] | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* @internal
|
|
809
809
|
*/
|
|
@@ -830,43 +830,43 @@ export interface Datapoint {
|
|
|
830
830
|
* <p>The time stamp used for the data point.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
Timestamp?: Date;
|
|
833
|
+
Timestamp?: Date | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>The number of metric values that contributed to the aggregate value of this
|
|
836
836
|
* data point.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
SampleCount?: number;
|
|
839
|
+
SampleCount?: number | undefined;
|
|
840
840
|
/**
|
|
841
841
|
* <p>The average of the metric values that correspond to the data point.</p>
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
Average?: number;
|
|
844
|
+
Average?: number | undefined;
|
|
845
845
|
/**
|
|
846
846
|
* <p>The sum of the metric values for the data point.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
Sum?: number;
|
|
849
|
+
Sum?: number | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* <p>The minimum metric value for the data point.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
Minimum?: number;
|
|
854
|
+
Minimum?: number | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>The maximum metric value for the data point.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
Maximum?: number;
|
|
859
|
+
Maximum?: number | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>The standard unit for the data point.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
Unit?: StandardUnit;
|
|
864
|
+
Unit?: StandardUnit | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>The percentile statistic for the data point.</p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
ExtendedStatistics?: Record<string, number
|
|
869
|
+
ExtendedStatistics?: Record<string, number> | undefined;
|
|
870
870
|
}
|
|
871
871
|
/**
|
|
872
872
|
* @public
|
|
@@ -900,28 +900,28 @@ export interface DeleteAnomalyDetectorInput {
|
|
|
900
900
|
* <p>The namespace associated with the anomaly detection model to delete.</p>
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
Namespace?: string;
|
|
903
|
+
Namespace?: string | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* @deprecated
|
|
906
906
|
*
|
|
907
907
|
* <p>The metric name associated with the anomaly detection model to delete.</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
MetricName?: string;
|
|
910
|
+
MetricName?: string | undefined;
|
|
911
911
|
/**
|
|
912
912
|
* @deprecated
|
|
913
913
|
*
|
|
914
914
|
* <p>The metric dimensions associated with the anomaly detection model to delete.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
Dimensions?: Dimension[];
|
|
917
|
+
Dimensions?: Dimension[] | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* @deprecated
|
|
920
920
|
*
|
|
921
921
|
* <p>The statistic associated with the anomaly detection model to delete.</p>
|
|
922
922
|
* @public
|
|
923
923
|
*/
|
|
924
|
-
Stat?: string;
|
|
924
|
+
Stat?: string | undefined;
|
|
925
925
|
/**
|
|
926
926
|
* <p>A single metric anomaly detector to be deleted.</p>
|
|
927
927
|
* <p>When using <code>SingleMetricAnomalyDetector</code>,
|
|
@@ -955,7 +955,7 @@ export interface DeleteAnomalyDetectorInput {
|
|
|
955
955
|
* as part of the <code>SingleMetricAnomalyDetector</code> property.</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
958
|
+
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* <p>The metric math anomaly detector to be deleted.</p>
|
|
961
961
|
* <p>When using <code>MetricMathAnomalyDetector</code>, you cannot include following parameters in the same operation:</p>
|
|
@@ -988,7 +988,7 @@ export interface DeleteAnomalyDetectorInput {
|
|
|
988
988
|
* <code>MetricMathAnomalyDetector</code> property.</p>
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
991
|
+
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
992
992
|
}
|
|
993
993
|
/**
|
|
994
994
|
* @public
|
|
@@ -1006,7 +1006,7 @@ export declare class InternalServiceFault extends __BaseException {
|
|
|
1006
1006
|
* <p></p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
Message?: string;
|
|
1009
|
+
Message?: string | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* @internal
|
|
1012
1012
|
*/
|
|
@@ -1055,9 +1055,9 @@ export declare class MissingRequiredParameterException extends __BaseException {
|
|
|
1055
1055
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1056
1056
|
readonly name: "ResourceNotFoundException";
|
|
1057
1057
|
readonly $fault: "client";
|
|
1058
|
-
ResourceType?: string;
|
|
1059
|
-
ResourceId?: string;
|
|
1060
|
-
Message?: string;
|
|
1058
|
+
ResourceType?: string | undefined;
|
|
1059
|
+
ResourceId?: string | undefined;
|
|
1060
|
+
Message?: string | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* @internal
|
|
1063
1063
|
*/
|
|
@@ -1096,7 +1096,7 @@ export interface DeleteInsightRulesOutput {
|
|
|
1096
1096
|
* <p>An array listing the rules that could not be deleted. You cannot delete built-in rules.</p>
|
|
1097
1097
|
* @public
|
|
1098
1098
|
*/
|
|
1099
|
-
Failures?: PartialFailure[];
|
|
1099
|
+
Failures?: PartialFailure[] | undefined;
|
|
1100
1100
|
}
|
|
1101
1101
|
/**
|
|
1102
1102
|
* @public
|
|
@@ -1133,45 +1133,45 @@ export interface DescribeAlarmHistoryInput {
|
|
|
1133
1133
|
* <p>The name of the alarm.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
AlarmName?: string;
|
|
1136
|
+
AlarmName?: string | undefined;
|
|
1137
1137
|
/**
|
|
1138
1138
|
* <p>Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter,
|
|
1139
1139
|
* only metric alarms are returned.</p>
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
AlarmTypes?: AlarmType[];
|
|
1142
|
+
AlarmTypes?: AlarmType[] | undefined;
|
|
1143
1143
|
/**
|
|
1144
1144
|
* <p>The type of alarm histories to retrieve.</p>
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
HistoryItemType?: HistoryItemType;
|
|
1147
|
+
HistoryItemType?: HistoryItemType | undefined;
|
|
1148
1148
|
/**
|
|
1149
1149
|
* <p>The starting date to retrieve alarm history.</p>
|
|
1150
1150
|
* @public
|
|
1151
1151
|
*/
|
|
1152
|
-
StartDate?: Date;
|
|
1152
|
+
StartDate?: Date | undefined;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* <p>The ending date to retrieve alarm history.</p>
|
|
1155
1155
|
* @public
|
|
1156
1156
|
*/
|
|
1157
|
-
EndDate?: Date;
|
|
1157
|
+
EndDate?: Date | undefined;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* <p>The maximum number of alarm history records to retrieve.</p>
|
|
1160
1160
|
* @public
|
|
1161
1161
|
*/
|
|
1162
|
-
MaxRecords?: number;
|
|
1162
|
+
MaxRecords?: number | undefined;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* <p>The token returned by a previous call to indicate that there is more data
|
|
1165
1165
|
* available.</p>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
NextToken?: string;
|
|
1168
|
+
NextToken?: string | undefined;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* <p>Specified whether to return the newest or oldest alarm history first. Specify <code>TimestampDescending</code> to have the newest
|
|
1171
1171
|
* event history returned first, and specify <code>TimestampAscending</code> to have the oldest history returned first.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
ScanBy?: ScanBy;
|
|
1174
|
+
ScanBy?: ScanBy | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
/**
|
|
1177
1177
|
* @public
|
|
@@ -1181,12 +1181,12 @@ export interface DescribeAlarmHistoryOutput {
|
|
|
1181
1181
|
* <p>The alarm histories, in JSON format.</p>
|
|
1182
1182
|
* @public
|
|
1183
1183
|
*/
|
|
1184
|
-
AlarmHistoryItems?: AlarmHistoryItem[];
|
|
1184
|
+
AlarmHistoryItems?: AlarmHistoryItem[] | undefined;
|
|
1185
1185
|
/**
|
|
1186
1186
|
* <p>The token that marks the start of the next batch of returned results.</p>
|
|
1187
1187
|
* @public
|
|
1188
1188
|
*/
|
|
1189
|
-
NextToken?: string;
|
|
1189
|
+
NextToken?: string | undefined;
|
|
1190
1190
|
}
|
|
1191
1191
|
/**
|
|
1192
1192
|
* <p>The next token specified is invalid.</p>
|
|
@@ -1208,7 +1208,7 @@ export interface DescribeAlarmsInput {
|
|
|
1208
1208
|
* <p>The names of the alarms to retrieve information about.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
AlarmNames?: string[];
|
|
1211
|
+
AlarmNames?: string[] | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>An alarm name prefix. If you specify this parameter, you receive information about all alarms that have names
|
|
1214
1214
|
* that start with this prefix.</p>
|
|
@@ -1216,7 +1216,7 @@ export interface DescribeAlarmsInput {
|
|
|
1216
1216
|
* is specified, you cannot specify <code>AlarmNames</code>.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
AlarmNamePrefix?: string;
|
|
1219
|
+
AlarmNamePrefix?: string | undefined;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* <p>Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you
|
|
1222
1222
|
* omit this parameter,
|
|
@@ -1227,7 +1227,7 @@ export interface DescribeAlarmsInput {
|
|
|
1227
1227
|
* alarms, and does not return any metric alarms.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
AlarmTypes?: AlarmType[];
|
|
1230
|
+
AlarmTypes?: AlarmType[] | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>If you use this parameter and specify the name of a composite alarm, the operation returns
|
|
1233
1233
|
* information about the "children" alarms
|
|
@@ -1248,7 +1248,7 @@ export interface DescribeAlarmsInput {
|
|
|
1248
1248
|
* </note>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
ChildrenOfAlarmName?: string;
|
|
1251
|
+
ChildrenOfAlarmName?: string | undefined;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* <p>If you use this parameter and specify the name of a metric or composite alarm, the operation returns
|
|
1254
1254
|
* information about the "parent" alarms
|
|
@@ -1266,30 +1266,30 @@ export interface DescribeAlarmsInput {
|
|
|
1266
1266
|
* </note>
|
|
1267
1267
|
* @public
|
|
1268
1268
|
*/
|
|
1269
|
-
ParentsOfAlarmName?: string;
|
|
1269
|
+
ParentsOfAlarmName?: string | undefined;
|
|
1270
1270
|
/**
|
|
1271
1271
|
* <p>Specify this parameter to receive information only about alarms that are currently in the state that you specify.</p>
|
|
1272
1272
|
* @public
|
|
1273
1273
|
*/
|
|
1274
|
-
StateValue?: StateValue;
|
|
1274
|
+
StateValue?: StateValue | undefined;
|
|
1275
1275
|
/**
|
|
1276
1276
|
* <p>Use this parameter to filter the results of the operation to only those alarms that
|
|
1277
1277
|
* use a certain alarm action. For example, you could specify the ARN of an SNS topic to find all
|
|
1278
1278
|
* alarms that send notifications to that topic.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
ActionPrefix?: string;
|
|
1281
|
+
ActionPrefix?: string | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>The maximum number of alarm descriptions to retrieve.</p>
|
|
1284
1284
|
* @public
|
|
1285
1285
|
*/
|
|
1286
|
-
MaxRecords?: number;
|
|
1286
|
+
MaxRecords?: number | undefined;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* <p>The token returned by a previous call to indicate that there is more data
|
|
1289
1289
|
* available.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
NextToken?: string;
|
|
1292
|
+
NextToken?: string | undefined;
|
|
1293
1293
|
}
|
|
1294
1294
|
/**
|
|
1295
1295
|
* @public
|
|
@@ -1326,125 +1326,125 @@ export interface MetricAlarm {
|
|
|
1326
1326
|
* <p>The name of the alarm.</p>
|
|
1327
1327
|
* @public
|
|
1328
1328
|
*/
|
|
1329
|
-
AlarmName?: string;
|
|
1329
|
+
AlarmName?: string | undefined;
|
|
1330
1330
|
/**
|
|
1331
1331
|
* <p>The Amazon Resource Name (ARN) of the alarm.</p>
|
|
1332
1332
|
* @public
|
|
1333
1333
|
*/
|
|
1334
|
-
AlarmArn?: string;
|
|
1334
|
+
AlarmArn?: string | undefined;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* <p>The description of the alarm.</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
AlarmDescription?: string;
|
|
1339
|
+
AlarmDescription?: string | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>The time stamp of the last update to the alarm configuration.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
AlarmConfigurationUpdatedTimestamp?: Date;
|
|
1344
|
+
AlarmConfigurationUpdatedTimestamp?: Date | undefined;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* <p>Indicates whether actions should be executed during any changes to the alarm state.</p>
|
|
1347
1347
|
* @public
|
|
1348
1348
|
*/
|
|
1349
|
-
ActionsEnabled?: boolean;
|
|
1349
|
+
ActionsEnabled?: boolean | undefined;
|
|
1350
1350
|
/**
|
|
1351
1351
|
* <p>The actions to execute when this alarm transitions to the <code>OK</code> state
|
|
1352
1352
|
* from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
1353
1353
|
* @public
|
|
1354
1354
|
*/
|
|
1355
|
-
OKActions?: string[];
|
|
1355
|
+
OKActions?: string[] | undefined;
|
|
1356
1356
|
/**
|
|
1357
1357
|
* <p>The actions to execute when this alarm transitions to the <code>ALARM</code> state
|
|
1358
1358
|
* from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
AlarmActions?: string[];
|
|
1361
|
+
AlarmActions?: string[] | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The actions to execute when this alarm transitions to the <code>INSUFFICIENT_DATA</code> state
|
|
1364
1364
|
* from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
InsufficientDataActions?: string[];
|
|
1367
|
+
InsufficientDataActions?: string[] | undefined;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p>The state value for the alarm.</p>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
StateValue?: StateValue;
|
|
1372
|
+
StateValue?: StateValue | undefined;
|
|
1373
1373
|
/**
|
|
1374
1374
|
* <p>An explanation for the alarm state, in text format.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
StateReason?: string;
|
|
1377
|
+
StateReason?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>An explanation for the alarm state, in JSON format.</p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
StateReasonData?: string;
|
|
1382
|
+
StateReasonData?: string | undefined;
|
|
1383
1383
|
/**
|
|
1384
1384
|
* <p>The time stamp of the last update to the value of either the
|
|
1385
1385
|
* <code>StateValue</code> or <code>EvaluationState</code> parameters.</p>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
StateUpdatedTimestamp?: Date;
|
|
1388
|
+
StateUpdatedTimestamp?: Date | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p>The name of the metric associated with the alarm, if this is an alarm
|
|
1391
1391
|
* based on a single metric.</p>
|
|
1392
1392
|
* @public
|
|
1393
1393
|
*/
|
|
1394
|
-
MetricName?: string;
|
|
1394
|
+
MetricName?: string | undefined;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The namespace of the metric associated with the alarm.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
Namespace?: string;
|
|
1399
|
+
Namespace?: string | undefined;
|
|
1400
1400
|
/**
|
|
1401
1401
|
* <p>The statistic for the metric associated with the alarm, other than percentile.
|
|
1402
1402
|
* For percentile statistics, use <code>ExtendedStatistic</code>.</p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
Statistic?: Statistic;
|
|
1405
|
+
Statistic?: Statistic | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>The percentile statistic for the metric associated with the alarm. Specify a value between
|
|
1408
1408
|
* p0.0 and p100.</p>
|
|
1409
1409
|
* @public
|
|
1410
1410
|
*/
|
|
1411
|
-
ExtendedStatistic?: string;
|
|
1411
|
+
ExtendedStatistic?: string | undefined;
|
|
1412
1412
|
/**
|
|
1413
1413
|
* <p>The dimensions for the metric associated with the alarm.</p>
|
|
1414
1414
|
* @public
|
|
1415
1415
|
*/
|
|
1416
|
-
Dimensions?: Dimension[];
|
|
1416
|
+
Dimensions?: Dimension[] | undefined;
|
|
1417
1417
|
/**
|
|
1418
1418
|
* <p>The period, in seconds, over which the statistic is applied.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
Period?: number;
|
|
1421
|
+
Period?: number | undefined;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* <p>The unit of the metric associated with the alarm.</p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
Unit?: StandardUnit;
|
|
1426
|
+
Unit?: StandardUnit | undefined;
|
|
1427
1427
|
/**
|
|
1428
1428
|
* <p>The number of periods over which data is compared to the specified threshold.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
EvaluationPeriods?: number;
|
|
1431
|
+
EvaluationPeriods?: number | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>The number of data points that must be breaching to trigger the alarm.</p>
|
|
1434
1434
|
* @public
|
|
1435
1435
|
*/
|
|
1436
|
-
DatapointsToAlarm?: number;
|
|
1436
|
+
DatapointsToAlarm?: number | undefined;
|
|
1437
1437
|
/**
|
|
1438
1438
|
* <p>The value to compare with the specified statistic.</p>
|
|
1439
1439
|
* @public
|
|
1440
1440
|
*/
|
|
1441
|
-
Threshold?: number;
|
|
1441
|
+
Threshold?: number | undefined;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* <p>The arithmetic operation to use when comparing the specified
|
|
1444
1444
|
* statistic and threshold. The specified statistic value is used as the first operand.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
ComparisonOperator?: ComparisonOperator;
|
|
1447
|
+
ComparisonOperator?: ComparisonOperator | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>Sets how this alarm is to handle missing data points. The valid values
|
|
1450
1450
|
* are <code>breaching</code>, <code>notBreaching</code>, <code>ignore</code>, and
|
|
@@ -1454,7 +1454,7 @@ export interface MetricAlarm {
|
|
|
1454
1454
|
* behavior of <code>missing</code> is used.</p>
|
|
1455
1455
|
* @public
|
|
1456
1456
|
*/
|
|
1457
|
-
TreatMissingData?: string;
|
|
1457
|
+
TreatMissingData?: string | undefined;
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <p>Used only for alarms based on percentiles. If <code>ignore</code>, the alarm state does not change
|
|
1460
1460
|
* during periods with too few data points to be statistically significant. If <code>evaluate</code> or this
|
|
@@ -1462,7 +1462,7 @@ export interface MetricAlarm {
|
|
|
1462
1462
|
* how many data points are available.</p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
EvaluateLowSampleCountPercentile?: string;
|
|
1465
|
+
EvaluateLowSampleCountPercentile?: string | undefined;
|
|
1466
1466
|
/**
|
|
1467
1467
|
* <p>An array of MetricDataQuery structures, used in an alarm based on a
|
|
1468
1468
|
* metric math expression. Each structure either retrieves a
|
|
@@ -1473,14 +1473,14 @@ export interface MetricAlarm {
|
|
|
1473
1473
|
* true.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
Metrics?: MetricDataQuery[];
|
|
1476
|
+
Metrics?: MetricDataQuery[] | undefined;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* <p>In an alarm based on an anomaly detection model, this is the ID of the
|
|
1479
1479
|
* <code>ANOMALY_DETECTION_BAND</code> function
|
|
1480
1480
|
* used as the threshold for the alarm.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
ThresholdMetricId?: string;
|
|
1483
|
+
ThresholdMetricId?: string | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* <p>If the value of this field is
|
|
1486
1486
|
* <code>PARTIAL_DATA</code>, the alarm is being evaluated based on only partial data. This happens if the
|
|
@@ -1489,12 +1489,12 @@ export interface MetricAlarm {
|
|
|
1489
1489
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Create_Metrics_Insights_Alarm.html">Create alarms on Metrics Insights queries</a>.</p>
|
|
1490
1490
|
* @public
|
|
1491
1491
|
*/
|
|
1492
|
-
EvaluationState?: EvaluationState;
|
|
1492
|
+
EvaluationState?: EvaluationState | undefined;
|
|
1493
1493
|
/**
|
|
1494
1494
|
* <p>The date and time that the alarm's <code>StateValue</code> most recently changed.</p>
|
|
1495
1495
|
* @public
|
|
1496
1496
|
*/
|
|
1497
|
-
StateTransitionedTimestamp?: Date;
|
|
1497
|
+
StateTransitionedTimestamp?: Date | undefined;
|
|
1498
1498
|
}
|
|
1499
1499
|
/**
|
|
1500
1500
|
* @public
|
|
@@ -1504,17 +1504,17 @@ export interface DescribeAlarmsOutput {
|
|
|
1504
1504
|
* <p>The information about any composite alarms returned by the operation.</p>
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
CompositeAlarms?: CompositeAlarm[];
|
|
1507
|
+
CompositeAlarms?: CompositeAlarm[] | undefined;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* <p>The information about any metric alarms returned by the operation.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
MetricAlarms?: MetricAlarm[];
|
|
1512
|
+
MetricAlarms?: MetricAlarm[] | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>The token that marks the start of the next batch of returned results.</p>
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
|
-
NextToken?: string;
|
|
1517
|
+
NextToken?: string | undefined;
|
|
1518
1518
|
}
|
|
1519
1519
|
/**
|
|
1520
1520
|
* @public
|
|
@@ -1535,29 +1535,29 @@ export interface DescribeAlarmsForMetricInput {
|
|
|
1535
1535
|
* For percentile statistics, use <code>ExtendedStatistics</code>.</p>
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
Statistic?: Statistic;
|
|
1538
|
+
Statistic?: Statistic | undefined;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* <p>The percentile statistic for the metric. Specify a value between
|
|
1541
1541
|
* p0.0 and p100.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
ExtendedStatistic?: string;
|
|
1544
|
+
ExtendedStatistic?: string | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>The dimensions associated with the metric. If the metric has any associated
|
|
1547
1547
|
* dimensions, you must specify them in order for the call to succeed.</p>
|
|
1548
1548
|
* @public
|
|
1549
1549
|
*/
|
|
1550
|
-
Dimensions?: Dimension[];
|
|
1550
|
+
Dimensions?: Dimension[] | undefined;
|
|
1551
1551
|
/**
|
|
1552
1552
|
* <p>The period, in seconds, over which the statistic is applied.</p>
|
|
1553
1553
|
* @public
|
|
1554
1554
|
*/
|
|
1555
|
-
Period?: number;
|
|
1555
|
+
Period?: number | undefined;
|
|
1556
1556
|
/**
|
|
1557
1557
|
* <p>The unit for the metric.</p>
|
|
1558
1558
|
* @public
|
|
1559
1559
|
*/
|
|
1560
|
-
Unit?: StandardUnit;
|
|
1560
|
+
Unit?: StandardUnit | undefined;
|
|
1561
1561
|
}
|
|
1562
1562
|
/**
|
|
1563
1563
|
* @public
|
|
@@ -1567,7 +1567,7 @@ export interface DescribeAlarmsForMetricOutput {
|
|
|
1567
1567
|
* <p>The information for each alarm with the specified metric.</p>
|
|
1568
1568
|
* @public
|
|
1569
1569
|
*/
|
|
1570
|
-
MetricAlarms?: MetricAlarm[];
|
|
1570
|
+
MetricAlarms?: MetricAlarm[] | undefined;
|
|
1571
1571
|
}
|
|
1572
1572
|
/**
|
|
1573
1573
|
* @public
|
|
@@ -1577,7 +1577,7 @@ export interface DescribeAnomalyDetectorsInput {
|
|
|
1577
1577
|
* <p>Use the token returned by the previous operation to request the next page of results.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
NextToken?: string;
|
|
1580
|
+
NextToken?: string | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The maximum number of results to return in one operation. The maximum
|
|
1583
1583
|
* value that you can specify is 100.</p>
|
|
@@ -1585,33 +1585,33 @@ export interface DescribeAnomalyDetectorsInput {
|
|
|
1585
1585
|
* <code>NextToken</code> value. </p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
MaxResults?: number;
|
|
1588
|
+
MaxResults?: number | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* <p>Limits the results to only the anomaly detection models that
|
|
1591
1591
|
* are associated with the specified namespace.</p>
|
|
1592
1592
|
* @public
|
|
1593
1593
|
*/
|
|
1594
|
-
Namespace?: string;
|
|
1594
|
+
Namespace?: string | undefined;
|
|
1595
1595
|
/**
|
|
1596
1596
|
* <p>Limits the results to only the anomaly detection models that are associated with the
|
|
1597
1597
|
* specified metric name. If there are multiple metrics with this name in different
|
|
1598
1598
|
* namespaces that have anomaly detection models, they're all returned.</p>
|
|
1599
1599
|
* @public
|
|
1600
1600
|
*/
|
|
1601
|
-
MetricName?: string;
|
|
1601
|
+
MetricName?: string | undefined;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* <p>Limits the results to only the anomaly detection models that are associated with the
|
|
1604
1604
|
* specified metric dimensions. If there are multiple metrics that have these dimensions
|
|
1605
1605
|
* and have anomaly detection models associated, they're all returned.</p>
|
|
1606
1606
|
* @public
|
|
1607
1607
|
*/
|
|
1608
|
-
Dimensions?: Dimension[];
|
|
1608
|
+
Dimensions?: Dimension[] | undefined;
|
|
1609
1609
|
/**
|
|
1610
1610
|
* <p>The anomaly detector types to request when using <code>DescribeAnomalyDetectorsInput</code>.
|
|
1611
1611
|
* If empty, defaults to <code>SINGLE_METRIC</code>.</p>
|
|
1612
1612
|
* @public
|
|
1613
1613
|
*/
|
|
1614
|
-
AnomalyDetectorTypes?: AnomalyDetectorType[];
|
|
1614
|
+
AnomalyDetectorTypes?: AnomalyDetectorType[] | undefined;
|
|
1615
1615
|
}
|
|
1616
1616
|
/**
|
|
1617
1617
|
* @public
|
|
@@ -1621,13 +1621,13 @@ export interface DescribeAnomalyDetectorsOutput {
|
|
|
1621
1621
|
* <p>The list of anomaly detection models returned by the operation.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
AnomalyDetectors?: AnomalyDetector[];
|
|
1624
|
+
AnomalyDetectors?: AnomalyDetector[] | undefined;
|
|
1625
1625
|
/**
|
|
1626
1626
|
* <p>A token that you can use in a subsequent operation to
|
|
1627
1627
|
* retrieve the next set of results.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
NextToken?: string;
|
|
1630
|
+
NextToken?: string | undefined;
|
|
1631
1631
|
}
|
|
1632
1632
|
/**
|
|
1633
1633
|
* @public
|
|
@@ -1637,13 +1637,13 @@ export interface DescribeInsightRulesInput {
|
|
|
1637
1637
|
* <p>Include this value, if it was returned by the previous operation, to get the next set of rules.</p>
|
|
1638
1638
|
* @public
|
|
1639
1639
|
*/
|
|
1640
|
-
NextToken?: string;
|
|
1640
|
+
NextToken?: string | undefined;
|
|
1641
1641
|
/**
|
|
1642
1642
|
* <p>The maximum number of results to return in one operation. If you omit this
|
|
1643
1643
|
* parameter, the default of 500 is used.</p>
|
|
1644
1644
|
* @public
|
|
1645
1645
|
*/
|
|
1646
|
-
MaxResults?: number;
|
|
1646
|
+
MaxResults?: number | undefined;
|
|
1647
1647
|
}
|
|
1648
1648
|
/**
|
|
1649
1649
|
* <p>This structure contains the definition
|
|
@@ -1686,7 +1686,7 @@ export interface InsightRule {
|
|
|
1686
1686
|
* </p>
|
|
1687
1687
|
* @public
|
|
1688
1688
|
*/
|
|
1689
|
-
ManagedRule?: boolean;
|
|
1689
|
+
ManagedRule?: boolean | undefined;
|
|
1690
1690
|
}
|
|
1691
1691
|
/**
|
|
1692
1692
|
* @public
|
|
@@ -1696,12 +1696,12 @@ export interface DescribeInsightRulesOutput {
|
|
|
1696
1696
|
* <p>If this parameter is present, it is a token that marks the start of the next batch of returned results. </p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
NextToken?: string;
|
|
1699
|
+
NextToken?: string | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>The rules returned by the operation.</p>
|
|
1702
1702
|
* @public
|
|
1703
1703
|
*/
|
|
1704
|
-
InsightRules?: InsightRule[];
|
|
1704
|
+
InsightRules?: InsightRule[] | undefined;
|
|
1705
1705
|
}
|
|
1706
1706
|
/**
|
|
1707
1707
|
* <p>Represents filters for a dimension.</p>
|
|
@@ -1717,7 +1717,7 @@ export interface DimensionFilter {
|
|
|
1717
1717
|
* <p>The value of the dimension to be matched.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
Value?: string;
|
|
1720
|
+
Value?: string | undefined;
|
|
1721
1721
|
}
|
|
1722
1722
|
/**
|
|
1723
1723
|
* @public
|
|
@@ -1747,7 +1747,7 @@ export interface DisableInsightRulesOutput {
|
|
|
1747
1747
|
* <p>An array listing the rules that could not be disabled. You cannot disable built-in rules.</p>
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
Failures?: PartialFailure[];
|
|
1750
|
+
Failures?: PartialFailure[] | undefined;
|
|
1751
1751
|
}
|
|
1752
1752
|
/**
|
|
1753
1753
|
* @public
|
|
@@ -1777,7 +1777,7 @@ export interface EnableInsightRulesOutput {
|
|
|
1777
1777
|
* <p>An array listing the rules that could not be enabled. You cannot disable or enable built-in rules.</p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
Failures?: PartialFailure[];
|
|
1780
|
+
Failures?: PartialFailure[] | undefined;
|
|
1781
1781
|
}
|
|
1782
1782
|
/**
|
|
1783
1783
|
* <p>The operation exceeded one or more limits.</p>
|
|
@@ -1786,7 +1786,7 @@ export interface EnableInsightRulesOutput {
|
|
|
1786
1786
|
export declare class LimitExceededException extends __BaseException {
|
|
1787
1787
|
readonly name: "LimitExceededException";
|
|
1788
1788
|
readonly $fault: "client";
|
|
1789
|
-
Message?: string;
|
|
1789
|
+
Message?: string | undefined;
|
|
1790
1790
|
/**
|
|
1791
1791
|
* @internal
|
|
1792
1792
|
*/
|
|
@@ -1810,19 +1810,19 @@ export interface GetDashboardOutput {
|
|
|
1810
1810
|
* <p>The Amazon Resource Name (ARN) of the dashboard.</p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
DashboardArn?: string;
|
|
1813
|
+
DashboardArn?: string | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>The detailed information about the dashboard, including what widgets are included and their location
|
|
1816
1816
|
* on the dashboard. For more information about the <code>DashboardBody</code> syntax,
|
|
1817
1817
|
* see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CloudWatch-Dashboard-Body-Structure.html">Dashboard Body Structure and Syntax</a>. </p>
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
DashboardBody?: string;
|
|
1820
|
+
DashboardBody?: string | undefined;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* <p>The name of the dashboard.</p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
DashboardName?: string;
|
|
1825
|
+
DashboardName?: string | undefined;
|
|
1826
1826
|
}
|
|
1827
1827
|
/**
|
|
1828
1828
|
* @public
|
|
@@ -1856,7 +1856,7 @@ export interface GetInsightRuleReportInput {
|
|
|
1856
1856
|
* <p>The maximum number of contributors to include in the report. The range is 1 to 100. If you omit this, the default of 10 is used.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
MaxContributorCount?: number;
|
|
1859
|
+
MaxContributorCount?: number | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>Specifies which metrics to use for aggregation of contributor values for the report. You can specify one or more
|
|
1862
1862
|
* of the following metrics:</p>
|
|
@@ -1896,12 +1896,12 @@ export interface GetInsightRuleReportInput {
|
|
|
1896
1896
|
* </ul>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
Metrics?: string[];
|
|
1899
|
+
Metrics?: string[] | undefined;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* <p>Determines what statistic to use to rank the contributors. Valid values are <code>Sum</code> and <code>Maximum</code>.</p>
|
|
1902
1902
|
* @public
|
|
1903
1903
|
*/
|
|
1904
|
-
OrderBy?: string;
|
|
1904
|
+
OrderBy?: string | undefined;
|
|
1905
1905
|
}
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>One data point related to one contributor.</p>
|
|
@@ -1961,7 +1961,7 @@ export interface InsightRuleMetricDatapoint {
|
|
|
1961
1961
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
UniqueContributors?: number;
|
|
1964
|
+
UniqueContributors?: number | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The maximum value provided by one contributor during this timestamp. Each timestamp is evaluated separately,
|
|
1967
1967
|
* so the identity of the max contributor
|
|
@@ -1969,37 +1969,37 @@ export interface InsightRuleMetricDatapoint {
|
|
|
1969
1969
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1970
1970
|
* @public
|
|
1971
1971
|
*/
|
|
1972
|
-
MaxContributorValue?: number;
|
|
1972
|
+
MaxContributorValue?: number | undefined;
|
|
1973
1973
|
/**
|
|
1974
1974
|
* <p>The number of occurrences that matched the rule during this data point.</p>
|
|
1975
1975
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
SampleCount?: number;
|
|
1978
|
+
SampleCount?: number | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* <p>The average value from all contributors during the time period represented by that data point.</p>
|
|
1981
1981
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
Average?: number;
|
|
1984
|
+
Average?: number | undefined;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* <p>The sum of the values from all contributors during the time period represented by that data point.</p>
|
|
1987
1987
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1988
1988
|
* @public
|
|
1989
1989
|
*/
|
|
1990
|
-
Sum?: number;
|
|
1990
|
+
Sum?: number | undefined;
|
|
1991
1991
|
/**
|
|
1992
1992
|
* <p>The minimum value from a single contributor during the time period represented by that data point.</p>
|
|
1993
1993
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
Minimum?: number;
|
|
1996
|
+
Minimum?: number | undefined;
|
|
1997
1997
|
/**
|
|
1998
1998
|
* <p>The maximum value from a single occurence from a single contributor during the time period represented by that data point.</p>
|
|
1999
1999
|
* <p>This statistic is returned only if you included it in the <code>Metrics</code> array in your request.</p>
|
|
2000
2000
|
* @public
|
|
2001
2001
|
*/
|
|
2002
|
-
Maximum?: number;
|
|
2002
|
+
Maximum?: number | undefined;
|
|
2003
2003
|
}
|
|
2004
2004
|
/**
|
|
2005
2005
|
* @public
|
|
@@ -2010,33 +2010,33 @@ export interface GetInsightRuleReportOutput {
|
|
|
2010
2010
|
* If the rule contains more than one key, then each unique combination of values for the keys is counted as a unique contributor.</p>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
KeyLabels?: string[];
|
|
2013
|
+
KeyLabels?: string[] | undefined;
|
|
2014
2014
|
/**
|
|
2015
2015
|
* <p>Specifies whether this rule aggregates contributor data by COUNT or SUM.</p>
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
AggregationStatistic?: string;
|
|
2018
|
+
AggregationStatistic?: string | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>The sum of the values from all individual contributors that match the rule.</p>
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
AggregateValue?: number;
|
|
2023
|
+
AggregateValue?: number | undefined;
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>An approximate count of the unique contributors found by this rule in this time period.</p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
ApproximateUniqueCount?: number;
|
|
2028
|
+
ApproximateUniqueCount?: number | undefined;
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>An array of the unique contributors found by this rule in this time period. If the rule contains multiple keys, each combination of values
|
|
2031
2031
|
* for the keys counts as a unique contributor.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
Contributors?: InsightRuleContributor[];
|
|
2034
|
+
Contributors?: InsightRuleContributor[] | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>A time series of metric data points that matches the time period in the rule request.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
MetricDatapoints?: InsightRuleMetricDatapoint[];
|
|
2039
|
+
MetricDatapoints?: InsightRuleMetricDatapoint[] | undefined;
|
|
2040
2040
|
}
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p>This structure includes the <code>Timezone</code> parameter, which you can use
|
|
@@ -2057,7 +2057,7 @@ export interface LabelOptions {
|
|
|
2057
2057
|
* and 30 minutes ahead of UTC. The default is +0000. </p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
Timezone?: string;
|
|
2060
|
+
Timezone?: string | undefined;
|
|
2061
2061
|
}
|
|
2062
2062
|
/**
|
|
2063
2063
|
* @public
|
|
@@ -2121,7 +2121,7 @@ export interface GetMetricDataInput {
|
|
|
2121
2121
|
* to get the next set of data points.</p>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
NextToken?: string;
|
|
2124
|
+
NextToken?: string | undefined;
|
|
2125
2125
|
/**
|
|
2126
2126
|
* <p>The order in which data points should be returned. <code>TimestampDescending</code> returns the newest data first and paginates
|
|
2127
2127
|
* when the <code>MaxDatapoints</code> limit is reached. <code>TimestampAscending</code> returns the oldest data first and paginates
|
|
@@ -2129,13 +2129,13 @@ export interface GetMetricDataInput {
|
|
|
2129
2129
|
* <p>If you omit this parameter, the default of <code>TimestampDescending</code> is used.</p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
ScanBy?: ScanBy;
|
|
2132
|
+
ScanBy?: ScanBy | undefined;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* <p>The maximum number of data points the request should return before paginating. If you omit
|
|
2135
2135
|
* this, the default of 100,800 is used.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
MaxDatapoints?: number;
|
|
2138
|
+
MaxDatapoints?: number | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>This structure includes the <code>Timezone</code> parameter, which you can use
|
|
2141
2141
|
* to specify your time zone so that the labels of returned data display the
|
|
@@ -2143,7 +2143,7 @@ export interface GetMetricDataInput {
|
|
|
2143
2143
|
* for your time zone. </p>
|
|
2144
2144
|
* @public
|
|
2145
2145
|
*/
|
|
2146
|
-
LabelOptions?: LabelOptions;
|
|
2146
|
+
LabelOptions?: LabelOptions | undefined;
|
|
2147
2147
|
}
|
|
2148
2148
|
/**
|
|
2149
2149
|
* <p>A message returned by the <code>GetMetricData</code>API, including a code and a description.</p>
|
|
@@ -2158,12 +2158,12 @@ export interface MessageData {
|
|
|
2158
2158
|
* <p>The error code or status code associated with the message.</p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
Code?: string;
|
|
2161
|
+
Code?: string | undefined;
|
|
2162
2162
|
/**
|
|
2163
2163
|
* <p>The message text.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
Value?: string;
|
|
2166
|
+
Value?: string | undefined;
|
|
2167
2167
|
}
|
|
2168
2168
|
/**
|
|
2169
2169
|
* @public
|
|
@@ -2190,26 +2190,26 @@ export interface MetricDataResult {
|
|
|
2190
2190
|
* <p>The short name you specified to represent this metric.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
Id?: string;
|
|
2193
|
+
Id?: string | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>The human-readable label associated with the data.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
Label?: string;
|
|
2198
|
+
Label?: string | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>The timestamps for the data points, formatted in Unix timestamp format. The number of
|
|
2201
2201
|
* timestamps always matches the number of values and the value for Timestamps[x] is
|
|
2202
2202
|
* Values[x].</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
Timestamps?: Date[];
|
|
2205
|
+
Timestamps?: Date[] | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>The data points for the metric corresponding to <code>Timestamps</code>. The number of
|
|
2208
2208
|
* values always matches the number of timestamps and the timestamp for Values[x] is
|
|
2209
2209
|
* Timestamps[x].</p>
|
|
2210
2210
|
* @public
|
|
2211
2211
|
*/
|
|
2212
|
-
Values?: number[];
|
|
2212
|
+
Values?: number[] | undefined;
|
|
2213
2213
|
/**
|
|
2214
2214
|
* <p>The status of the returned data. <code>Complete</code> indicates that all data points in the requested time range were returned.
|
|
2215
2215
|
* <code>PartialData</code> means that an incomplete set of data points were returned.
|
|
@@ -2218,12 +2218,12 @@ export interface MetricDataResult {
|
|
|
2218
2218
|
* indicates that an error occurred. Retry your request using <code>NextToken</code>, if present.</p>
|
|
2219
2219
|
* @public
|
|
2220
2220
|
*/
|
|
2221
|
-
StatusCode?: StatusCode;
|
|
2221
|
+
StatusCode?: StatusCode | undefined;
|
|
2222
2222
|
/**
|
|
2223
2223
|
* <p>A list of messages with additional information about the data returned.</p>
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
Messages?: MessageData[];
|
|
2226
|
+
Messages?: MessageData[] | undefined;
|
|
2227
2227
|
}
|
|
2228
2228
|
/**
|
|
2229
2229
|
* @public
|
|
@@ -2233,12 +2233,12 @@ export interface GetMetricDataOutput {
|
|
|
2233
2233
|
* <p>The metrics that are returned, including the metric name, namespace, and dimensions.</p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
MetricDataResults?: MetricDataResult[];
|
|
2236
|
+
MetricDataResults?: MetricDataResult[] | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>A token that marks the next batch of returned results.</p>
|
|
2239
2239
|
* @public
|
|
2240
2240
|
*/
|
|
2241
|
-
NextToken?: string;
|
|
2241
|
+
NextToken?: string | undefined;
|
|
2242
2242
|
/**
|
|
2243
2243
|
* <p>Contains a message about this <code>GetMetricData</code> operation, if the operation results in such a message.
|
|
2244
2244
|
* An example of a message that
|
|
@@ -2248,7 +2248,7 @@ export interface GetMetricDataOutput {
|
|
|
2248
2248
|
* about a specific metric returned by the operation appears in the <code>MetricDataResult</code> object returned for that metric.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
Messages?: MessageData[];
|
|
2251
|
+
Messages?: MessageData[] | undefined;
|
|
2252
2252
|
}
|
|
2253
2253
|
/**
|
|
2254
2254
|
* @public
|
|
@@ -2273,7 +2273,7 @@ export interface GetMetricStatisticsInput {
|
|
|
2273
2273
|
* <i>Amazon CloudWatch User Guide</i>.</p>
|
|
2274
2274
|
* @public
|
|
2275
2275
|
*/
|
|
2276
|
-
Dimensions?: Dimension[];
|
|
2276
|
+
Dimensions?: Dimension[] | undefined;
|
|
2277
2277
|
/**
|
|
2278
2278
|
* <p>The time stamp that determines the first data point to return. Start times are
|
|
2279
2279
|
* evaluated relative to the time that CloudWatch receives the request.</p>
|
|
@@ -2339,14 +2339,14 @@ export interface GetMetricStatisticsInput {
|
|
|
2339
2339
|
* specify either <code>Statistics</code> or <code>ExtendedStatistics</code>, but not both.</p>
|
|
2340
2340
|
* @public
|
|
2341
2341
|
*/
|
|
2342
|
-
Statistics?: Statistic[];
|
|
2342
|
+
Statistics?: Statistic[] | undefined;
|
|
2343
2343
|
/**
|
|
2344
2344
|
* <p>The percentile statistics. Specify values between p0.0 and p100. When calling <code>GetMetricStatistics</code>, you must
|
|
2345
2345
|
* specify either <code>Statistics</code> or <code>ExtendedStatistics</code>, but not both. Percentile statistics are not
|
|
2346
2346
|
* available for metrics when any of the metric values are negative numbers.</p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
ExtendedStatistics?: string[];
|
|
2349
|
+
ExtendedStatistics?: string[] | undefined;
|
|
2350
2350
|
/**
|
|
2351
2351
|
* <p>The unit for a given metric.
|
|
2352
2352
|
* If you omit <code>Unit</code>, all data that was collected with any unit is returned, along with the corresponding units that were specified
|
|
@@ -2354,7 +2354,7 @@ export interface GetMetricStatisticsInput {
|
|
|
2354
2354
|
* If you specify a unit that does not match the data collected, the results of the operation are null. CloudWatch does not perform unit conversions.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
Unit?: StandardUnit;
|
|
2357
|
+
Unit?: StandardUnit | undefined;
|
|
2358
2358
|
}
|
|
2359
2359
|
/**
|
|
2360
2360
|
* @public
|
|
@@ -2364,12 +2364,12 @@ export interface GetMetricStatisticsOutput {
|
|
|
2364
2364
|
* <p>A label for the specified metric.</p>
|
|
2365
2365
|
* @public
|
|
2366
2366
|
*/
|
|
2367
|
-
Label?: string;
|
|
2367
|
+
Label?: string | undefined;
|
|
2368
2368
|
/**
|
|
2369
2369
|
* <p>The data points for the specified metric.</p>
|
|
2370
2370
|
* @public
|
|
2371
2371
|
*/
|
|
2372
|
-
Datapoints?: Datapoint[];
|
|
2372
|
+
Datapoints?: Datapoint[] | undefined;
|
|
2373
2373
|
}
|
|
2374
2374
|
/**
|
|
2375
2375
|
* @public
|
|
@@ -2398,7 +2398,7 @@ export interface MetricStreamFilter {
|
|
|
2398
2398
|
* contain at least one non-whitespace character.</p>
|
|
2399
2399
|
* @public
|
|
2400
2400
|
*/
|
|
2401
|
-
Namespace?: string;
|
|
2401
|
+
Namespace?: string | undefined;
|
|
2402
2402
|
/**
|
|
2403
2403
|
* <p>The names of the metrics to either include or exclude from the metric stream. </p>
|
|
2404
2404
|
* <p>If you omit this parameter, all metrics in the namespace are included or excluded,
|
|
@@ -2407,7 +2407,7 @@ export interface MetricStreamFilter {
|
|
|
2407
2407
|
* Each metric name must contain at least one non-whitespace character.</p>
|
|
2408
2408
|
* @public
|
|
2409
2409
|
*/
|
|
2410
|
-
MetricNames?: string[];
|
|
2410
|
+
MetricNames?: string[] | undefined;
|
|
2411
2411
|
}
|
|
2412
2412
|
/**
|
|
2413
2413
|
* @public
|
|
@@ -2482,53 +2482,53 @@ export interface GetMetricStreamOutput {
|
|
|
2482
2482
|
* <p>The ARN of the metric stream.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
Arn?: string;
|
|
2485
|
+
Arn?: string | undefined;
|
|
2486
2486
|
/**
|
|
2487
2487
|
* <p>The name of the metric stream.</p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
Name?: string;
|
|
2490
|
+
Name?: string | undefined;
|
|
2491
2491
|
/**
|
|
2492
2492
|
* <p>If this array of metric namespaces is present, then these
|
|
2493
2493
|
* namespaces are the only
|
|
2494
2494
|
* metric namespaces that are streamed by this metric stream.</p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
IncludeFilters?: MetricStreamFilter[];
|
|
2497
|
+
IncludeFilters?: MetricStreamFilter[] | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p>If this array of metric namespaces is present, then these namespaces are the only
|
|
2500
2500
|
* metric namespaces that are not streamed by this metric stream. In this case, all other metric namespaces in
|
|
2501
2501
|
* the account are streamed by this metric stream.</p>
|
|
2502
2502
|
* @public
|
|
2503
2503
|
*/
|
|
2504
|
-
ExcludeFilters?: MetricStreamFilter[];
|
|
2504
|
+
ExcludeFilters?: MetricStreamFilter[] | undefined;
|
|
2505
2505
|
/**
|
|
2506
2506
|
* <p>The ARN of the Amazon Kinesis Data Firehose delivery stream that is used by this metric
|
|
2507
2507
|
* stream.</p>
|
|
2508
2508
|
* @public
|
|
2509
2509
|
*/
|
|
2510
|
-
FirehoseArn?: string;
|
|
2510
|
+
FirehoseArn?: string | undefined;
|
|
2511
2511
|
/**
|
|
2512
2512
|
* <p>The ARN of the IAM role that is used by this metric stream.</p>
|
|
2513
2513
|
* @public
|
|
2514
2514
|
*/
|
|
2515
|
-
RoleArn?: string;
|
|
2515
|
+
RoleArn?: string | undefined;
|
|
2516
2516
|
/**
|
|
2517
2517
|
* <p>The state of the metric stream. The possible values are <code>running</code>
|
|
2518
2518
|
* and <code>stopped</code>.</p>
|
|
2519
2519
|
* @public
|
|
2520
2520
|
*/
|
|
2521
|
-
State?: string;
|
|
2521
|
+
State?: string | undefined;
|
|
2522
2522
|
/**
|
|
2523
2523
|
* <p>The date that the metric stream was created.</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
CreationDate?: Date;
|
|
2526
|
+
CreationDate?: Date | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p>The date of the most recent update to the metric stream's configuration.</p>
|
|
2529
2529
|
* @public
|
|
2530
2530
|
*/
|
|
2531
|
-
LastUpdateDate?: Date;
|
|
2531
|
+
LastUpdateDate?: Date | undefined;
|
|
2532
2532
|
/**
|
|
2533
2533
|
* <p>The output format for the stream.
|
|
2534
2534
|
* Valid values are <code>json</code>, <code>opentelemetry1.0</code>, and <code>opentelemetry0.7</code>.
|
|
@@ -2536,7 +2536,7 @@ export interface GetMetricStreamOutput {
|
|
|
2536
2536
|
* see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-metric-streams-formats.html">Metric streams output formats</a>.</p>
|
|
2537
2537
|
* @public
|
|
2538
2538
|
*/
|
|
2539
|
-
OutputFormat?: MetricStreamOutputFormat;
|
|
2539
|
+
OutputFormat?: MetricStreamOutputFormat | undefined;
|
|
2540
2540
|
/**
|
|
2541
2541
|
* <p>Each entry in this array displays information about one or more metrics that include additional statistics
|
|
2542
2542
|
* in the metric stream. For more information about the additional statistics, see
|
|
@@ -2544,13 +2544,13 @@ export interface GetMetricStreamOutput {
|
|
|
2544
2544
|
* CloudWatch statistics definitions</a>. </p>
|
|
2545
2545
|
* @public
|
|
2546
2546
|
*/
|
|
2547
|
-
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[];
|
|
2547
|
+
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[] | undefined;
|
|
2548
2548
|
/**
|
|
2549
2549
|
* <p>If this is <code>true</code> and this metric stream is in a monitoring account, then the stream includes
|
|
2550
2550
|
* metrics from source accounts that the monitoring account is linked to.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
IncludeLinkedAccountsMetrics?: boolean;
|
|
2553
|
+
IncludeLinkedAccountsMetrics?: boolean | undefined;
|
|
2554
2554
|
}
|
|
2555
2555
|
/**
|
|
2556
2556
|
* @public
|
|
@@ -2609,7 +2609,7 @@ export interface GetMetricWidgetImageInput {
|
|
|
2609
2609
|
* and the body of the response is a PNG image. </p>
|
|
2610
2610
|
* @public
|
|
2611
2611
|
*/
|
|
2612
|
-
OutputFormat?: string;
|
|
2612
|
+
OutputFormat?: string | undefined;
|
|
2613
2613
|
}
|
|
2614
2614
|
/**
|
|
2615
2615
|
* @public
|
|
@@ -2619,7 +2619,7 @@ export interface GetMetricWidgetImageOutput {
|
|
|
2619
2619
|
* <p>The image of the graph, in the output format specified. The output is base64-encoded.</p>
|
|
2620
2620
|
* @public
|
|
2621
2621
|
*/
|
|
2622
|
-
MetricWidgetImage?: Uint8Array;
|
|
2622
|
+
MetricWidgetImage?: Uint8Array | undefined;
|
|
2623
2623
|
}
|
|
2624
2624
|
/**
|
|
2625
2625
|
* @public
|
|
@@ -2633,12 +2633,12 @@ export interface ListDashboardsInput {
|
|
|
2633
2633
|
* </p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
DashboardNamePrefix?: string;
|
|
2636
|
+
DashboardNamePrefix?: string | undefined;
|
|
2637
2637
|
/**
|
|
2638
2638
|
* <p>The token returned by a previous call to indicate that there is more data available.</p>
|
|
2639
2639
|
* @public
|
|
2640
2640
|
*/
|
|
2641
|
-
NextToken?: string;
|
|
2641
|
+
NextToken?: string | undefined;
|
|
2642
2642
|
}
|
|
2643
2643
|
/**
|
|
2644
2644
|
* @public
|
|
@@ -2648,12 +2648,12 @@ export interface ListDashboardsOutput {
|
|
|
2648
2648
|
* <p>The list of matching dashboards.</p>
|
|
2649
2649
|
* @public
|
|
2650
2650
|
*/
|
|
2651
|
-
DashboardEntries?: DashboardEntry[];
|
|
2651
|
+
DashboardEntries?: DashboardEntry[] | undefined;
|
|
2652
2652
|
/**
|
|
2653
2653
|
* <p>The token that marks the start of the next batch of returned results.</p>
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
NextToken?: string;
|
|
2656
|
+
NextToken?: string | undefined;
|
|
2657
2657
|
}
|
|
2658
2658
|
/**
|
|
2659
2659
|
* @public
|
|
@@ -2679,7 +2679,7 @@ export interface ListManagedInsightRulesInput {
|
|
|
2679
2679
|
* </p>
|
|
2680
2680
|
* @public
|
|
2681
2681
|
*/
|
|
2682
|
-
NextToken?: string;
|
|
2682
|
+
NextToken?: string | undefined;
|
|
2683
2683
|
/**
|
|
2684
2684
|
* <p>
|
|
2685
2685
|
* The maximum number
|
|
@@ -2692,7 +2692,7 @@ export interface ListManagedInsightRulesInput {
|
|
|
2692
2692
|
* </p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
MaxResults?: number;
|
|
2695
|
+
MaxResults?: number | undefined;
|
|
2696
2696
|
}
|
|
2697
2697
|
/**
|
|
2698
2698
|
* <p>
|
|
@@ -2740,7 +2740,7 @@ export interface ManagedRuleDescription {
|
|
|
2740
2740
|
* </p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
TemplateName?: string;
|
|
2743
|
+
TemplateName?: string | undefined;
|
|
2744
2744
|
/**
|
|
2745
2745
|
* <p>
|
|
2746
2746
|
* If a managed rule is enabled,
|
|
@@ -2749,7 +2749,7 @@ export interface ManagedRuleDescription {
|
|
|
2749
2749
|
* </p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
ResourceARN?: string;
|
|
2752
|
+
ResourceARN?: string | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>
|
|
2755
2755
|
* Describes the state
|
|
@@ -2762,7 +2762,7 @@ export interface ManagedRuleDescription {
|
|
|
2762
2762
|
* </p>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
RuleState?: ManagedRuleState;
|
|
2765
|
+
RuleState?: ManagedRuleState | undefined;
|
|
2766
2766
|
}
|
|
2767
2767
|
/**
|
|
2768
2768
|
* @public
|
|
@@ -2776,7 +2776,7 @@ export interface ListManagedInsightRulesOutput {
|
|
|
2776
2776
|
* </p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
ManagedRules?: ManagedRuleDescription[];
|
|
2779
|
+
ManagedRules?: ManagedRuleDescription[] | undefined;
|
|
2780
2780
|
/**
|
|
2781
2781
|
* <p>
|
|
2782
2782
|
* Include this value
|
|
@@ -2788,7 +2788,7 @@ export interface ListManagedInsightRulesOutput {
|
|
|
2788
2788
|
* </p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
NextToken?: string;
|
|
2791
|
+
NextToken?: string | undefined;
|
|
2792
2792
|
}
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
@@ -2810,25 +2810,25 @@ export interface ListMetricsInput {
|
|
|
2810
2810
|
* will be returned.</p>
|
|
2811
2811
|
* @public
|
|
2812
2812
|
*/
|
|
2813
|
-
Namespace?: string;
|
|
2813
|
+
Namespace?: string | undefined;
|
|
2814
2814
|
/**
|
|
2815
2815
|
* <p>The name of the metric to filter against. Only the metrics with names that match exactly
|
|
2816
2816
|
* will be returned.</p>
|
|
2817
2817
|
* @public
|
|
2818
2818
|
*/
|
|
2819
|
-
MetricName?: string;
|
|
2819
|
+
MetricName?: string | undefined;
|
|
2820
2820
|
/**
|
|
2821
2821
|
* <p>The dimensions to filter against. Only the dimensions that match exactly
|
|
2822
2822
|
* will be returned.</p>
|
|
2823
2823
|
* @public
|
|
2824
2824
|
*/
|
|
2825
|
-
Dimensions?: DimensionFilter[];
|
|
2825
|
+
Dimensions?: DimensionFilter[] | undefined;
|
|
2826
2826
|
/**
|
|
2827
2827
|
* <p>The token returned by a previous call to indicate that there is more data
|
|
2828
2828
|
* available.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
NextToken?: string;
|
|
2831
|
+
NextToken?: string | undefined;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* <p>To filter the results to show only metrics that have had data points published
|
|
2834
2834
|
* in the past three hours, specify this parameter
|
|
@@ -2839,21 +2839,21 @@ export interface ListMetricsInput {
|
|
|
2839
2839
|
* data as much as 40 minutes more than the specified time interval.</p>
|
|
2840
2840
|
* @public
|
|
2841
2841
|
*/
|
|
2842
|
-
RecentlyActive?: RecentlyActive;
|
|
2842
|
+
RecentlyActive?: RecentlyActive | undefined;
|
|
2843
2843
|
/**
|
|
2844
2844
|
* <p>If you are using this operation in a monitoring account,
|
|
2845
2845
|
* specify <code>true</code> to include metrics from source accounts in the returned data.</p>
|
|
2846
2846
|
* <p>The default is <code>false</code>.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
IncludeLinkedAccounts?: boolean;
|
|
2849
|
+
IncludeLinkedAccounts?: boolean | undefined;
|
|
2850
2850
|
/**
|
|
2851
2851
|
* <p>When you use this operation in a monitoring account, use this field to return metrics only from one source account.
|
|
2852
2852
|
* To do so, specify that source account ID in this field, and also
|
|
2853
2853
|
* specify <code>true</code> for <code>IncludeLinkedAccounts</code>.</p>
|
|
2854
2854
|
* @public
|
|
2855
2855
|
*/
|
|
2856
|
-
OwningAccount?: string;
|
|
2856
|
+
OwningAccount?: string | undefined;
|
|
2857
2857
|
}
|
|
2858
2858
|
/**
|
|
2859
2859
|
* @public
|
|
@@ -2863,12 +2863,12 @@ export interface ListMetricsOutput {
|
|
|
2863
2863
|
* <p>The metrics that match your request. </p>
|
|
2864
2864
|
* @public
|
|
2865
2865
|
*/
|
|
2866
|
-
Metrics?: Metric[];
|
|
2866
|
+
Metrics?: Metric[] | undefined;
|
|
2867
2867
|
/**
|
|
2868
2868
|
* <p>The token that marks the start of the next batch of returned results. </p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
NextToken?: string;
|
|
2871
|
+
NextToken?: string | undefined;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>If you are using this operation in a monitoring account, this array contains the account IDs of the source
|
|
2874
2874
|
* accounts where the metrics in the returned data
|
|
@@ -2876,7 +2876,7 @@ export interface ListMetricsOutput {
|
|
|
2876
2876
|
* <p>This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
OwningAccounts?: string[];
|
|
2879
|
+
OwningAccounts?: string[] | undefined;
|
|
2880
2880
|
}
|
|
2881
2881
|
/**
|
|
2882
2882
|
* @public
|
|
@@ -2886,12 +2886,12 @@ export interface ListMetricStreamsInput {
|
|
|
2886
2886
|
* <p>Include this value, if it was returned by the previous call, to get the next set of metric streams.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
NextToken?: string;
|
|
2889
|
+
NextToken?: string | undefined;
|
|
2890
2890
|
/**
|
|
2891
2891
|
* <p>The maximum number of results to return in one operation.</p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
MaxResults?: number;
|
|
2894
|
+
MaxResults?: number | undefined;
|
|
2895
2895
|
}
|
|
2896
2896
|
/**
|
|
2897
2897
|
* <p>This structure contains the configuration information about one metric stream.</p>
|
|
@@ -2902,39 +2902,39 @@ export interface MetricStreamEntry {
|
|
|
2902
2902
|
* <p>The ARN of the metric stream.</p>
|
|
2903
2903
|
* @public
|
|
2904
2904
|
*/
|
|
2905
|
-
Arn?: string;
|
|
2905
|
+
Arn?: string | undefined;
|
|
2906
2906
|
/**
|
|
2907
2907
|
* <p>The date that the metric stream was originally created.</p>
|
|
2908
2908
|
* @public
|
|
2909
2909
|
*/
|
|
2910
|
-
CreationDate?: Date;
|
|
2910
|
+
CreationDate?: Date | undefined;
|
|
2911
2911
|
/**
|
|
2912
2912
|
* <p>The date that the configuration of this metric stream was most recently updated.</p>
|
|
2913
2913
|
* @public
|
|
2914
2914
|
*/
|
|
2915
|
-
LastUpdateDate?: Date;
|
|
2915
|
+
LastUpdateDate?: Date | undefined;
|
|
2916
2916
|
/**
|
|
2917
2917
|
* <p>The name of the metric stream.</p>
|
|
2918
2918
|
* @public
|
|
2919
2919
|
*/
|
|
2920
|
-
Name?: string;
|
|
2920
|
+
Name?: string | undefined;
|
|
2921
2921
|
/**
|
|
2922
2922
|
* <p>The ARN of the Kinesis Firehose devlivery stream that is used for this metric stream.</p>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
FirehoseArn?: string;
|
|
2925
|
+
FirehoseArn?: string | undefined;
|
|
2926
2926
|
/**
|
|
2927
2927
|
* <p>The current state of this stream. Valid values are <code>running</code> and <code>stopped</code>.</p>
|
|
2928
2928
|
* @public
|
|
2929
2929
|
*/
|
|
2930
|
-
State?: string;
|
|
2930
|
+
State?: string | undefined;
|
|
2931
2931
|
/**
|
|
2932
2932
|
* <p>The output format of this metric stream. Valid values are
|
|
2933
2933
|
* <code>json</code>, <code>opentelemetry1.0</code>,
|
|
2934
2934
|
* and <code>opentelemetry0.7</code>.</p>
|
|
2935
2935
|
* @public
|
|
2936
2936
|
*/
|
|
2937
|
-
OutputFormat?: MetricStreamOutputFormat;
|
|
2937
|
+
OutputFormat?: MetricStreamOutputFormat | undefined;
|
|
2938
2938
|
}
|
|
2939
2939
|
/**
|
|
2940
2940
|
* @public
|
|
@@ -2945,12 +2945,12 @@ export interface ListMetricStreamsOutput {
|
|
|
2945
2945
|
* token in a subsequent operation to get the next batch of results.</p>
|
|
2946
2946
|
* @public
|
|
2947
2947
|
*/
|
|
2948
|
-
NextToken?: string;
|
|
2948
|
+
NextToken?: string | undefined;
|
|
2949
2949
|
/**
|
|
2950
2950
|
* <p>The array of metric stream information.</p>
|
|
2951
2951
|
* @public
|
|
2952
2952
|
*/
|
|
2953
|
-
Entries?: MetricStreamEntry[];
|
|
2953
|
+
Entries?: MetricStreamEntry[] | undefined;
|
|
2954
2954
|
}
|
|
2955
2955
|
/**
|
|
2956
2956
|
* @public
|
|
@@ -2998,7 +2998,7 @@ export interface ListTagsForResourceOutput {
|
|
|
2998
2998
|
* <p>The list of tag keys and values associated with the resource you specified.</p>
|
|
2999
2999
|
* @public
|
|
3000
3000
|
*/
|
|
3001
|
-
Tags?: Tag[];
|
|
3001
|
+
Tags?: Tag[] | undefined;
|
|
3002
3002
|
}
|
|
3003
3003
|
/**
|
|
3004
3004
|
* @public
|
|
@@ -3010,28 +3010,28 @@ export interface PutAnomalyDetectorInput {
|
|
|
3010
3010
|
* <p>The namespace of the metric to create the anomaly detection model for.</p>
|
|
3011
3011
|
* @public
|
|
3012
3012
|
*/
|
|
3013
|
-
Namespace?: string;
|
|
3013
|
+
Namespace?: string | undefined;
|
|
3014
3014
|
/**
|
|
3015
3015
|
* @deprecated
|
|
3016
3016
|
*
|
|
3017
3017
|
* <p>The name of the metric to create the anomaly detection model for.</p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
MetricName?: string;
|
|
3020
|
+
MetricName?: string | undefined;
|
|
3021
3021
|
/**
|
|
3022
3022
|
* @deprecated
|
|
3023
3023
|
*
|
|
3024
3024
|
* <p>The metric dimensions to create the anomaly detection model for.</p>
|
|
3025
3025
|
* @public
|
|
3026
3026
|
*/
|
|
3027
|
-
Dimensions?: Dimension[];
|
|
3027
|
+
Dimensions?: Dimension[] | undefined;
|
|
3028
3028
|
/**
|
|
3029
3029
|
* @deprecated
|
|
3030
3030
|
*
|
|
3031
3031
|
* <p>The statistic to use for the metric and the anomaly detection model.</p>
|
|
3032
3032
|
* @public
|
|
3033
3033
|
*/
|
|
3034
|
-
Stat?: string;
|
|
3034
|
+
Stat?: string | undefined;
|
|
3035
3035
|
/**
|
|
3036
3036
|
* <p>The configuration specifies details about how the
|
|
3037
3037
|
* anomaly detection model is to be trained, including
|
|
@@ -3041,14 +3041,14 @@ export interface PutAnomalyDetectorInput {
|
|
|
3041
3041
|
* the metric.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
Configuration?: AnomalyDetectorConfiguration;
|
|
3044
|
+
Configuration?: AnomalyDetectorConfiguration | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>Use this object to include parameters to provide information about your metric to
|
|
3047
3047
|
* CloudWatch to help it build more accurate anomaly detection models. Currently, it includes
|
|
3048
3048
|
* the <code>PeriodicSpikes</code> parameter.</p>
|
|
3049
3049
|
* @public
|
|
3050
3050
|
*/
|
|
3051
|
-
MetricCharacteristics?: MetricCharacteristics;
|
|
3051
|
+
MetricCharacteristics?: MetricCharacteristics | undefined;
|
|
3052
3052
|
/**
|
|
3053
3053
|
* <p>A single metric anomaly detector to be created.</p>
|
|
3054
3054
|
* <p>When using <code>SingleMetricAnomalyDetector</code>,
|
|
@@ -3083,7 +3083,7 @@ export interface PutAnomalyDetectorInput {
|
|
|
3083
3083
|
* as part of the property <code>SingleMetricAnomalyDetector</code>.</p>
|
|
3084
3084
|
* @public
|
|
3085
3085
|
*/
|
|
3086
|
-
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector;
|
|
3086
|
+
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
|
|
3087
3087
|
/**
|
|
3088
3088
|
* <p>The metric math anomaly detector to be created.</p>
|
|
3089
3089
|
* <p>When using <code>MetricMathAnomalyDetector</code>, you cannot include the following parameters in the same operation:</p>
|
|
@@ -3117,7 +3117,7 @@ export interface PutAnomalyDetectorInput {
|
|
|
3117
3117
|
* as part of the property <code>MetricMathAnomalyDetector</code>.</p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
|
|
3120
|
+
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
|
|
3121
3121
|
}
|
|
3122
3122
|
/**
|
|
3123
3123
|
* @public
|
|
@@ -3145,7 +3145,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3145
3145
|
* <code>TRUE</code>.</p>
|
|
3146
3146
|
* @public
|
|
3147
3147
|
*/
|
|
3148
|
-
ActionsEnabled?: boolean;
|
|
3148
|
+
ActionsEnabled?: boolean | undefined;
|
|
3149
3149
|
/**
|
|
3150
3150
|
* <p>The actions to execute when this alarm transitions to the <code>ALARM</code> state from any other state.
|
|
3151
3151
|
* Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
@@ -3186,12 +3186,12 @@ export interface PutCompositeAlarmInput {
|
|
|
3186
3186
|
* </p>
|
|
3187
3187
|
* @public
|
|
3188
3188
|
*/
|
|
3189
|
-
AlarmActions?: string[];
|
|
3189
|
+
AlarmActions?: string[] | undefined;
|
|
3190
3190
|
/**
|
|
3191
3191
|
* <p>The description for the composite alarm.</p>
|
|
3192
3192
|
* @public
|
|
3193
3193
|
*/
|
|
3194
|
-
AlarmDescription?: string;
|
|
3194
|
+
AlarmDescription?: string | undefined;
|
|
3195
3195
|
/**
|
|
3196
3196
|
* <p>The name for the composite alarm. This name must be unique within the Region.</p>
|
|
3197
3197
|
* @public
|
|
@@ -3297,7 +3297,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3297
3297
|
* </ul>
|
|
3298
3298
|
* @public
|
|
3299
3299
|
*/
|
|
3300
|
-
InsufficientDataActions?: string[];
|
|
3300
|
+
InsufficientDataActions?: string[] | undefined;
|
|
3301
3301
|
/**
|
|
3302
3302
|
* <p>The actions to execute when this alarm transitions to an <code>OK</code> state
|
|
3303
3303
|
* from any other state. Each action is specified as an Amazon Resource Name (ARN).</p>
|
|
@@ -3331,7 +3331,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3331
3331
|
* </ul>
|
|
3332
3332
|
* @public
|
|
3333
3333
|
*/
|
|
3334
|
-
OKActions?: string[];
|
|
3334
|
+
OKActions?: string[] | undefined;
|
|
3335
3335
|
/**
|
|
3336
3336
|
* <p>A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm.
|
|
3337
3337
|
* To be able to associate tags with the alarm when you create the alarm, you must
|
|
@@ -3345,7 +3345,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3345
3345
|
* or <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
|
|
3346
3346
|
* @public
|
|
3347
3347
|
*/
|
|
3348
|
-
Tags?: Tag[];
|
|
3348
|
+
Tags?: Tag[] | undefined;
|
|
3349
3349
|
/**
|
|
3350
3350
|
* <p>
|
|
3351
3351
|
* Actions will be suppressed
|
|
@@ -3356,7 +3356,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3356
3356
|
* </p>
|
|
3357
3357
|
* @public
|
|
3358
3358
|
*/
|
|
3359
|
-
ActionsSuppressor?: string;
|
|
3359
|
+
ActionsSuppressor?: string | undefined;
|
|
3360
3360
|
/**
|
|
3361
3361
|
* <p>
|
|
3362
3362
|
* The maximum time
|
|
@@ -3377,7 +3377,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3377
3377
|
* </important>
|
|
3378
3378
|
* @public
|
|
3379
3379
|
*/
|
|
3380
|
-
ActionsSuppressorWaitPeriod?: number;
|
|
3380
|
+
ActionsSuppressorWaitPeriod?: number | undefined;
|
|
3381
3381
|
/**
|
|
3382
3382
|
* <p>
|
|
3383
3383
|
* The maximum time
|
|
@@ -3397,7 +3397,7 @@ export interface PutCompositeAlarmInput {
|
|
|
3397
3397
|
* </important>
|
|
3398
3398
|
* @public
|
|
3399
3399
|
*/
|
|
3400
|
-
ActionsSuppressorExtensionPeriod?: number;
|
|
3400
|
+
ActionsSuppressorExtensionPeriod?: number | undefined;
|
|
3401
3401
|
}
|
|
3402
3402
|
/**
|
|
3403
3403
|
* @public
|
|
@@ -3431,7 +3431,7 @@ export interface PutDashboardOutput {
|
|
|
3431
3431
|
* <p>If this result includes error messages, the input was not valid and the operation failed.</p>
|
|
3432
3432
|
* @public
|
|
3433
3433
|
*/
|
|
3434
|
-
DashboardValidationMessages?: DashboardValidationMessage[];
|
|
3434
|
+
DashboardValidationMessages?: DashboardValidationMessage[] | undefined;
|
|
3435
3435
|
}
|
|
3436
3436
|
/**
|
|
3437
3437
|
* @public
|
|
@@ -3446,7 +3446,7 @@ export interface PutInsightRuleInput {
|
|
|
3446
3446
|
* <p>The state of the rule. Valid values are ENABLED and DISABLED.</p>
|
|
3447
3447
|
* @public
|
|
3448
3448
|
*/
|
|
3449
|
-
RuleState?: string;
|
|
3449
|
+
RuleState?: string | undefined;
|
|
3450
3450
|
/**
|
|
3451
3451
|
* <p>The definition of the rule, as a JSON object. For details on the valid syntax, see
|
|
3452
3452
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContributorInsights-RuleSyntax.html">Contributor Insights
|
|
@@ -3468,7 +3468,7 @@ export interface PutInsightRuleInput {
|
|
|
3468
3468
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_TagResource.html">TagResource</a>.</p>
|
|
3469
3469
|
* @public
|
|
3470
3470
|
*/
|
|
3471
|
-
Tags?: Tag[];
|
|
3471
|
+
Tags?: Tag[] | undefined;
|
|
3472
3472
|
}
|
|
3473
3473
|
/**
|
|
3474
3474
|
* @public
|
|
@@ -3535,7 +3535,7 @@ export interface ManagedRule {
|
|
|
3535
3535
|
* </p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
Tags?: Tag[];
|
|
3538
|
+
Tags?: Tag[] | undefined;
|
|
3539
3539
|
}
|
|
3540
3540
|
/**
|
|
3541
3541
|
* @public
|
|
@@ -3563,7 +3563,7 @@ export interface PutManagedInsightRulesOutput {
|
|
|
3563
3563
|
* </p>
|
|
3564
3564
|
* @public
|
|
3565
3565
|
*/
|
|
3566
|
-
Failures?: PartialFailure[];
|
|
3566
|
+
Failures?: PartialFailure[] | undefined;
|
|
3567
3567
|
}
|
|
3568
3568
|
/**
|
|
3569
3569
|
* @public
|
|
@@ -3580,13 +3580,13 @@ export interface PutMetricAlarmInput {
|
|
|
3580
3580
|
* <p>The description for the alarm.</p>
|
|
3581
3581
|
* @public
|
|
3582
3582
|
*/
|
|
3583
|
-
AlarmDescription?: string;
|
|
3583
|
+
AlarmDescription?: string | undefined;
|
|
3584
3584
|
/**
|
|
3585
3585
|
* <p>Indicates whether actions should be executed during any changes to the alarm state. The default is
|
|
3586
3586
|
* <code>TRUE</code>.</p>
|
|
3587
3587
|
* @public
|
|
3588
3588
|
*/
|
|
3589
|
-
ActionsEnabled?: boolean;
|
|
3589
|
+
ActionsEnabled?: boolean | undefined;
|
|
3590
3590
|
/**
|
|
3591
3591
|
* <p>The actions to execute when this alarm transitions to an <code>OK</code> state
|
|
3592
3592
|
* from any other state. Each action is specified as an Amazon Resource Name (ARN). Valid values:</p>
|
|
@@ -3696,7 +3696,7 @@ export interface PutMetricAlarmInput {
|
|
|
3696
3696
|
* </ul>
|
|
3697
3697
|
* @public
|
|
3698
3698
|
*/
|
|
3699
|
-
OKActions?: string[];
|
|
3699
|
+
OKActions?: string[] | undefined;
|
|
3700
3700
|
/**
|
|
3701
3701
|
* <p>The actions to execute when this alarm transitions to the <code>ALARM</code> state from any other state.
|
|
3702
3702
|
* Each action is specified as an Amazon Resource Name (ARN). Valid values:</p>
|
|
@@ -3806,7 +3806,7 @@ export interface PutMetricAlarmInput {
|
|
|
3806
3806
|
* </ul>
|
|
3807
3807
|
* @public
|
|
3808
3808
|
*/
|
|
3809
|
-
AlarmActions?: string[];
|
|
3809
|
+
AlarmActions?: string[] | undefined;
|
|
3810
3810
|
/**
|
|
3811
3811
|
* <p>The actions to execute when this alarm transitions to the <code>INSUFFICIENT_DATA</code> state from any other state.
|
|
3812
3812
|
* Each action is specified as an Amazon Resource Name (ARN). Valid values:</p>
|
|
@@ -3916,7 +3916,7 @@ export interface PutMetricAlarmInput {
|
|
|
3916
3916
|
* </ul>
|
|
3917
3917
|
* @public
|
|
3918
3918
|
*/
|
|
3919
|
-
InsufficientDataActions?: string[];
|
|
3919
|
+
InsufficientDataActions?: string[] | undefined;
|
|
3920
3920
|
/**
|
|
3921
3921
|
* <p>The name for the metric associated with the alarm. For each <code>PutMetricAlarm</code>
|
|
3922
3922
|
* operation, you must specify either <code>MetricName</code> or a <code>Metrics</code> array.</p>
|
|
@@ -3926,12 +3926,12 @@ export interface PutMetricAlarmInput {
|
|
|
3926
3926
|
* all this information in the <code>Metrics</code> array.</p>
|
|
3927
3927
|
* @public
|
|
3928
3928
|
*/
|
|
3929
|
-
MetricName?: string;
|
|
3929
|
+
MetricName?: string | undefined;
|
|
3930
3930
|
/**
|
|
3931
3931
|
* <p>The namespace for the metric associated specified in <code>MetricName</code>.</p>
|
|
3932
3932
|
* @public
|
|
3933
3933
|
*/
|
|
3934
|
-
Namespace?: string;
|
|
3934
|
+
Namespace?: string | undefined;
|
|
3935
3935
|
/**
|
|
3936
3936
|
* <p>The statistic for the metric specified in <code>MetricName</code>, other than percentile.
|
|
3937
3937
|
* For percentile statistics, use <code>ExtendedStatistic</code>. When you call <code>PutMetricAlarm</code> and specify
|
|
@@ -3939,7 +3939,7 @@ export interface PutMetricAlarmInput {
|
|
|
3939
3939
|
* specify either <code>Statistic</code> or <code>ExtendedStatistic,</code> but not both.</p>
|
|
3940
3940
|
* @public
|
|
3941
3941
|
*/
|
|
3942
|
-
Statistic?: Statistic;
|
|
3942
|
+
Statistic?: Statistic | undefined;
|
|
3943
3943
|
/**
|
|
3944
3944
|
* <p>The extended statistic for the metric specified in <code>MetricName</code>. When you
|
|
3945
3945
|
* call <code>PutMetricAlarm</code> and specify
|
|
@@ -4007,12 +4007,12 @@ export interface PutMetricAlarmInput {
|
|
|
4007
4007
|
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html">CloudWatch statistics definitions</a>.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
ExtendedStatistic?: string;
|
|
4010
|
+
ExtendedStatistic?: string | undefined;
|
|
4011
4011
|
/**
|
|
4012
4012
|
* <p>The dimensions for the metric specified in <code>MetricName</code>.</p>
|
|
4013
4013
|
* @public
|
|
4014
4014
|
*/
|
|
4015
|
-
Dimensions?: Dimension[];
|
|
4015
|
+
Dimensions?: Dimension[] | undefined;
|
|
4016
4016
|
/**
|
|
4017
4017
|
* <p>The length, in seconds, used each time the metric specified in <code>MetricName</code> is
|
|
4018
4018
|
* evaluated. Valid values are 10, 30, and any multiple of 60.</p>
|
|
@@ -4030,7 +4030,7 @@ export interface PutMetricAlarmInput {
|
|
|
4030
4030
|
* be no longer than one day, so <code>Period</code> multiplied by <code>EvaluationPeriods</code> cannot be more than 86,400 seconds.</p>
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
Period?: number;
|
|
4033
|
+
Period?: number | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* <p>The unit of measure for the statistic. For example, the units for the Amazon EC2
|
|
4036
4036
|
* NetworkIn metric are Bytes because NetworkIn tracks the number of bytes that an instance
|
|
@@ -4052,7 +4052,7 @@ export interface PutMetricAlarmInput {
|
|
|
4052
4052
|
* causes the alarm to be stuck in the <code>INSUFFICIENT DATA</code> state.</p>
|
|
4053
4053
|
* @public
|
|
4054
4054
|
*/
|
|
4055
|
-
Unit?: StandardUnit;
|
|
4055
|
+
Unit?: StandardUnit | undefined;
|
|
4056
4056
|
/**
|
|
4057
4057
|
* <p>The number of periods over which data is compared to the specified threshold. If you are
|
|
4058
4058
|
* setting an alarm that requires that a number of consecutive data points be breaching to
|
|
@@ -4070,14 +4070,14 @@ export interface PutMetricAlarmInput {
|
|
|
4070
4070
|
* <i>Amazon CloudWatch User Guide</i>.</p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
DatapointsToAlarm?: number;
|
|
4073
|
+
DatapointsToAlarm?: number | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>The value against which the specified statistic is compared.</p>
|
|
4076
4076
|
* <p>This parameter is required for alarms based on static thresholds, but should
|
|
4077
4077
|
* not be used for alarms based on anomaly detection models.</p>
|
|
4078
4078
|
* @public
|
|
4079
4079
|
*/
|
|
4080
|
-
Threshold?: number;
|
|
4080
|
+
Threshold?: number | undefined;
|
|
4081
4081
|
/**
|
|
4082
4082
|
* <p> The arithmetic operation to use when comparing the specified statistic and
|
|
4083
4083
|
* threshold. The specified statistic value is used as the first operand.</p>
|
|
@@ -4100,7 +4100,7 @@ export interface PutMetricAlarmInput {
|
|
|
4100
4100
|
* </note>
|
|
4101
4101
|
* @public
|
|
4102
4102
|
*/
|
|
4103
|
-
TreatMissingData?: string;
|
|
4103
|
+
TreatMissingData?: string | undefined;
|
|
4104
4104
|
/**
|
|
4105
4105
|
* <p> Used only for alarms based on percentiles. If you specify <code>ignore</code>, the alarm state does not change during periods with too few data points to be
|
|
4106
4106
|
* statistically significant. If you specify <code>evaluate</code> or omit this parameter, the alarm is always evaluated and possibly changes state
|
|
@@ -4109,7 +4109,7 @@ export interface PutMetricAlarmInput {
|
|
|
4109
4109
|
* </p>
|
|
4110
4110
|
* @public
|
|
4111
4111
|
*/
|
|
4112
|
-
EvaluateLowSampleCountPercentile?: string;
|
|
4112
|
+
EvaluateLowSampleCountPercentile?: string | undefined;
|
|
4113
4113
|
/**
|
|
4114
4114
|
* <p>An array of <code>MetricDataQuery</code> structures that enable you to create an alarm based on the result of a
|
|
4115
4115
|
* metric math expression. For each <code>PutMetricAlarm</code>
|
|
@@ -4124,7 +4124,7 @@ export interface PutMetricAlarmInput {
|
|
|
4124
4124
|
* the metrics you are using in your math expression as part of the <code>Metrics</code> array.</p>
|
|
4125
4125
|
* @public
|
|
4126
4126
|
*/
|
|
4127
|
-
Metrics?: MetricDataQuery[];
|
|
4127
|
+
Metrics?: MetricDataQuery[] | undefined;
|
|
4128
4128
|
/**
|
|
4129
4129
|
* <p>A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm.
|
|
4130
4130
|
* To be able to associate tags with the alarm when you create the alarm, you must
|
|
@@ -4138,7 +4138,7 @@ export interface PutMetricAlarmInput {
|
|
|
4138
4138
|
* or <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
|
|
4139
4139
|
* @public
|
|
4140
4140
|
*/
|
|
4141
|
-
Tags?: Tag[];
|
|
4141
|
+
Tags?: Tag[] | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* <p>If this is an alarm based on an anomaly detection model, make this value match
|
|
4144
4144
|
* the ID of
|
|
@@ -4149,7 +4149,7 @@ export interface PutMetricAlarmInput {
|
|
|
4149
4149
|
* <p>If your alarm uses this parameter, it cannot have Auto Scaling actions.</p>
|
|
4150
4150
|
* @public
|
|
4151
4151
|
*/
|
|
4152
|
-
ThresholdMetricId?: string;
|
|
4152
|
+
ThresholdMetricId?: string | undefined;
|
|
4153
4153
|
}
|
|
4154
4154
|
/**
|
|
4155
4155
|
* <p>Represents a set of statistics that describes a specific metric. </p>
|
|
@@ -4192,12 +4192,12 @@ export interface MetricDatum {
|
|
|
4192
4192
|
* <p>The dimensions associated with the metric. </p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
Dimensions?: Dimension[];
|
|
4195
|
+
Dimensions?: Dimension[] | undefined;
|
|
4196
4196
|
/**
|
|
4197
4197
|
* <p>The time the metric data was received, expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.</p>
|
|
4198
4198
|
* @public
|
|
4199
4199
|
*/
|
|
4200
|
-
Timestamp?: Date;
|
|
4200
|
+
Timestamp?: Date | undefined;
|
|
4201
4201
|
/**
|
|
4202
4202
|
* <p>The value for the metric.</p>
|
|
4203
4203
|
* <p>Although the parameter accepts numbers of type Double, CloudWatch rejects values that are either too small or
|
|
@@ -4205,12 +4205,12 @@ export interface MetricDatum {
|
|
|
4205
4205
|
* are not supported.</p>
|
|
4206
4206
|
* @public
|
|
4207
4207
|
*/
|
|
4208
|
-
Value?: number;
|
|
4208
|
+
Value?: number | undefined;
|
|
4209
4209
|
/**
|
|
4210
4210
|
* <p>The statistical values for the metric.</p>
|
|
4211
4211
|
* @public
|
|
4212
4212
|
*/
|
|
4213
|
-
StatisticValues?: StatisticSet;
|
|
4213
|
+
StatisticValues?: StatisticSet | undefined;
|
|
4214
4214
|
/**
|
|
4215
4215
|
* <p>Array of numbers representing the values for the metric during the period. Each unique value is listed just once
|
|
4216
4216
|
* in this array, and the corresponding number in the <code>Counts</code> array specifies the number of times that value occurred during the period.
|
|
@@ -4221,7 +4221,7 @@ export interface MetricDatum {
|
|
|
4221
4221
|
* -Infinity) are not supported.</p>
|
|
4222
4222
|
* @public
|
|
4223
4223
|
*/
|
|
4224
|
-
Values?: number[];
|
|
4224
|
+
Values?: number[] | undefined;
|
|
4225
4225
|
/**
|
|
4226
4226
|
* <p>Array of numbers that is used along with the <code>Values</code> array. Each number in the <code>Count</code> array
|
|
4227
4227
|
* is the number of times the corresponding value in the <code>Values</code> array occurred during the period. </p>
|
|
@@ -4229,14 +4229,14 @@ export interface MetricDatum {
|
|
|
4229
4229
|
* include a <code>Counts</code> array, it must include the same amount of values as the <code>Values</code> array.</p>
|
|
4230
4230
|
* @public
|
|
4231
4231
|
*/
|
|
4232
|
-
Counts?: number[];
|
|
4232
|
+
Counts?: number[] | undefined;
|
|
4233
4233
|
/**
|
|
4234
4234
|
* <p>When you are using a <code>Put</code> operation, this defines what unit you want to use when storing the metric.</p>
|
|
4235
4235
|
* <p>In
|
|
4236
4236
|
* a <code>Get</code> operation, this displays the unit that is used for the metric.</p>
|
|
4237
4237
|
* @public
|
|
4238
4238
|
*/
|
|
4239
|
-
Unit?: StandardUnit;
|
|
4239
|
+
Unit?: StandardUnit | undefined;
|
|
4240
4240
|
/**
|
|
4241
4241
|
* <p>Valid values are 1 and 60. Setting this to 1 specifies this metric as a high-resolution metric, so that CloudWatch stores the metric with
|
|
4242
4242
|
* sub-minute resolution down to one second.
|
|
@@ -4248,7 +4248,7 @@ export interface MetricDatum {
|
|
|
4248
4248
|
* <p>This field is optional, if you do not specify it the default of 60 is used.</p>
|
|
4249
4249
|
* @public
|
|
4250
4250
|
*/
|
|
4251
|
-
StorageResolution?: number;
|
|
4251
|
+
StorageResolution?: number | undefined;
|
|
4252
4252
|
}
|
|
4253
4253
|
/**
|
|
4254
4254
|
* @public
|
|
@@ -4288,7 +4288,7 @@ export interface PutMetricStreamInput {
|
|
|
4288
4288
|
* in the same operation.</p>
|
|
4289
4289
|
* @public
|
|
4290
4290
|
*/
|
|
4291
|
-
IncludeFilters?: MetricStreamFilter[];
|
|
4291
|
+
IncludeFilters?: MetricStreamFilter[] | undefined;
|
|
4292
4292
|
/**
|
|
4293
4293
|
* <p>If you specify this parameter, the stream sends metrics from all
|
|
4294
4294
|
* metric namespaces except for the namespaces that you specify here.</p>
|
|
@@ -4296,7 +4296,7 @@ export interface PutMetricStreamInput {
|
|
|
4296
4296
|
* the same operation.</p>
|
|
4297
4297
|
* @public
|
|
4298
4298
|
*/
|
|
4299
|
-
ExcludeFilters?: MetricStreamFilter[];
|
|
4299
|
+
ExcludeFilters?: MetricStreamFilter[] | undefined;
|
|
4300
4300
|
/**
|
|
4301
4301
|
* <p>The ARN of the Amazon Kinesis Data Firehose delivery stream to use for this metric stream.
|
|
4302
4302
|
* This Amazon Kinesis Data Firehose delivery stream must already exist and must be in the
|
|
@@ -4340,7 +4340,7 @@ export interface PutMetricStreamInput {
|
|
|
4340
4340
|
* or <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_UntagResource.html">UntagResource</a>.</p>
|
|
4341
4341
|
* @public
|
|
4342
4342
|
*/
|
|
4343
|
-
Tags?: Tag[];
|
|
4343
|
+
Tags?: Tag[] | undefined;
|
|
4344
4344
|
/**
|
|
4345
4345
|
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
|
|
4346
4346
|
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. You can use this parameter to have
|
|
@@ -4356,13 +4356,13 @@ export interface PutMetricStreamInput {
|
|
|
4356
4356
|
* p99.9, and so on.</p>
|
|
4357
4357
|
* @public
|
|
4358
4358
|
*/
|
|
4359
|
-
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[];
|
|
4359
|
+
StatisticsConfigurations?: MetricStreamStatisticsConfiguration[] | undefined;
|
|
4360
4360
|
/**
|
|
4361
4361
|
* <p>If you are creating a metric stream in a monitoring account,
|
|
4362
4362
|
* specify <code>true</code> to include metrics from source accounts in the metric stream.</p>
|
|
4363
4363
|
* @public
|
|
4364
4364
|
*/
|
|
4365
|
-
IncludeLinkedAccountsMetrics?: boolean;
|
|
4365
|
+
IncludeLinkedAccountsMetrics?: boolean | undefined;
|
|
4366
4366
|
}
|
|
4367
4367
|
/**
|
|
4368
4368
|
* @public
|
|
@@ -4372,7 +4372,7 @@ export interface PutMetricStreamOutput {
|
|
|
4372
4372
|
* <p>The ARN of the metric stream.</p>
|
|
4373
4373
|
* @public
|
|
4374
4374
|
*/
|
|
4375
|
-
Arn?: string;
|
|
4375
|
+
Arn?: string | undefined;
|
|
4376
4376
|
}
|
|
4377
4377
|
/**
|
|
4378
4378
|
* <p>Data was not syntactically valid JSON.</p>
|
|
@@ -4411,7 +4411,7 @@ export interface SetAlarmStateInput {
|
|
|
4411
4411
|
* alarm actions, the Auto Scaling policy uses the information in this field to take the correct action.</p>
|
|
4412
4412
|
* @public
|
|
4413
4413
|
*/
|
|
4414
|
-
StateReasonData?: string;
|
|
4414
|
+
StateReasonData?: string | undefined;
|
|
4415
4415
|
}
|
|
4416
4416
|
/**
|
|
4417
4417
|
* @public
|