All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.wafregional.kotlin.outputs.GeoMatchSetGeoMatchConstraint.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@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