Logical operator in Conditional Formatting - Highlighting Cells

Hi,
looking at
https://dash.plot.ly/datatable/style
I read that we can highlight some cells basing on some logic, such as for instance

style_data_conditional=[
        {
            'if': {
                'column_id': 'Region',
                'filter': 'Region eq "Montreal"'
            },
            'backgroundColor': '#3D9970',
            'color': 'white',
        }]

Is it possible to use some logical operator, such as something like
‘filter’: ‘Region eq “Montreal”’ or ‘Region eq “Miami”’
?