com.pulumi.aws.wafregional.kotlin.outputs.GeoMatchSetGeoMatchConstraint.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.wafregional.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property type The type of geographical area you want AWS WAF to search for. Currently Country is the only valid value.
* @property value The country that you want AWS WAF to search for.
* This is the two-letter country code, e.g., `US`, `CA`, `RU`, `CN`, etc.
* See [docs](https://docs.aws.amazon.com/waf/latest/APIReference/API_GeoMatchConstraint.html) for all supported values.
*/
public data class GeoMatchSetGeoMatchConstraint(
public val type: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.wafregional.outputs.GeoMatchSetGeoMatchConstraint): GeoMatchSetGeoMatchConstraint = GeoMatchSetGeoMatchConstraint(
type = javaType.type(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy