interface ScalingPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ApplicationAutoScaling.ScalingPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapplicationautoscaling#ScalingPolicyReference |
Java | software.amazon.awscdk.interfaces.applicationautoscaling.ScalingPolicyReference |
Python | aws_cdk.interfaces.aws_applicationautoscaling.ScalingPolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_applicationautoscaling » 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_applicationautoscaling as interfaces_aws_applicationautoscaling } from 'aws-cdk-lib/interfaces';
const scalingPolicyReference: interfaces_aws_applicationautoscaling.ScalingPolicyReference = {
scalableDimension: 'scalableDimension',
scalingPolicyArn: 'scalingPolicyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| scalable | string | The ScalableDimension of the ScalingPolicy resource. |
| scaling | string | The Arn of the ScalingPolicy resource. |
scalableDimension
Type:
string
The ScalableDimension of the ScalingPolicy resource.
scalingPolicyArn
Type:
string
The Arn of the ScalingPolicy resource.

.NET
Go
Java
Python
TypeScript