Interface CfnTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.422Z")
@Stability(Stable)
public interface CfnTemplateProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTemplate
.
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.*; CfnTemplateProps cfnTemplateProps = CfnTemplateProps.builder() .template(TemplateProperty.builder() .subjectPart("subjectPart") // the properties below are optional .htmlPart("htmlPart") .templateName("templateName") .textPart("textPart") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplateProps
static final class
An implementation forCfnTemplateProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTemplateProps.Builder
builder()
default Object
The content of the email, composed of a subject line and either an HTML part or a text-only part.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTemplate
The content of the email, composed of a subject line and either an HTML part or a text-only part. -
builder
- Returns:
- a
CfnTemplateProps.Builder
ofCfnTemplateProps
-