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 a scaling plan. Dimensions are arbitrary name/value pairs that can be associated with a CloudWatch metric. Duplicate dimensions are not allowed.

Inheritance
object
CfnScalingPlan.MetricDimensionProperty
Implements
CfnScalingPlan.IMetricDimensionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AutoScalingPlans
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnScalingPlan.MetricDimensionProperty : CfnScalingPlan.IMetricDimensionProperty
Syntax (vb)
Public Class CfnScalingPlan.MetricDimensionProperty Implements CfnScalingPlan.IMetricDimensionProperty
Remarks

See: 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()

MetricDimension is a subproperty of CustomizedScalingMetricSpecification that specifies a dimension for a customized metric to use with a scaling plan. Dimensions are arbitrary name/value pairs that can be associated with a CloudWatch metric. Duplicate dimensions are not allowed.

Properties

Name

The name of the dimension.

Value

The value of the dimension.

Constructors

MetricDimensionProperty()

MetricDimension is a subproperty of CustomizedScalingMetricSpecification that specifies a dimension for a customized metric to use with a scaling plan. Dimensions are arbitrary name/value pairs that can be associated with a CloudWatch metric. Duplicate dimensions are not allowed.

public MetricDimensionProperty()
Remarks

See: 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"
             };

Properties

Name

The name of the dimension.

public string Name { get; set; }
Property Value

string

Remarks

See: 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

string

Remarks

See: 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