describeScheduledActions
abstract suspend fun describeScheduledActions(input: DescribeScheduledActionsRequest): DescribeScheduledActionsResponse
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 and Managing scheduled scaling in the Application Auto Scaling User Guide.
Samples
fun main() {
//sampleStart
// This example describes the scheduled actions for the dynamodb service namespace.
val resp = applicationAutoScalingClient.describeScheduledActions {
serviceNamespace = ServiceNamespace.fromValue("dynamodb")
}
//sampleEnd
}