Interface CfnUserPool.InviteMessageTemplateProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPool.InviteMessageTemplateProperty.Jsii$Proxy
Enclosing class:
CfnUserPool

@Stability(Stable) public static interface CfnUserPool.InviteMessageTemplateProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cognito.*;
 InviteMessageTemplateProperty inviteMessageTemplateProperty = InviteMessageTemplateProperty.builder()
         .emailMessage("emailMessage")
         .emailSubject("emailSubject")
         .smsMessage("smsMessage")
         .build();