Class TemplateArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ses
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TemplateArgs : ResourceArgs
Constructors
View SourceTemplateArgs()
Declaration
public TemplateArgs()
Properties
View SourceHtml
The HTML body of the email. Must be less than 500KB in size, including both the text and HTML parts.
Declaration
public Input<string> Html { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the template. Cannot exceed 64 characters. You will refer to this name when you send email.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Subject
The subject line of the email.
Declaration
public Input<string> Subject { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Text
The email body that will be visible to recipients whose email clients do not display HTML. Must be less than 500KB in size, including both the text and HTML parts.
Declaration
public Input<string> Text { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |