Show / Hide Table of Contents

Class ScalingPolicyReference

A reference to a ScalingPolicy resource.

Inheritance
object
ScalingPolicyReference
Implements
IScalingPolicyReference
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.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

string

Remarks

ExampleMetadata: fixture=_generated

ScalingPolicyArn

The Arn of the ScalingPolicy resource.

public string ScalingPolicyArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IScalingPolicyReference
Back to top Generated by DocFX