Interface CfnScalingPolicy.IMetricDimensionProperty
MetricDimension specifies a name/value pair that is part of the identity of a CloudWatch metric for the Dimensions property of the AWS::AutoScaling::ScalingPolicy CustomizedMetricSpecification property type. Duplicate dimensions are not allowed.
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IMetricDimensionProperty
Syntax (vb)
Public Interface IMetricDimensionProperty
Remarks
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.AutoScaling;
var metricDimensionProperty = new MetricDimensionProperty {
Name = "name",
Value = "value"
};
Synopsis
Properties
| Name | The name of the dimension. |
| Value | The value of the dimension. |
Properties
Name
The name of the dimension.
string Name { get; }
Property Value
System.String
Remarks
Value
The value of the dimension.
string Value { get; }
Property Value
System.String