com.pulumi.aws.appmesh.kotlin.outputs.RouteSpecHttpRouteMatchHeader.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.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @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 RouteSpecHttpRouteMatchHeader(
public val invert: Boolean? = null,
public val match: RouteSpecHttpRouteMatchHeaderMatch? = null,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.appmesh.outputs.RouteSpecHttpRouteMatchHeader): RouteSpecHttpRouteMatchHeader = RouteSpecHttpRouteMatchHeader(
invert = javaType.invert().map({ args0 -> args0 }).orElse(null),
match = javaType.match().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.appmesh.kotlin.outputs.RouteSpecHttpRouteMatchHeaderMatch.Companion.toKotlin(args0)
})
}).orElse(null),
name = javaType.name(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy