Show / Hide Table of Contents

Class TemplateState

Inheritance
System.Object
InputArgs
ResourceArgs
TemplateState
Inherited Members
ResourceArgs.Empty
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 TemplateState : ResourceArgs

Constructors

View Source

TemplateState()

Declaration
public TemplateState()

Properties

View Source

Html

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>
View Source

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>
View Source

Subject

The subject line of the email.

Declaration
public Input<string> Subject { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.