interface ScalingPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AutoScaling.ScalingPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#ScalingPolicyReference |
Java | software.amazon.awscdk.services.autoscaling.ScalingPolicyReference |
Python | aws_cdk.aws_autoscaling.ScalingPolicyReference |
TypeScript | aws-cdk-lib » aws_autoscaling » ScalingPolicyReference |
A reference to a ScalingPolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const scalingPolicyReference: autoscaling.ScalingPolicyReference = {
scalingPolicyArn: 'scalingPolicyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| scaling | string | The Arn of the ScalingPolicy resource. |
scalingPolicyArn
Type:
string
The Arn of the ScalingPolicy resource.

.NET
Go
Java
Python
TypeScript