com.pulumi.aws.waf.kotlin.outputs.IpSetIpSetDescriptor.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.waf.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property type Type of the IP address - `IPV4` or `IPV6`.
* @property value An IPv4 or IPv6 address specified via CIDR notationE.g., `192.0.2.44/32` or `1111:0000:0000:0000:0000:0000:0000:0000/64`
*/
public data class IpSetIpSetDescriptor(
public val type: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.waf.outputs.IpSetIpSetDescriptor): IpSetIpSetDescriptor = IpSetIpSetDescriptor(
type = javaType.type(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy