@@ -2611,12 +2611,12 @@ export enum MetricStreamOutputFormat {
2611
2611
}
2612
2612
2613
2613
/**
2614
- * <p>This object contains the information for one metric that is to streamed with
2615
- * extended statistics.</p>
2614
+ * <p>This object contains the information for one metric that is to be streamed with
2615
+ * additional statistics.</p>
2616
2616
*/
2617
2617
export interface MetricStreamStatisticsMetric {
2618
2618
/**
2619
- * <p>The metric namespace for the metric.</p>
2619
+ * <p>The namespace of the metric.</p>
2620
2620
*/
2621
2621
Namespace : string | undefined ;
2622
2622
@@ -2638,29 +2638,29 @@ export namespace MetricStreamStatisticsMetric {
2638
2638
/**
2639
2639
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
2640
2640
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. This structure contains information for
2641
- * one metric that includes extended statistics in the stream. For more information about extended statistics,
2641
+ * one metric that includes additional statistics in the stream. For more information about statistics,
2642
2642
* see CloudWatch, listed in
2643
2643
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
2644
2644
* CloudWatch statistics definitions</a>.</p>
2645
2645
*/
2646
2646
export interface MetricStreamStatisticsConfiguration {
2647
2647
/**
2648
- * <p>An array of metric name and namespace pairs that stream the extended statistics listed
2648
+ * <p>An array of metric name and namespace pairs that stream the additional statistics listed
2649
2649
* in the value of the <code>AdditionalStatistics</code> parameter. There can be as many as
2650
2650
* 100 pairs in the array.</p>
2651
2651
* <p>All metrics that match the combination of metric name and namespace will be streamed
2652
- * with the extended statistics, no matter their dimensions.</p>
2652
+ * with the additional statistics, no matter their dimensions.</p>
2653
2653
*/
2654
2654
IncludeMetrics : MetricStreamStatisticsMetric [ ] | undefined ;
2655
2655
2656
2656
/**
2657
- * <p>The list of extended statistics that are to be streamed for the metrics listed
2657
+ * <p>The list of additional statistics that are to be streamed for the metrics listed
2658
2658
* in the <code>IncludeMetrics</code> array in this structure. This list can include as many as 20 statistics.</p>
2659
2659
* <p>If the <code>OutputFormat</code> for the stream is <code>opentelemetry0.7</code>, the only
2660
2660
* valid values are <code>p<i>??</i>
2661
2661
* </code> percentile statistics such as <code>p90</code>, <code>p99</code> and so on.</p>
2662
2662
* <p>If the <code>OutputFormat</code> for the stream is <code>json</code>,
2663
- * the valid values are include the abbreviations for all of the extended statistics listed in
2663
+ * the valid values include the abbreviations for all of the statistics listed in
2664
2664
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
2665
2665
* CloudWatch statistics definitions</a>. For example, this includes
2666
2666
* <code>tm98, </code>
@@ -2740,8 +2740,8 @@ export interface GetMetricStreamOutput {
2740
2740
OutputFormat ?: MetricStreamOutputFormat | string ;
2741
2741
2742
2742
/**
2743
- * <p>Each entry in this array displays information about one or more metrics that include extended statistics
2744
- * in the metric stream. For more information about extended statistics, see
2743
+ * <p>Each entry in this array displays information about one or more metrics that include additional statistics
2744
+ * in the metric stream. For more information about the additional statistics, see
2745
2745
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
2746
2746
* CloudWatch statistics definitions</a>. </p>
2747
2747
*/
@@ -3712,6 +3712,11 @@ export interface PutMetricAlarmInput {
3712
3712
* Alarms Treats Missing Data</a>.</p>
3713
3713
* <p>Valid Values: <code>breaching | notBreaching | ignore | missing</code>
3714
3714
* </p>
3715
+ * <note>
3716
+ * <p>Alarms that evaluate metrics in the <code>AWS/DynamoDB</code> namespace always <code>ignore</code>
3717
+ * missing data even if you choose a different option for <code>TreatMissingData</code>. When an
3718
+ * <code>AWS/DynamoDB</code> metric has missing data, alarms that evaluate that metric remain in their current state.</p>
3719
+ * </note>
3715
3720
*/
3716
3721
TreatMissingData ?: string ;
3717
3722
@@ -3982,15 +3987,15 @@ export interface PutMetricStreamInput {
3982
3987
/**
3983
3988
* <p>By default, a metric stream always sends the <code>MAX</code>, <code>MIN</code>, <code>SUM</code>,
3984
3989
* and <code>SAMPLECOUNT</code> statistics for each metric that is streamed. You can use this parameter to have
3985
- * the metric stream also send extended statistics in the stream. This
3990
+ * the metric stream also send additional statistics in the stream. This
3986
3991
* array can have up to 100 members.</p>
3987
- * <p>For each entry in this array, you specify one or more metrics and the list of extended statistics to stream
3988
- * for those metrics. The extended statistics that you can stream depend on the stream's <code>OutputFormat</code>.
3989
- * If the <code>OutputFormat</code> is <code>json</code>, you can stream any extended statistic that is supported
3992
+ * <p>For each entry in this array, you specify one or more metrics and the list of additional statistics to stream
3993
+ * for those metrics. The additional statistics that you can stream depend on the stream's <code>OutputFormat</code>.
3994
+ * If the <code>OutputFormat</code> is <code>json</code>, you can stream any additional statistic that is supported
3990
3995
* by CloudWatch, listed in
3991
3996
* <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html.html">
3992
3997
* CloudWatch statistics definitions</a>. If the <code>OutputFormat</code> is
3993
- * <code>opentelemetry0.7</code>, you can stream percentile statistics (p<i>??</i>) .</p>
3998
+ * <code>opentelemetry0.7</code>, you can stream percentile statistics such as p95, p99.9 and so on .</p>
3994
3999
*/
3995
4000
StatisticsConfigurations ?: MetricStreamStatisticsConfiguration [ ] ;
3996
4001
}
0 commit comments