deleteScheduledAction method
Deletes the specified scheduled action.
May throw ResourceContentionFault.
Parameter autoScalingGroupName :
The name of the Auto Scaling group.
Parameter scheduledActionName :
The name of the action to delete.
Implementation
Future<void> deleteScheduledAction({
required String autoScalingGroupName,
required String scheduledActionName,
}) async {
final $request = <String, String>{
'AutoScalingGroupName': autoScalingGroupName,
'ScheduledActionName': scheduledActionName,
};
await _protocol.send(
$request,
action: 'DeleteScheduledAction',
version: '2011-01-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}