com.pulumi.aws.appmesh.kotlin.inputs.RouteSpecHttp2RouteMatchQueryParameterMatchArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.appmesh.kotlin.inputs
import com.pulumi.aws.appmesh.inputs.RouteSpecHttp2RouteMatchQueryParameterMatchArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property exact The exact query parameter to match on.
*/
public data class RouteSpecHttp2RouteMatchQueryParameterMatchArgs(
public val exact: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.appmesh.inputs.RouteSpecHttp2RouteMatchQueryParameterMatchArgs =
com.pulumi.aws.appmesh.inputs.RouteSpecHttp2RouteMatchQueryParameterMatchArgs.builder()
.exact(exact?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RouteSpecHttp2RouteMatchQueryParameterMatchArgs].
*/
@PulumiTagMarker
public class RouteSpecHttp2RouteMatchQueryParameterMatchArgsBuilder internal constructor() {
private var exact: Output? = null
/**
* @param value The exact query parameter to match on.
*/
@JvmName("uqsvhowwgwnkhlqc")
public suspend fun exact(`value`: Output) {
this.exact = value
}
/**
* @param value The exact query parameter to match on.
*/
@JvmName("kvhykjbpclatapfp")
public suspend fun exact(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.exact = mapped
}
internal fun build(): RouteSpecHttp2RouteMatchQueryParameterMatchArgs =
RouteSpecHttp2RouteMatchQueryParameterMatchArgs(
exact = exact,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy