Interface CfnMetricStream.MetricStreamStatisticsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMetricStream.MetricStreamStatisticsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnMetricStream

@Stability(Stable) public static interface CfnMetricStream.MetricStreamStatisticsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
This structure specifies a list of additional statistics to stream, and the metrics to stream those additional statistics for.

All metrics that match the combination of metric name and namespace will be streamed with the additional statistics, no matter their dimensions.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudwatch.*;
 MetricStreamStatisticsConfigurationProperty metricStreamStatisticsConfigurationProperty = MetricStreamStatisticsConfigurationProperty.builder()
         .additionalStatistics(List.of("additionalStatistics"))
         .includeMetrics(List.of(MetricStreamStatisticsMetricProperty.builder()
                 .metricName("metricName")
                 .namespace("namespace")
                 .build()))
         .build();
 

See Also: