deleteLaunchAction method
Deletes a resource launch action.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw UninitializedAccountException.
May throw ValidationException.
Implementation
Future<void> deleteLaunchAction({
required String actionId,
required String resourceId,
}) async {
final $payload = <String, dynamic>{
'actionId': actionId,
'resourceId': resourceId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DeleteLaunchAction',
exceptionFnMap: _exceptionFns,
);
}