Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metric.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.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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metric.html#cfn-cloudwatch-alarm-metric-dimensions

Type union: either IResolvable or (either IResolvable or CfnAlarm.IDimensionProperty)[]

MetricName

The name of the metric that you want the alarm to watch.

string? MetricName { get; }
Property Value

string

Remarks

This is a required field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metric.html#cfn-cloudwatch-alarm-metric-metricname

Namespace

The namespace of the metric that the alarm will watch.

string? Namespace { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metric.html#cfn-cloudwatch-alarm-metric-namespace

Back to top Generated by DocFX