Interface CfnCampaignPropsMixin.CampaignSmsMessageProperty

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

@Stability(Stable) public static interface CfnCampaignPropsMixin.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.mixins.preview.services.pinpoint.mixins.*;
 CampaignSmsMessageProperty campaignSmsMessageProperty = CampaignSmsMessageProperty.builder()
         .body("body")
         .entityId("entityId")
         .messageType("messageType")
         .originationNumber("originationNumber")
         .senderId("senderId")
         .templateId("templateId")
         .build();
 

See Also: