![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.emrcontainers.kotlin.inputs.VirtualClusterEksInfoArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.emrcontainers.kotlin.inputs
import com.pulumi.awsnative.emrcontainers.inputs.VirtualClusterEksInfoArgs.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 namespace The namespaces of the EKS cluster.
* *Minimum* : 1
* *Maximum* : 63
* *Pattern* : `[a-z0-9]([-a-z0-9]*[a-z0-9])?`
*/
public data class VirtualClusterEksInfoArgs(
public val namespace: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.emrcontainers.inputs.VirtualClusterEksInfoArgs =
com.pulumi.awsnative.emrcontainers.inputs.VirtualClusterEksInfoArgs.builder()
.namespace(namespace.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VirtualClusterEksInfoArgs].
*/
@PulumiTagMarker
public class VirtualClusterEksInfoArgsBuilder internal constructor() {
private var namespace: Output? = null
/**
* @param value The namespaces of the EKS cluster.
* *Minimum* : 1
* *Maximum* : 63
* *Pattern* : `[a-z0-9]([-a-z0-9]*[a-z0-9])?`
*/
@JvmName("lexknqhaojtlyabo")
public suspend fun namespace(`value`: Output) {
this.namespace = value
}
/**
* @param value The namespaces of the EKS cluster.
* *Minimum* : 1
* *Maximum* : 63
* *Pattern* : `[a-z0-9]([-a-z0-9]*[a-z0-9])?`
*/
@JvmName("noasfodkrmbtajtu")
public suspend fun namespace(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.namespace = mapped
}
internal fun build(): VirtualClusterEksInfoArgs = VirtualClusterEksInfoArgs(
namespace = namespace ?: throw PulumiNullFieldException("namespace"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy