
com.pulumi.aws.eks.kotlin.outputs.ClusterRemoteNetworkConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.eks.kotlin.outputs
import kotlin.Suppress
/**
*
* @property remoteNodeNetworks Configuration block with remote node network configuration for EKS Hybrid Nodes. Detailed below.
* @property remotePodNetworks Configuration block with remote pod network configuration for EKS Hybrid Nodes. Detailed below.
*/
public data class ClusterRemoteNetworkConfig(
public val remoteNodeNetworks: ClusterRemoteNetworkConfigRemoteNodeNetworks,
public val remotePodNetworks: ClusterRemoteNetworkConfigRemotePodNetworks? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.eks.outputs.ClusterRemoteNetworkConfig): ClusterRemoteNetworkConfig = ClusterRemoteNetworkConfig(
remoteNodeNetworks = javaType.remoteNodeNetworks().let({ args0 ->
com.pulumi.aws.eks.kotlin.outputs.ClusterRemoteNetworkConfigRemoteNodeNetworks.Companion.toKotlin(args0)
}),
remotePodNetworks = javaType.remotePodNetworks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.eks.kotlin.outputs.ClusterRemoteNetworkConfigRemotePodNetworks.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy