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

com.pulumi.aws.eks.kotlin.inputs.ClusterOutpostConfigControlPlanePlacementArgs.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.eks.kotlin.inputs

import com.pulumi.aws.eks.inputs.ClusterOutpostConfigControlPlanePlacementArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property groupName The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation.
 */
public data class ClusterOutpostConfigControlPlanePlacementArgs(
    public val groupName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.eks.inputs.ClusterOutpostConfigControlPlanePlacementArgs =
        com.pulumi.aws.eks.inputs.ClusterOutpostConfigControlPlanePlacementArgs.builder()
            .groupName(groupName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ClusterOutpostConfigControlPlanePlacementArgs].
 */
@PulumiTagMarker
public class ClusterOutpostConfigControlPlanePlacementArgsBuilder internal constructor() {
    private var groupName: Output? = null

    /**
     * @param value The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation.
     */
    @JvmName("lqrukfajreldwafv")
    public suspend fun groupName(`value`: Output) {
        this.groupName = value
    }

    /**
     * @param value The name of the placement group for the Kubernetes control plane instances. This setting can't be changed after cluster creation.
     */
    @JvmName("bbbdraqotmhlbsds")
    public suspend fun groupName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.groupName = mapped
    }

    internal fun build(): ClusterOutpostConfigControlPlanePlacementArgs =
        ClusterOutpostConfigControlPlanePlacementArgs(
            groupName = groupName ?: throw PulumiNullFieldException("groupName"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy