Is there a way to change the border colour of selected polygons in Choropleth maps?

Iโ€™m currently using plotly.go.Choropleth to create choropleth maps. Iโ€™ve currently implemented some basic selection functionality using the selectedpoints property.

However to style how the selected region with the selected property it seems as though you can only change the opacity as described here https://plotly.github.io/plotly.py-docs/generated/plotly.graph_objects.choropleth.html#plotly.graph_objects.choropleth.Selected.

Is there anyway to change the border colour instead of the opacity? It seems a bit strange that you canโ€™t provide a plotly.graph_objects.choropleth.Marker instance to selected and instead have to provide a plotly.graph_objects.choropleth.selected.Marker instance which only has an opacity property.