Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsconfiguration.html

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 .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsconfiguration.html#cfn-cloudwatch-metricstream-metricstreamstatisticsconfiguration-additionalstatistics

IncludeMetrics

An array that defines the metrics that are to have additional statistics streamed.

object? IncludeMetrics { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-metricstream-metricstreamstatisticsconfiguration.html#cfn-cloudwatch-metricstream-metricstreamstatisticsconfiguration-includemetrics

Type union: either IResolvable or (either IResolvable or CfnMetricStreamPropsMixin.IMetricStreamStatisticsMetricProperty)[]

Back to top Generated by DocFX