List_Ingestions API Question

Hello, I’ve written a function to list_ingestions for my datasets, but I only want to find where the ingestion status is either Queued or Running. I don’t see the ability to pass a status parameter to the API, am I missing something obvious? Or will I need to do my filtering after I’ve ended up listing all of my ingestions? Thanks in advance!

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/client/list_ingestions.html

You would have the describe the ingestion to get the status : describe_ingestion - Boto3 1.29.6 documentation

‘IngestionStatus’: ‘INITIALIZED’|‘QUEUED’|‘RUNNING’|‘FAILED’|‘COMPLETED’|‘CANCELLED’,

Kind regards,
Koushik

I see where you’re going with that, but what I’d really like to do is list all ingestions that are currently running, I don’t want to have to iterate through data-set-id’s if possible