interface InviteMessageTemplateProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Cognito.CfnUserPool.InviteMessageTemplateProperty | 
|  Java | software.amazon.awscdk.services.cognito.CfnUserPool.InviteMessageTemplateProperty | 
|  Python | aws_cdk.aws_cognito.CfnUserPool.InviteMessageTemplateProperty | 
|  TypeScript | @aws-cdk/aws-cognito»CfnUserPool»InviteMessageTemplateProperty | 
The message template to be used for the welcome message to new users.
See also Customizing User Invitation Messages .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cognito from '@aws-cdk/aws-cognito';
const inviteMessageTemplateProperty: cognito.CfnUserPool.InviteMessageTemplateProperty = {
  emailMessage: 'emailMessage',
  emailSubject: 'emailSubject',
  smsMessage: 'smsMessage',
};
Properties
| Name | Type | Description | 
|---|---|---|
| email | string | The message template for email messages. | 
| email | string | The subject line for email messages. | 
| sms | string | The message template for SMS messages. | 
emailMessage?
Type:
string
(optional)
The message template for email messages.
EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.
emailSubject?
Type:
string
(optional)
The subject line for email messages.
EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.
smsMessage?
Type:
string
(optional)
The message template for SMS messages.
