describeScheduledActions
inline suspend fun AutoScalingClient.describeScheduledActions(crossinline block: DescribeScheduledActionsRequest.Builder.() -> Unit): DescribeScheduledActionsResponse
Gets information about the scheduled actions that haven't run or that have not reached their end time.
To describe the scaling activities for scheduled actions that have already run, call the DescribeScalingActivities API.
Samples
fun main() {
//sampleStart
// This example describes the scheduled actions for the specified Auto Scaling group.
val resp = autoScalingClient.describeScheduledActions {
autoScalingGroupName = "my-auto-scaling-group"
}
//sampleEnd
}