![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.mediaconnect.kotlin.outputs.GatewayNetwork.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediaconnect.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The network settings for a gateway.
* @property cidrBlock A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
* @property name The name of the network. This name is used to reference the network and must be unique among networks in this gateway.
*/
public data class GatewayNetwork(
public val cidrBlock: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediaconnect.outputs.GatewayNetwork): GatewayNetwork = GatewayNetwork(
cidrBlock = javaType.cidrBlock(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy