Class ScalingPolicyReference
A reference to a ScalingPolicy resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ApplicationAutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ScalingPolicyReference : IScalingPolicyReference
Syntax (vb)
Public Class ScalingPolicyReference Implements IScalingPolicyReference
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.ApplicationAutoScaling;
var scalingPolicyReference = new ScalingPolicyReference {
ScalableDimension = "scalableDimension",
ScalingPolicyArn = "scalingPolicyArn"
};
Synopsis
Constructors
ScalingPolicyReference() | A reference to a ScalingPolicy resource. |
Properties
ScalableDimension | The ScalableDimension of the ScalingPolicy resource. |
ScalingPolicyArn | The Arn of the ScalingPolicy resource. |
Constructors
ScalingPolicyReference()
A reference to a ScalingPolicy resource.
public ScalingPolicyReference()
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.ApplicationAutoScaling;
var scalingPolicyReference = new ScalingPolicyReference {
ScalableDimension = "scalableDimension",
ScalingPolicyArn = "scalingPolicyArn"
};
Properties
ScalableDimension
The ScalableDimension of the ScalingPolicy resource.
public string ScalableDimension { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ScalingPolicyArn
The Arn of the ScalingPolicy resource.
public string ScalingPolicyArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated