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

com.pulumi.aws.networkfirewall.kotlin.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs.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.networkfirewall.kotlin.inputs

import com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs.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 resourceArn ARN of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.
 */
public data class
TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs(
    public val resourceArn: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs =
        com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs.builder()
            .resourceArn(resourceArn?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs].
 */
@PulumiTagMarker
public class
TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgsBuilder
internal constructor() {
    private var resourceArn: Output? = null

    /**
     * @param value ARN of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.
     */
    @JvmName("nvxhhssxkltmslfa")
    public suspend fun resourceArn(`value`: Output) {
        this.resourceArn = value
    }

    /**
     * @param value ARN of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection.
     */
    @JvmName("ybuhkqhdlpbeorln")
    public suspend fun resourceArn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceArn = mapped
    }

    internal fun build(): TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs =
        TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationServerCertificateArgs(
            resourceArn = resourceArn,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy