@Stability(value=Stable)
public static interface CfnMetricStream.MetricStreamStatisticsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMetricStream.MetricStreamStatisticsConfigurationProperty.Builder
|
static class |
CfnMetricStream.MetricStreamStatisticsConfigurationProperty.Jsii$Proxy
An implementation for
CfnMetricStream.MetricStreamStatisticsConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMetricStream.MetricStreamStatisticsConfigurationProperty.Builder |
builder() |
List<String> |
getAdditionalStatistics()
The additional statistics to stream for the metrics listed in `IncludeMetrics` .
|
Object |
getIncludeMetrics()
An array that defines the metrics that are to have additional statistics streamed.
|
@Stability(value=Stable) @NotNull List<String> getAdditionalStatistics()
@Stability(value=Stable) @NotNull Object getIncludeMetrics()
@Stability(value=Stable) static CfnMetricStream.MetricStreamStatisticsConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.