![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.cognito.UserInvitationConfig.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.cognito
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.String
import kotlin.Unit
/**
* User pool configuration when administrators sign users up.
*
* Example:
*
* ```
* UserPool.Builder.create(this, "myuserpool")
* // ...
* .userInvitation(UserInvitationConfig.builder()
* .emailSubject("Invite to join our awesome app!")
* .emailBody("Hello {username}, you have been invited to join our awesome app! Your temporary
* password is {####}")
* .smsMessage("Hello {username}, your temporary password for our awesome app is {####}")
* .build())
* .build();
* ```
*/
public interface UserInvitationConfig {
/**
* The template to the email body that is sent to the user when an administrator signs them up to
* the user pool.
*
* Default: 'Your username is {username} and temporary password is {####}.'
*/
public fun emailBody(): String? = unwrap(this).getEmailBody()
/**
* The template to the email subject that is sent to the user when an administrator signs them up
* to the user pool.
*
* Default: 'Your temporary password'
*/
public fun emailSubject(): String? = unwrap(this).getEmailSubject()
/**
* The template to the SMS message that is sent to the user when an administrator signs them up to
* the user pool.
*
* Default: 'Your username is {username} and temporary password is {####}'
*/
public fun smsMessage(): String? = unwrap(this).getSmsMessage()
/**
* A builder for [UserInvitationConfig]
*/
@CdkDslMarker
public interface Builder {
/**
* @param emailBody The template to the email body that is sent to the user when an
* administrator signs them up to the user pool.
*/
public fun emailBody(emailBody: String)
/**
* @param emailSubject The template to the email subject that is sent to the user when an
* administrator signs them up to the user pool.
*/
public fun emailSubject(emailSubject: String)
/**
* @param smsMessage The template to the SMS message that is sent to the user when an
* administrator signs them up to the user pool.
*/
public fun smsMessage(smsMessage: String)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.services.cognito.UserInvitationConfig.Builder =
software.amazon.awscdk.services.cognito.UserInvitationConfig.builder()
/**
* @param emailBody The template to the email body that is sent to the user when an
* administrator signs them up to the user pool.
*/
override fun emailBody(emailBody: String) {
cdkBuilder.emailBody(emailBody)
}
/**
* @param emailSubject The template to the email subject that is sent to the user when an
* administrator signs them up to the user pool.
*/
override fun emailSubject(emailSubject: String) {
cdkBuilder.emailSubject(emailSubject)
}
/**
* @param smsMessage The template to the SMS message that is sent to the user when an
* administrator signs them up to the user pool.
*/
override fun smsMessage(smsMessage: String) {
cdkBuilder.smsMessage(smsMessage)
}
public fun build(): software.amazon.awscdk.services.cognito.UserInvitationConfig =
cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.cognito.UserInvitationConfig,
) : CdkObject(cdkObject),
UserInvitationConfig {
/**
* The template to the email body that is sent to the user when an administrator signs them up
* to the user pool.
*
* Default: 'Your username is {username} and temporary password is {####}.'
*/
override fun emailBody(): String? = unwrap(this).getEmailBody()
/**
* The template to the email subject that is sent to the user when an administrator signs them
* up to the user pool.
*
* Default: 'Your temporary password'
*/
override fun emailSubject(): String? = unwrap(this).getEmailSubject()
/**
* The template to the SMS message that is sent to the user when an administrator signs them up
* to the user pool.
*
* Default: 'Your username is {username} and temporary password is {####}'
*/
override fun smsMessage(): String? = unwrap(this).getSmsMessage()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): UserInvitationConfig {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.cognito.UserInvitationConfig):
UserInvitationConfig = CdkObjectWrappers.wrap(cdkObject) as? UserInvitationConfig ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: UserInvitationConfig):
software.amazon.awscdk.services.cognito.UserInvitationConfig = (wrapped as
CdkObject).cdkObject as software.amazon.awscdk.services.cognito.UserInvitationConfig
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy