![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.VpcdhcpOptionsAssociationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.ec2.kotlin
import com.pulumi.awsnative.ec2.VpcdhcpOptionsAssociationArgs.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
/**
* Associates a set of DHCP options with a VPC, or associates no DHCP options with the VPC.
* @property dhcpOptionsId The ID of the DHCP options set, or default to associate no DHCP options with the VPC.
* @property vpcId The ID of the VPC.
*/
public data class VpcdhcpOptionsAssociationArgs(
public val dhcpOptionsId: Output? = null,
public val vpcId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.VpcdhcpOptionsAssociationArgs =
com.pulumi.awsnative.ec2.VpcdhcpOptionsAssociationArgs.builder()
.dhcpOptionsId(dhcpOptionsId?.applyValue({ args0 -> args0 }))
.vpcId(vpcId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VpcdhcpOptionsAssociationArgs].
*/
@PulumiTagMarker
public class VpcdhcpOptionsAssociationArgsBuilder internal constructor() {
private var dhcpOptionsId: Output? = null
private var vpcId: Output? = null
/**
* @param value The ID of the DHCP options set, or default to associate no DHCP options with the VPC.
*/
@JvmName("ytcfgxvsweywepkh")
public suspend fun dhcpOptionsId(`value`: Output) {
this.dhcpOptionsId = value
}
/**
* @param value The ID of the VPC.
*/
@JvmName("dfqnxucuitrusibf")
public suspend fun vpcId(`value`: Output) {
this.vpcId = value
}
/**
* @param value The ID of the DHCP options set, or default to associate no DHCP options with the VPC.
*/
@JvmName("usivxxocfuyqkhip")
public suspend fun dhcpOptionsId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dhcpOptionsId = mapped
}
/**
* @param value The ID of the VPC.
*/
@JvmName("llwypewrtbtwhgbs")
public suspend fun vpcId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.vpcId = mapped
}
internal fun build(): VpcdhcpOptionsAssociationArgs = VpcdhcpOptionsAssociationArgs(
dhcpOptionsId = dhcpOptionsId,
vpcId = vpcId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy