
com.pulumi.awsnative.mediaconnect.kotlin.inputs.FlowOutputVpcInterfaceAttachmentArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediaconnect.kotlin.inputs
import com.pulumi.awsnative.mediaconnect.inputs.FlowOutputVpcInterfaceAttachmentArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The settings for attaching a VPC interface to an output.
* @property vpcInterfaceName The name of the VPC interface to use for this output.
*/
public data class FlowOutputVpcInterfaceAttachmentArgs(
public val vpcInterfaceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.mediaconnect.inputs.FlowOutputVpcInterfaceAttachmentArgs =
com.pulumi.awsnative.mediaconnect.inputs.FlowOutputVpcInterfaceAttachmentArgs.builder()
.vpcInterfaceName(vpcInterfaceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FlowOutputVpcInterfaceAttachmentArgs].
*/
@PulumiTagMarker
public class FlowOutputVpcInterfaceAttachmentArgsBuilder internal constructor() {
private var vpcInterfaceName: Output? = null
/**
* @param value The name of the VPC interface to use for this output.
*/
@JvmName("qrtlyolkaykdcpys")
public suspend fun vpcInterfaceName(`value`: Output) {
this.vpcInterfaceName = value
}
/**
* @param value The name of the VPC interface to use for this output.
*/
@JvmName("rpmcvhbeohjtjtku")
public suspend fun vpcInterfaceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.vpcInterfaceName = mapped
}
internal fun build(): FlowOutputVpcInterfaceAttachmentArgs = FlowOutputVpcInterfaceAttachmentArgs(
vpcInterfaceName = vpcInterfaceName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy