Table of Contents

Class CfnUserPool.InviteMessageTemplateProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

The message template to be used for the welcome message to new users.

public class CfnUserPool.InviteMessageTemplateProperty : CfnUserPool.IInviteMessageTemplateProperty
Inheritance
CfnUserPool.InviteMessageTemplateProperty
Implements
Inherited Members

Examples

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

             var inviteMessageTemplateProperty = new InviteMessageTemplateProperty {
                 EmailMessage = "emailMessage",
                 EmailSubject = "emailSubject",
                 SmsMessage = "smsMessage"
             };

Remarks

Constructors

InviteMessageTemplateProperty()

public InviteMessageTemplateProperty()

Properties

EmailMessage

The message template for email messages.

public string? EmailMessage { get; set; }

Property Value

string

Remarks

EmailSubject

The subject line for email messages.

public string? EmailSubject { get; set; }

Property Value

string

Remarks

SmsMessage

The message template for SMS messages.

public string? SmsMessage { get; set; }

Property Value

string

Remarks