Interface CfnMessageTemplatePropsMixin.SmsMessageTemplateContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMessageTemplatePropsMixin.SmsMessageTemplateContentProperty.Jsii$Proxy
- Enclosing class:
CfnMessageTemplatePropsMixin
@Stability(Stable)
public static interface CfnMessageTemplatePropsMixin.SmsMessageTemplateContentProperty
extends software.amazon.jsii.JsiiSerializable
The content of the message template that applies to the SMS channel subtype.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.wisdom.*;
SmsMessageTemplateContentProperty smsMessageTemplateContentProperty = SmsMessageTemplateContentProperty.builder()
.body(SmsMessageTemplateContentBodyProperty.builder()
.plainText(MessageTemplateBodyContentProviderProperty.builder()
.content("content")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMessageTemplatePropsMixin.SmsMessageTemplateContentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBody
The body to use in SMS messages.Returns union: either
IResolvableorCfnMessageTemplatePropsMixin.SmsMessageTemplateContentBodyProperty- See Also:
-
builder
@Stability(Stable) static CfnMessageTemplatePropsMixin.SmsMessageTemplateContentProperty.Builder builder()
-