com.pulumi.aws.appmesh.kotlin.inputs.RouteSpecHttp2RouteMatchHeaderArgs.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.RouteSpecHttp2RouteMatchHeaderArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property invert If `true`, the match is on the opposite of the `match` method and value. Default is `false`.
* @property match Method and value to match the header value sent with a request. Specify one match method.
* @property name Name for the HTTP header in the client request that will be matched on.
*/
public data class RouteSpecHttp2RouteMatchHeaderArgs(
public val invert: Output? = null,
public val match: Output? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.appmesh.inputs.RouteSpecHttp2RouteMatchHeaderArgs =
com.pulumi.aws.appmesh.inputs.RouteSpecHttp2RouteMatchHeaderArgs.builder()
.invert(invert?.applyValue({ args0 -> args0 }))
.match(match?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RouteSpecHttp2RouteMatchHeaderArgs].
*/
@PulumiTagMarker
public class RouteSpecHttp2RouteMatchHeaderArgsBuilder internal constructor() {
private var invert: Output? = null
private var match: Output? = null
private var name: Output? = null
/**
* @param value If `true`, the match is on the opposite of the `match` method and value. Default is `false`.
*/
@JvmName("tninuaybbvryrhoj")
public suspend fun invert(`value`: Output) {
this.invert = value
}
/**
* @param value Method and value to match the header value sent with a request. Specify one match method.
*/
@JvmName("qrkotsnexfrolhgn")
public suspend fun match(`value`: Output) {
this.match = value
}
/**
* @param value Name for the HTTP header in the client request that will be matched on.
*/
@JvmName("mgqkxpifvemjtcqh")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value If `true`, the match is on the opposite of the `match` method and value. Default is `false`.
*/
@JvmName("cccadtaymjkcgitx")
public suspend fun invert(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.invert = mapped
}
/**
* @param value Method and value to match the header value sent with a request. Specify one match method.
*/
@JvmName("kogqrbdnbhggebiw")
public suspend fun match(`value`: RouteSpecHttp2RouteMatchHeaderMatchArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.match = mapped
}
/**
* @param argument Method and value to match the header value sent with a request. Specify one match method.
*/
@JvmName("yokquduqddrsslvx")
public suspend fun match(argument: suspend RouteSpecHttp2RouteMatchHeaderMatchArgsBuilder.() -> Unit) {
val toBeMapped = RouteSpecHttp2RouteMatchHeaderMatchArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.match = mapped
}
/**
* @param value Name for the HTTP header in the client request that will be matched on.
*/
@JvmName("fcboebbcmtcqyfjj")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): RouteSpecHttp2RouteMatchHeaderArgs = RouteSpecHttp2RouteMatchHeaderArgs(
invert = invert,
match = match,
name = name ?: throw PulumiNullFieldException("name"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy