![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.wafv2.kotlin.inputs.WebAclFieldToMatchSingleQueryArgumentPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.wafv2.kotlin.inputs
import com.pulumi.awsnative.wafv2.inputs.WebAclFieldToMatchSingleQueryArgumentPropertiesArgs.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
/**
* One query argument in a web request, identified by name, for example UserName or SalesRegion. The name can be up to 30 characters long and isn't case sensitive.
* @property name
*/
public data class WebAclFieldToMatchSingleQueryArgumentPropertiesArgs(
public val name: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.wafv2.inputs.WebAclFieldToMatchSingleQueryArgumentPropertiesArgs =
com.pulumi.awsnative.wafv2.inputs.WebAclFieldToMatchSingleQueryArgumentPropertiesArgs.builder()
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WebAclFieldToMatchSingleQueryArgumentPropertiesArgs].
*/
@PulumiTagMarker
public class WebAclFieldToMatchSingleQueryArgumentPropertiesArgsBuilder internal constructor() {
private var name: Output? = null
/**
* @param value
*/
@JvmName("rummffddhcnjgoox")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value
*/
@JvmName("leshyhikhhcnrakp")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): WebAclFieldToMatchSingleQueryArgumentPropertiesArgs =
WebAclFieldToMatchSingleQueryArgumentPropertiesArgs(
name = name ?: throw PulumiNullFieldException("name"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy