Class CfnCustomVerificationEmailTemplateMixinProps
Properties for CfnCustomVerificationEmailTemplatePropsMixin.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SES
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCustomVerificationEmailTemplateMixinProps : ICfnCustomVerificationEmailTemplateMixinProps
Syntax (vb)
Public Class CfnCustomVerificationEmailTemplateMixinProps Implements ICfnCustomVerificationEmailTemplateMixinProps
Remarks
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.CfnPropertyMixins.AWS.SES;
var cfnCustomVerificationEmailTemplateMixinProps = new CfnCustomVerificationEmailTemplateMixinProps {
FailureRedirectionUrl = "failureRedirectionUrl",
FromEmailAddress = "fromEmailAddress",
SuccessRedirectionUrl = "successRedirectionUrl",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TemplateContent = "templateContent",
TemplateName = "templateName",
TemplateSubject = "templateSubject"
};
Synopsis
Constructors
| CfnCustomVerificationEmailTemplateMixinProps() | Properties for CfnCustomVerificationEmailTemplatePropsMixin. |
Properties
| FailureRedirectionUrl | The URL that the recipient of the verification email is sent to if his or her address is not successfully verified. |
| FromEmailAddress | The email address that the custom verification email is sent from. |
| SuccessRedirectionUrl | The URL that the recipient of the verification email is sent to if his or her address is successfully verified. |
| Tags | The tags (keys and values) associated with the tenant. |
| TemplateContent | The content of the custom verification email. |
| TemplateName | The name of the custom verification email template. |
| TemplateSubject | The subject line of the custom verification email. |
Constructors
CfnCustomVerificationEmailTemplateMixinProps()
Properties for CfnCustomVerificationEmailTemplatePropsMixin.
public CfnCustomVerificationEmailTemplateMixinProps()
Remarks
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.CfnPropertyMixins.AWS.SES;
var cfnCustomVerificationEmailTemplateMixinProps = new CfnCustomVerificationEmailTemplateMixinProps {
FailureRedirectionUrl = "failureRedirectionUrl",
FromEmailAddress = "fromEmailAddress",
SuccessRedirectionUrl = "successRedirectionUrl",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TemplateContent = "templateContent",
TemplateName = "templateName",
TemplateSubject = "templateSubject"
};
Properties
FailureRedirectionUrl
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
public string? FailureRedirectionUrl { get; set; }
Property Value
Remarks
FromEmailAddress
The email address that the custom verification email is sent from.
public string? FromEmailAddress { get; set; }
Property Value
Remarks
SuccessRedirectionUrl
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
public string? SuccessRedirectionUrl { get; set; }
Property Value
Remarks
Tags
The tags (keys and values) associated with the tenant.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
TemplateContent
The content of the custom verification email.
public string? TemplateContent { get; set; }
Property Value
Remarks
The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations.
TemplateName
The name of the custom verification email template.
public string? TemplateName { get; set; }
Property Value
Remarks
TemplateSubject
The subject line of the custom verification email.
public string? TemplateSubject { get; set; }