Can I create alias for complex UrlManager's rule to generate urls by it?

Can I create alias for complex UrlManager’s rule ?

For example, if I have rule like

'<action:(one|two|three|four|five)>/<citySlug:([a-z-]+)>-<stateAbbr:([a-z]{2})>/<alwaysEmpty:()>' => 'mycontroller/<action>',

can I give it a name or alias and generate urls like

Url::toRoute(['@myComplexRoute', 'action' => '', 'citySlug' => '', 'stateAbbr' => '']);

?