
com.pulumi.aws.wafv2.kotlin.inputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.wafv2.kotlin.inputs
import com.pulumi.aws.wafv2.inputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property identifier The name of the password field.
*/
public data class
WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs(
public val identifier: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.wafv2.inputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs =
com.pulumi.aws.wafv2.inputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs.builder()
.identifier(identifier.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs].
*/
@PulumiTagMarker
public class
WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgsBuilder
internal constructor() {
private var identifier: Output? = null
/**
* @param value The name of the password field.
*/
@JvmName("nbnjppunimdvjrgp")
public suspend fun identifier(`value`: Output) {
this.identifier = value
}
/**
* @param value The name of the password field.
*/
@JvmName("pfvssouijvbxubbv")
public suspend fun identifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.identifier = mapped
}
internal fun build(): WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs =
WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordFieldArgs(
identifier = identifier ?: throw PulumiNullFieldException("identifier"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy