Interface CfnMessageTemplate.ContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMessageTemplate.ContentProperty.Jsii$Proxy
- Enclosing class:
CfnMessageTemplate
@Stability(Stable)
public static interface CfnMessageTemplate.ContentProperty
extends software.amazon.jsii.JsiiSerializable
The content of the message template.
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.wisdom.*;
ContentProperty contentProperty = ContentProperty.builder()
.emailMessageTemplateContent(EmailMessageTemplateContentProperty.builder()
.body(EmailMessageTemplateContentBodyProperty.builder()
.html(MessageTemplateBodyContentProviderProperty.builder()
.content("content")
.build())
.plainText(MessageTemplateBodyContentProviderProperty.builder()
.content("content")
.build())
.build())
.headers(List.of(EmailMessageTemplateHeaderProperty.builder()
.name("name")
.value("value")
.build()))
.subject("subject")
.build())
.smsMessageTemplateContent(SmsMessageTemplateContentProperty.builder()
.body(SmsMessageTemplateContentBodyProperty.builder()
.plainText(MessageTemplateBodyContentProviderProperty.builder()
.content("content")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMessageTemplate.ContentPropertystatic final classAn implementation forCfnMessageTemplate.ContentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEmailMessageTemplateContent
The content of the message template that applies to the email channel subtype.Returns union: either
IResolvableorCfnMessageTemplate.EmailMessageTemplateContentProperty- See Also:
-
getSmsMessageTemplateContent
The content of message template that applies to SMS channel subtype.Returns union: either
IResolvableorCfnMessageTemplate.SmsMessageTemplateContentProperty- See Also:
-
builder
-