describeScheduledActions

Describes the Application Auto Scaling scheduled actions for the specified service namespace.

You can filter the results using the ResourceId, ScalableDimension, and ScheduledActionNames parameters.

For more information, see Scheduled scaling in the Application Auto Scaling User Guide.

Samples

import aws.sdk.kotlin.services.applicationautoscaling.model.ServiceNamespace

fun main() { 
   //sampleStart 
   // This example describes the scheduled actions for the dynamodb service namespace.
val resp = applicationAutoScalingClient.describeScheduledActions {
    serviceNamespace = ServiceNamespace.fromValue("dynamodb")
} 
   //sampleEnd
}