Interface CfnMetricStream.MetricStreamStatisticsMetricProperty

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

@Stability(Stable) public static interface CfnMetricStream.MetricStreamStatisticsMetricProperty extends software.amazon.jsii.JsiiSerializable
A structure that specifies the metric name and namespace for one metric that is going to have additional statistics included in the stream.

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.*;
 MetricStreamStatisticsMetricProperty metricStreamStatisticsMetricProperty = MetricStreamStatisticsMetricProperty.builder()
         .metricName("metricName")
         .namespace("namespace")
         .build();