Interface CfnCampaign.CampaignSmsMessageProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.CampaignSmsMessageProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.CampaignSmsMessageProperty extends software.amazon.jsii.JsiiSerializable
Specifies the content and settings for an SMS message that's sent to recipients of a campaign.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pinpoint.*;
 CampaignSmsMessageProperty campaignSmsMessageProperty = CampaignSmsMessageProperty.builder()
         .body("body")
         .entityId("entityId")
         .messageType("messageType")
         .originationNumber("originationNumber")
         .senderId("senderId")
         .templateId("templateId")
         .build();
 

See Also: