Help: How to setup iOS actions with Home Assistant?

Hi,

I am seeming to have a disconnect on how to get my actions to work with Home Assistant App on iOS. The below is the code from the following .yaml files:

automations.yaml:

- id: 1234ShedPower
  alias: 'Apple Watch: Turn on Shed Power'
  trigger:
  - platform: event
    event_type: ios.action_fired
    event_data:
      actionName: Turn on Shed Power
    id: 1234ShedPower
  condition:
  - condition: template
    value_template: trigger.event.data["actionName"] == "Turn on Shed Power"
  action:
  - service: switch.turn_on
    entity_id: switch.shed_power

configuration.yaml

ios:
  actions:
  - name: 1234ShedPower
    background_color: "#7F7F7F"
    label:
      text: "Shed Power"
      color: "#FFFFFF"
    icon:
      icon: mdi:switch
      color: "#1E90FF"

So the question is how do I get the button in Home Assistant actions to just turn on my Shed Power Outlet, as there seems to be something I am missing in my configuration and I can’t seem to find that secret code to do it lol