Alexa cloud entity filtering wildcard

I love the ability to include and exclude entities being shared with Alexa but could it be possible to include filtering with wildcards?

I think it would be cool to have this:

cloud:
  alexa:
    filter:
      exclude_entities:
        - lock.boltchecked_front_door
        - lock.boltchecked_retry_front_door
        - lock.boltchecked_bbq_backdoor
        - lock.boltchecked_retry_bbq_backdoor
        - light.deck_fan
        - light.richies_office
        - script.keymaster_bbq_backdoor_manual_notify
        - script.keymaster_bbq_backdoor_reset_codeslot
        - script.keymaster_bbq_backdoor_reset_lock
        - script.keymaster_bbq_backdoor_start_timer
        - script.keymaster_front_door_manual_notify
        - script.keymaster_front_door_reset_codeslot
        - script.keymaster_front_door_reset_lock
        - script.keymaster_front_door_start_timer
        - timer.keymaster_bbq_backdoor_autolock
        - timer.keymaster_front_door_autolock
      exclude_domains:
        - input_boolean
        - input_number
        - input_datetime
        - binary_sensor
        - climate
        - camera
        - media_player

Collapsible to:

cloud:
  alexa:
    filter:
      exclude_entities:
        - lock.boltchecked_*
        - light.deck_fan
        - light.*_office
        - script.keymaster_*
        - timer.keymaster_*
      exclude_domains:
        - input_boolean
        - input_number
        - input_datetime
        - binary_sensor
        - climate
        - camera
        - media_player