Show / Hide Table of Contents

Interface CfnUserPool.IInviteMessageTemplateProperty

The template for the welcome message to new users.

Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnUserPool.IInviteMessageTemplateProperty
Syntax (vb)
Public Interface CfnUserPool.IInviteMessageTemplateProperty
Remarks

This template must include the {####} temporary password placeholder if you are creating users with passwords. If your users don't have passwords, you can omit the placeholder.

See also Customizing User Invitation Messages .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.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.Cognito;

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

Synopsis

Properties

EmailMessage

The message template for email messages.

EmailSubject

The subject line for email messages.

SmsMessage

The message template for SMS messages.

Properties

EmailMessage

The message template for email messages.

string? EmailMessage { get; }
Property Value

string

Remarks

EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage

EmailSubject

The subject line for email messages.

string? EmailSubject { get; }
Property Value

string

Remarks

EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject

SmsMessage

The message template for SMS messages.

string? SmsMessage { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage

Back to top Generated by DocFX