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

com.pulumi.awsnative.neptune.kotlin.inputs.GetDbClusterPlainArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.neptune.kotlin.inputs

import com.pulumi.awsnative.neptune.inputs.GetDbClusterPlainArgs.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 dbClusterIdentifier The DB cluster identifier. Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster stored as a lowercase string.
 */
public data class GetDbClusterPlainArgs(
    public val dbClusterIdentifier: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.neptune.inputs.GetDbClusterPlainArgs =
        com.pulumi.awsnative.neptune.inputs.GetDbClusterPlainArgs.builder()
            .dbClusterIdentifier(dbClusterIdentifier.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetDbClusterPlainArgs].
 */
@PulumiTagMarker
public class GetDbClusterPlainArgsBuilder internal constructor() {
    private var dbClusterIdentifier: String? = null

    /**
     * @param value The DB cluster identifier. Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster stored as a lowercase string.
     */
    @JvmName("pwlfbosogytihsnt")
    public suspend fun dbClusterIdentifier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.dbClusterIdentifier = mapped
    }

    internal fun build(): GetDbClusterPlainArgs = GetDbClusterPlainArgs(
        dbClusterIdentifier = dbClusterIdentifier ?: throw PulumiNullFieldException("dbClusterIdentifier"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy