
com.pulumi.aws.cognito.kotlin.inputs.UserPoolAccountRecoverySettingArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.cognito.kotlin.inputs
import com.pulumi.aws.cognito.inputs.UserPoolAccountRecoverySettingArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property recoveryMechanisms List of Account Recovery Options of the following structure:
*/
public data class UserPoolAccountRecoverySettingArgs(
public val recoveryMechanisms: Output>? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.cognito.inputs.UserPoolAccountRecoverySettingArgs =
com.pulumi.aws.cognito.inputs.UserPoolAccountRecoverySettingArgs.builder()
.recoveryMechanisms(
recoveryMechanisms?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [UserPoolAccountRecoverySettingArgs].
*/
@PulumiTagMarker
public class UserPoolAccountRecoverySettingArgsBuilder internal constructor() {
private var recoveryMechanisms: Output>? =
null
/**
* @param value List of Account Recovery Options of the following structure:
*/
@JvmName("rwtfcrkjxhnmcfbk")
public suspend fun recoveryMechanisms(`value`: Output>) {
this.recoveryMechanisms = value
}
@JvmName("tebdryhdbseqonxc")
public suspend fun recoveryMechanisms(vararg values: Output) {
this.recoveryMechanisms = Output.all(values.asList())
}
/**
* @param values List of Account Recovery Options of the following structure:
*/
@JvmName("qcjbbwarjteilgqh")
public suspend fun recoveryMechanisms(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy