com.pulumi.awsnative.rds.kotlin.inputs.GetGlobalClusterPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.rds.kotlin.inputs
import com.pulumi.awsnative.rds.inputs.GetGlobalClusterPlainArgs.builder
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 globalClusterIdentifier The cluster identifier of the new global database cluster. This parameter is stored as a lowercase string.
*/
public data class GetGlobalClusterPlainArgs(
public val globalClusterIdentifier: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.rds.inputs.GetGlobalClusterPlainArgs =
com.pulumi.awsnative.rds.inputs.GetGlobalClusterPlainArgs.builder()
.globalClusterIdentifier(globalClusterIdentifier.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetGlobalClusterPlainArgs].
*/
@PulumiTagMarker
public class GetGlobalClusterPlainArgsBuilder internal constructor() {
private var globalClusterIdentifier: String? = null
/**
* @param value The cluster identifier of the new global database cluster. This parameter is stored as a lowercase string.
*/
@JvmName("svhhegvsoshdvvfg")
public suspend fun globalClusterIdentifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.globalClusterIdentifier = mapped
}
internal fun build(): GetGlobalClusterPlainArgs = GetGlobalClusterPlainArgs(
globalClusterIdentifier = globalClusterIdentifier ?: throw
PulumiNullFieldException("globalClusterIdentifier"),
)
}