All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.ec2.kotlin.inputs.OptionsPropertiesArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ec2.kotlin.inputs

import com.pulumi.awsnative.ec2.inputs.OptionsPropertiesArgs.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 options for the transit gateway vpc attachment.
 * @property applianceModeSupport Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
 * @property dnsSupport Indicates whether to enable DNS Support for Vpc Attachment. Valid Values: enable | disable
 * @property ipv6Support Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
 */
public data class OptionsPropertiesArgs(
    public val applianceModeSupport: Output? = null,
    public val dnsSupport: Output? = null,
    public val ipv6Support: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.inputs.OptionsPropertiesArgs =
        com.pulumi.awsnative.ec2.inputs.OptionsPropertiesArgs.builder()
            .applianceModeSupport(applianceModeSupport?.applyValue({ args0 -> args0 }))
            .dnsSupport(dnsSupport?.applyValue({ args0 -> args0 }))
            .ipv6Support(ipv6Support?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [OptionsPropertiesArgs].
 */
@PulumiTagMarker
public class OptionsPropertiesArgsBuilder internal constructor() {
    private var applianceModeSupport: Output? = null

    private var dnsSupport: Output? = null

    private var ipv6Support: Output? = null

    /**
     * @param value Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("pmmmeevhthhrtehm")
    public suspend fun applianceModeSupport(`value`: Output) {
        this.applianceModeSupport = value
    }

    /**
     * @param value Indicates whether to enable DNS Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("opmntvlswanpajiw")
    public suspend fun dnsSupport(`value`: Output) {
        this.dnsSupport = value
    }

    /**
     * @param value Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("oxxtvltfmtbgraqb")
    public suspend fun ipv6Support(`value`: Output) {
        this.ipv6Support = value
    }

    /**
     * @param value Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("xdutbiowvkoxfkuq")
    public suspend fun applianceModeSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.applianceModeSupport = mapped
    }

    /**
     * @param value Indicates whether to enable DNS Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("ycpgkygsuquxkpgx")
    public suspend fun dnsSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dnsSupport = mapped
    }

    /**
     * @param value Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
     */
    @JvmName("mcvydeayrugwniri")
    public suspend fun ipv6Support(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ipv6Support = mapped
    }

    internal fun build(): OptionsPropertiesArgs = OptionsPropertiesArgs(
        applianceModeSupport = applianceModeSupport,
        dnsSupport = dnsSupport,
        ipv6Support = ipv6Support,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy