Show / Hide Table of Contents

Class CfnScalingPlan.MetricDimensionProperty

MetricDimension is a subproperty of CustomizedScalingMetricSpecification that specifies a dimension for a customized metric to use with AWS Auto Scaling ( Auto Scaling Plans ). Dimensions are arbitrary name/value pairs that can be associated with a CloudWatch metric. Duplicate dimensions are not allowed.

Inheritance
System.Object
CfnScalingPlan.MetricDimensionProperty
Implements
CfnScalingPlan.IMetricDimensionProperty
Namespace: Amazon.CDK.AWS.AutoScalingPlans
Assembly: Amazon.CDK.AWS.AutoScalingPlans.dll
Syntax (csharp)
public class MetricDimensionProperty : Object, CfnScalingPlan.IMetricDimensionProperty
Syntax (vb)
Public Class MetricDimensionProperty
    Inherits Object
    Implements CfnScalingPlan.IMetricDimensionProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-metricdimension.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.AutoScalingPlans;

var metricDimensionProperty = new MetricDimensionProperty {
    Name = "name",
    Value = "value"
};

Synopsis

Constructors

MetricDimensionProperty()

Properties

Name

The name of the dimension.

Value

The value of the dimension.

Constructors

MetricDimensionProperty()

public MetricDimensionProperty()

Properties

Name

The name of the dimension.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-metricdimension.html#cfn-autoscalingplans-scalingplan-metricdimension-name

Value

The value of the dimension.

public string Value { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscalingplans-scalingplan-metricdimension.html#cfn-autoscalingplans-scalingplan-metricdimension-value

Implements

CfnScalingPlan.IMetricDimensionProperty
Back to top Generated by DocFX