Show / Hide Table of Contents

Class CfnUserPool.InviteMessageTemplateProperty

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

Inheritance
System.Object
CfnUserPool.InviteMessageTemplateProperty
Implements
CfnUserPool.IInviteMessageTemplateProperty
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.AWS.Cognito.dll
Syntax (csharp)
public class InviteMessageTemplateProperty : Object, CfnUserPool.IInviteMessageTemplateProperty
Syntax (vb)
Public Class InviteMessageTemplateProperty
    Inherits Object
    Implements CfnUserPool.IInviteMessageTemplateProperty
Remarks

See also Customizing User Invitation Messages .

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

Constructors

InviteMessageTemplateProperty()

Properties

EmailMessage

The message template for email messages.

EmailSubject

The subject line for email messages.

SmsMessage

The message template for SMS messages.

Constructors

InviteMessageTemplateProperty()

public InviteMessageTemplateProperty()

Properties

EmailMessage

The message template for email messages.

public string EmailMessage { get; set; }
Property Value

System.String

Remarks

EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.

Link: 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.

public string EmailSubject { get; set; }
Property Value

System.String

Remarks

EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.

Link: 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.

public string SmsMessage { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnUserPool.IInviteMessageTemplateProperty
Back to top Generated by DocFX