Interface CfnAlarm.IMetricProperty
The Metric property type represents a specific metric.
Namespace: Amazon.CDK.AWS.CloudWatch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAlarm.IMetricProperty
Syntax (vb)
Public Interface CfnAlarm.IMetricProperty
Remarks
Metric is a property of the MetricStat property type.
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.AWS.CloudWatch;
var metricProperty = new MetricProperty {
Dimensions = new [] { new DimensionProperty {
Name = "name",
Value = "value"
} },
MetricName = "metricName",
Namespace = "namespace"
};
Synopsis
Properties
| Dimensions | The metric dimensions that you want to be used for the metric that the alarm will watch. |
| MetricName | The name of the metric that you want the alarm to watch. |
| Namespace | The namespace of the metric that the alarm will watch. |
Properties
Dimensions
The metric dimensions that you want to be used for the metric that the alarm will watch.
object? Dimensions { get; }
Property Value
Remarks
MetricName
The name of the metric that you want the alarm to watch.
string? MetricName { get; }
Property Value
Remarks
Namespace
The namespace of the metric that the alarm will watch.
string? Namespace { get; }