public static interface CfnTemplate.TemplateProperty
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.ses.*; TemplateProperty templateProperty = TemplateProperty.builder() .subjectPart("subjectPart") // the properties below are optional .htmlPart("htmlPart") .templateName("templateName") .textPart("textPart") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTemplate.TemplateProperty.Builder
A builder for
CfnTemplate.TemplateProperty |
static class |
CfnTemplate.TemplateProperty.Jsii$Proxy
An implementation for
CfnTemplate.TemplateProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTemplate.TemplateProperty.Builder |
builder() |
default java.lang.String |
getHtmlPart()
The HTML body of the email.
|
java.lang.String |
getSubjectPart()
The subject line of the email.
|
default java.lang.String |
getTemplateName()
The name of the template.
|
default java.lang.String |
getTextPart()
The email body that is visible to recipients whose email clients do not display HTML content.
|
java.lang.String getSubjectPart()
default java.lang.String getHtmlPart()
default java.lang.String getTemplateName()
default java.lang.String getTextPart()
static CfnTemplate.TemplateProperty.Builder builder()