Interface CfnUserPool.IInviteMessageTemplateProperty
The message template to be used for the welcome message to new users.
public interface CfnUserPool.IInviteMessageTemplateProperty
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
See also Customizing User Invitation Messages .
ExampleMetadata: fixture=_generated
Properties
EmailMessage
The message template for email messages.
string? EmailMessage { get; }
Property Value
Remarks
EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.
EmailSubject
The subject line for email messages.
string? EmailSubject { get; }
Property Value
Remarks
EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.
SmsMessage
The message template for SMS messages.
string? SmsMessage { get; }