Interface CfnUserPool.VerificationMessageTemplateProperty

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

@Stability(Stable) public static interface CfnUserPool.VerificationMessageTemplateProperty extends software.amazon.jsii.JsiiSerializable
The template for the verification message that your user pool delivers to users who set an email address or phone number attribute.

This data type is a request and response parameter of CreateUserPool and UpdateUserPool , and a response parameter of DescribeUserPool .

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.*;
 VerificationMessageTemplateProperty verificationMessageTemplateProperty = VerificationMessageTemplateProperty.builder()
         .defaultEmailOption("defaultEmailOption")
         .emailMessage("emailMessage")
         .emailMessageByLink("emailMessageByLink")
         .emailSubject("emailSubject")
         .emailSubjectByLink("emailSubjectByLink")
         .smsMessage("smsMessage")
         .build();
 

See Also: