
com.pulumi.awsnative.mediaconnect.kotlin.outputs.BridgeVpcInterfaceAttachment.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediaconnect.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The settings for attaching a VPC interface to an resource.
* @property vpcInterfaceName The name of the VPC interface to use for this resource.
*/
public data class BridgeVpcInterfaceAttachment(
public val vpcInterfaceName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediaconnect.outputs.BridgeVpcInterfaceAttachment): BridgeVpcInterfaceAttachment = BridgeVpcInterfaceAttachment(
vpcInterfaceName = javaType.vpcInterfaceName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy