Interface EmailMfaConfigType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EmailMfaConfigType.Builder,EmailMfaConfigType>,SdkBuilder<EmailMfaConfigType.Builder,EmailMfaConfigType>,SdkPojo
- Enclosing class:
- EmailMfaConfigType
public static interface EmailMfaConfigType.Builder extends SdkPojo, CopyableBuilder<EmailMfaConfigType.Builder,EmailMfaConfigType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmailMfaConfigType.Buildermessage(String message)The template for the email message that your user pool sends to users with an MFA code.EmailMfaConfigType.Buildersubject(String subject)The subject of the email message that your user pool sends to users with an MFA code.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
message
EmailMfaConfigType.Builder message(String message)
The template for the email message that your user pool sends to users with an MFA code. The message must contain the
{####}placeholder. In the message, Amazon Cognito replaces this placeholder with the code. If you don't provide this parameter, Amazon Cognito sends messages in the default format.- Parameters:
message- The template for the email message that your user pool sends to users with an MFA code. The message must contain the{####}placeholder. In the message, Amazon Cognito replaces this placeholder with the code. If you don't provide this parameter, Amazon Cognito sends messages in the default format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subject
EmailMfaConfigType.Builder subject(String subject)
The subject of the email message that your user pool sends to users with an MFA code.
- Parameters:
subject- The subject of the email message that your user pool sends to users with an MFA code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-