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

com.pulumi.aws.pipes.kotlin.inputs.PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.pipes.kotlin.inputs

import com.pulumi.aws.pipes.inputs.PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property clientCertificateTlsAuth The ARN of the Secrets Manager secret containing the credentials.
 * @property saslScram512Auth The ARN of the Secrets Manager secret containing the credentials.
 */
public data class PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs(
    public val clientCertificateTlsAuth: Output? = null,
    public val saslScram512Auth: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.pipes.inputs.PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs =
        com.pulumi.aws.pipes.inputs.PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs.builder()
            .clientCertificateTlsAuth(clientCertificateTlsAuth?.applyValue({ args0 -> args0 }))
            .saslScram512Auth(saslScram512Auth?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs].
 */
@PulumiTagMarker
public class PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgsBuilder internal constructor() {
    private var clientCertificateTlsAuth: Output? = null

    private var saslScram512Auth: Output? = null

    /**
     * @param value The ARN of the Secrets Manager secret containing the credentials.
     */
    @JvmName("tuoyktfpdhpwaxnp")
    public suspend fun clientCertificateTlsAuth(`value`: Output) {
        this.clientCertificateTlsAuth = value
    }

    /**
     * @param value The ARN of the Secrets Manager secret containing the credentials.
     */
    @JvmName("kyiwgabjqktosbtk")
    public suspend fun saslScram512Auth(`value`: Output) {
        this.saslScram512Auth = value
    }

    /**
     * @param value The ARN of the Secrets Manager secret containing the credentials.
     */
    @JvmName("cldjcjskpekqjgdy")
    public suspend fun clientCertificateTlsAuth(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientCertificateTlsAuth = mapped
    }

    /**
     * @param value The ARN of the Secrets Manager secret containing the credentials.
     */
    @JvmName("stutaslboeduamus")
    public suspend fun saslScram512Auth(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.saslScram512Auth = mapped
    }

    internal fun build(): PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs =
        PipeSourceParametersManagedStreamingKafkaParametersCredentialsArgs(
            clientCertificateTlsAuth = clientCertificateTlsAuth,
            saslScram512Auth = saslScram512Auth,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy