interface ScalingPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AutoScalingPlans.ScalingPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsautoscalingplans#ScalingPlanReference |
Java | software.amazon.awscdk.interfaces.autoscalingplans.ScalingPlanReference |
Python | aws_cdk.interfaces.aws_autoscalingplans.ScalingPlanReference |
TypeScript | aws-cdk-lib » interfaces » aws_autoscalingplans » ScalingPlanReference |
A reference to a ScalingPlan resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscalingplans as interfaces_aws_autoscalingplans } from 'aws-cdk-lib/interfaces';
const scalingPlanReference: interfaces_aws_autoscalingplans.ScalingPlanReference = {
scalingPlanId: 'scalingPlanId',
};
Properties
| Name | Type | Description |
|---|---|---|
| scaling | string | The Id of the ScalingPlan resource. |
scalingPlanId
Type:
string
The Id of the ScalingPlan resource.

.NET
Go
Java
Python
TypeScript