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

com.pulumi.aws.appmesh.kotlin.inputs.MeshSpecServiceDiscoveryArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.appmesh.kotlin.inputs

import com.pulumi.aws.appmesh.inputs.MeshSpecServiceDiscoveryArgs.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

/**
 *
 * @property ipPreference The IP version to use to control traffic within the mesh. Valid values are `IPv6_PREFERRED`, `IPv4_PREFERRED`, `IPv4_ONLY`, and `IPv6_ONLY`.
 */
public data class MeshSpecServiceDiscoveryArgs(
    public val ipPreference: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.appmesh.inputs.MeshSpecServiceDiscoveryArgs =
        com.pulumi.aws.appmesh.inputs.MeshSpecServiceDiscoveryArgs.builder()
            .ipPreference(ipPreference?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [MeshSpecServiceDiscoveryArgs].
 */
@PulumiTagMarker
public class MeshSpecServiceDiscoveryArgsBuilder internal constructor() {
    private var ipPreference: Output? = null

    /**
     * @param value The IP version to use to control traffic within the mesh. Valid values are `IPv6_PREFERRED`, `IPv4_PREFERRED`, `IPv4_ONLY`, and `IPv6_ONLY`.
     */
    @JvmName("nbaqbnciuhqyqqyq")
    public suspend fun ipPreference(`value`: Output) {
        this.ipPreference = value
    }

    /**
     * @param value The IP version to use to control traffic within the mesh. Valid values are `IPv6_PREFERRED`, `IPv4_PREFERRED`, `IPv4_ONLY`, and `IPv6_ONLY`.
     */
    @JvmName("ipefflidtkjakcnj")
    public suspend fun ipPreference(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ipPreference = mapped
    }

    internal fun build(): MeshSpecServiceDiscoveryArgs = MeshSpecServiceDiscoveryArgs(
        ipPreference = ipPreference,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy