Table of Contents

Interface CfnUserPool.IInviteMessageTemplateProperty

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

Properties

EmailMessage

The message template for email messages.

string? EmailMessage { get; }

Property Value

string

Remarks

EmailSubject

The subject line for email messages.

string? EmailSubject { get; }

Property Value

string

Remarks

SmsMessage

The message template for SMS messages.

string? SmsMessage { get; }

Property Value

string

Remarks