You can use event rules to filter events and route events to Short Message Service (SMS). This topic describes the procedure for routing custom events to SMS.

Prerequisites

Step 1: Create a custom event source

  1. Log on to the EventBridge console. In the left-side navigation pane, click Event Buses.
  2. In the top navigation bar, select a region. On the Event Buses page, click the name of the custom event bus that you want to manage.
  3. In the left-side navigation pane, click Event Sources, and then click Add Event Source.
  4. In the Add Custom Event Source panel, set the Name and Description parameters, select Custom Application from the Event Provider drop-down list, and then click OK.

Step 2: Create an event rule

Important The event targets that you want to configure for an event rule must reside in the same region as the event rule.
  1. Log on to the EventBridge console. In the left-side navigation pane, click Event Buses.
  2. In the top navigation bar, select a region. On the Event Buses page, click the name of the event bus that you want to manage.
  3. In the left-side navigation pane, click Event Rules. On the page that appears, click Create Rule.
  4. Perform the following operations in the Create Rule panel:
    1. In the Configure Basic Info step, enter a rule name in the Name field and a rule description in the Description field, and click Next Step.
    2. In the Configure Event Pattern step, set the Event Source Type parameter to Custom Event Source, select the custom event source that is created in Step 1 from the Event Source drop-down list, specify an event pattern in the Pattern Content code editor, and then click Next Step.

      For more information, see Event patterns.

    3. In the Configure Targets step, configure an event target and click Create.
      Note You can configure up to five event targets for an event rule.
      • Service Type: Select Short Message Service.
      • Phone Number: Select a method to obtain the mobile number.
        • Partial Event: Obtain the mobile number by defining a field in the data parameter, Example: .data.mobile.
        • Fixed Value: Enter the mobile number of the recipient.
        Note Separate multiple mobile numbers with commas (,).
      • Signature: Enter the signature that is approved in the SMS console.
      • Template Code: Enter the template code that is approved in the SMS console.
      • Template Parameters: Events are routed in the format that is defined in a custom template to event targets. You can customize parameters in the template.

        The following part shows sample parameters and a sample template:

        Sample parameters:

        {
          "mobile":"$.data.mobile",
          "subject":"$.subject"
        }

        Sample template:

        {
          "code":"${subject}"
        }

        For more information, see Event transformation

Step 3: Publish an event

  1. Log on to the EventBridge console.
  2. In the left-side navigation pane, click Event Buses.
  3. In the top navigation bar, select a region.
  4. On the Event Buses page, find the event bus to which you want to publish an event and click Publish Event in the Operations column.
    Note You can publish events only to custom event buses in the EventBridge console.
  5. In the Publish Event to Custom Event Bus panel, select a custom event source from the Custom Event Source drop-down list, enter the event content in the Event Body code editor, and then click OK.
    For more information about the event parameters, see Overview.