Show / Hide Table of Contents

Class CfnTemplateProps

Properties for defining a CfnTemplate.

Inheritance
object
CfnTemplateProps
Implements
ICfnTemplateProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplateProps : ICfnTemplateProps
Syntax (vb)
Public Class CfnTemplateProps Implements ICfnTemplateProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var cfnTemplateProps = new CfnTemplateProps {
                 Template = new TemplateProperty {
                     SubjectPart = "subjectPart",

                     // the properties below are optional
                     HtmlPart = "htmlPart",
                     TemplateName = "templateName",
                     TextPart = "textPart"
                 }
             };

Synopsis

Constructors

CfnTemplateProps()

Properties for defining a CfnTemplate.

Properties

Template

The content of the email, composed of a subject line and either an HTML part or a text-only part.

Constructors

CfnTemplateProps()

Properties for defining a CfnTemplate.

public CfnTemplateProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var cfnTemplateProps = new CfnTemplateProps {
                 Template = new TemplateProperty {
                     SubjectPart = "subjectPart",

                     // the properties below are optional
                     HtmlPart = "htmlPart",
                     TemplateName = "templateName",
                     TextPart = "textPart"
                 }
             };

Properties

Template

The content of the email, composed of a subject line and either an HTML part or a text-only part.

public object? Template { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html#cfn-ses-template-template

Implements

ICfnTemplateProps
Back to top Generated by DocFX