Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JourneySMSMessage

import type { JourneySMSMessage } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Specifies the sender ID and message type for an SMS message that's sent to participants in a journey.

interface JourneySMSMessage {
EntityId?: string | null;
MessageType?: MessageType | null;
OriginationNumber?: string | null;
SenderId?: string | null;
TemplateId?: string | null;
}

§Properties

§
EntityId?: string | null
[src]

The entity ID or Principal Entity (PE) id received from the regulatory body for sending SMS in your country.

§
MessageType?: MessageType | null
[src]

The SMS message type. Valid values are TRANSACTIONAL (for messages that are critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for messsages that aren't critical or time-sensitive, such as marketing messages).

§
OriginationNumber?: string | null
[src]

The long code to send the SMS message from. This value should be one of the dedicated long codes that's assigned to your AWS account. Although it isn't required, we recommend that you specify the long code using an E.164 format to ensure prompt and accurate delivery of the message. For example, +12065550100.

§
SenderId?: string | null
[src]

The sender ID to display as the sender of the message on a recipient's device. Support for sender IDs varies by country or region. For more information, see Supported Countries and Regions in the Amazon Pinpoint User Guide.

§
TemplateId?: string | null
[src]

The template ID received from the regulatory body for sending SMS in your country.