![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.kafkaconnect.kotlin.inputs.GetCustomPluginPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kafkaconnect.kotlin.inputs
import com.pulumi.awsnative.kafkaconnect.inputs.GetCustomPluginPlainArgs.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 customPluginArn The Amazon Resource Name (ARN) of the custom plugin to use.
*/
public data class GetCustomPluginPlainArgs(
public val customPluginArn: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.kafkaconnect.inputs.GetCustomPluginPlainArgs =
com.pulumi.awsnative.kafkaconnect.inputs.GetCustomPluginPlainArgs.builder()
.customPluginArn(customPluginArn.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetCustomPluginPlainArgs].
*/
@PulumiTagMarker
public class GetCustomPluginPlainArgsBuilder internal constructor() {
private var customPluginArn: String? = null
/**
* @param value The Amazon Resource Name (ARN) of the custom plugin to use.
*/
@JvmName("dosotdnrjmjpnblh")
public suspend fun customPluginArn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.customPluginArn = mapped
}
internal fun build(): GetCustomPluginPlainArgs = GetCustomPluginPlainArgs(
customPluginArn = customPluginArn ?: throw PulumiNullFieldException("customPluginArn"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy