interface ScheduledActionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AutoScaling.ScheduledActionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsautoscaling#ScheduledActionReference |
Java | software.amazon.awscdk.interfaces.autoscaling.ScheduledActionReference |
Python | aws_cdk.interfaces.aws_autoscaling.ScheduledActionReference |
TypeScript | aws-cdk-lib » interfaces » aws_autoscaling » ScheduledActionReference |
A reference to a ScheduledAction 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 interfaces_autoscaling } from 'aws-cdk-lib/interfaces';
const scheduledActionReference: interfaces_autoscaling.ScheduledActionReference = {
autoScalingGroupName: 'autoScalingGroupName',
scheduledActionName: 'scheduledActionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string | The AutoScalingGroupName of the ScheduledAction resource. |
| scheduled | string | The ScheduledActionName of the ScheduledAction resource. |
autoScalingGroupName
Type:
string
The AutoScalingGroupName of the ScheduledAction resource.
scheduledActionName
Type:
string
The ScheduledActionName of the ScheduledAction resource.

.NET
Go
Java
Python
TypeScript