com.pulumi.aws.eks.kotlin.inputs.ClusterOutpostConfigControlPlanePlacementArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.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