![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.rds.kotlin.inputs.GetDbProxyPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rds.kotlin.inputs
import com.pulumi.awsnative.rds.inputs.GetDbProxyPlainArgs.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 dbProxyName The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.
*/
public data class GetDbProxyPlainArgs(
public val dbProxyName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.rds.inputs.GetDbProxyPlainArgs =
com.pulumi.awsnative.rds.inputs.GetDbProxyPlainArgs.builder()
.dbProxyName(dbProxyName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDbProxyPlainArgs].
*/
@PulumiTagMarker
public class GetDbProxyPlainArgsBuilder internal constructor() {
private var dbProxyName: String? = null
/**
* @param value The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.
*/
@JvmName("mmcahtybhtspesuy")
public suspend fun dbProxyName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.dbProxyName = mapped
}
internal fun build(): GetDbProxyPlainArgs = GetDbProxyPlainArgs(
dbProxyName = dbProxyName ?: throw PulumiNullFieldException("dbProxyName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy