Interface CfnMetricStreamPropsMixin.IMetricStreamStatisticsConfigurationProperty
This structure specifies a list of additional statistics to stream, and the metrics to stream those additional statistics for.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnMetricStreamPropsMixin.IMetricStreamStatisticsConfigurationProperty
Syntax (vb)
Public Interface CfnMetricStreamPropsMixin.IMetricStreamStatisticsConfigurationProperty
Remarks
All metrics that match the combination of metric name and namespace will be streamed with the additional statistics, no matter their dimensions.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch;
var metricStreamStatisticsConfigurationProperty = new MetricStreamStatisticsConfigurationProperty {
AdditionalStatistics = new [] { "additionalStatistics" },
IncludeMetrics = new [] { new MetricStreamStatisticsMetricProperty {
MetricName = "metricName",
Namespace = "namespace"
} }
};
Synopsis
Properties
| AdditionalStatistics | The additional statistics to stream for the metrics listed in |
| IncludeMetrics | An array that defines the metrics that are to have additional statistics streamed. |
Properties
AdditionalStatistics
The additional statistics to stream for the metrics listed in IncludeMetrics .
string[]? AdditionalStatistics { get; }
Property Value
string[]
Remarks
IncludeMetrics
An array that defines the metrics that are to have additional statistics streamed.
object? IncludeMetrics { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnMetricStreamPropsMixin.IMetricStreamStatisticsMetricProperty)[]