com.pulumi.aws.networkfirewall.kotlin.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.networkfirewall.kotlin.inputs
import com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property certificateAuthorityArn ARN of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection. See [Using SSL/TLS certificates with TLS inspection configurations](https://docs.aws.amazon.com/network-firewall/latest/developerguide/tls-inspection-certificate-requirements.html) for limitations on CA certificates.
* @property checkCertificateRevocationStatus Check Certificate Revocation Status block. Detailed below.
* @property scopes Scope block. Detailed below.
* @property serverCertificates Server certificates to use for inbound SSL/TLS inspection. See [Using SSL/TLS certificates with TLS inspection configurations](https://docs.aws.amazon.com/network-firewall/latest/developerguide/tls-inspection-certificate-requirements.html).
*/
public data class
TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs(
public val certificateAuthorityArn: Output? = null,
public val checkCertificateRevocationStatus: Output? =
null,
public val scopes: Output>? =
null,
public val serverCertificates: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs =
com.pulumi.aws.networkfirewall.inputs.TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs.builder()
.certificateAuthorityArn(certificateAuthorityArn?.applyValue({ args0 -> args0 }))
.checkCertificateRevocationStatus(
checkCertificateRevocationStatus?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.scopes(scopes?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.serverCertificates(
serverCertificates?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgs].
*/
@PulumiTagMarker
public class
TlsInspectionConfigurationTlsInspectionConfigurationServerCertificateConfigurationArgsBuilder
internal constructor() {
private var certificateAuthorityArn: Output? = null
private var checkCertificateRevocationStatus:
Output? =
null
private var scopes:
Output>? =
null
private var serverCertificates:
Output>? =
null
/**
* @param value ARN of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection. See [Using SSL/TLS certificates with TLS inspection configurations](https://docs.aws.amazon.com/network-firewall/latest/developerguide/tls-inspection-certificate-requirements.html) for limitations on CA certificates.
*/
@JvmName("edfyucomfpqfwnhc")
public suspend fun certificateAuthorityArn(`value`: Output) {
this.certificateAuthorityArn = value
}
/**
* @param value Check Certificate Revocation Status block. Detailed below.
*/
@JvmName("udmiabahyjhpoxmh")
public suspend fun checkCertificateRevocationStatus(`value`: Output) {
this.checkCertificateRevocationStatus = value
}
/**
* @param value Scope block. Detailed below.
*/
@JvmName("lhimsvqsejavlptw")
public suspend fun scopes(`value`: Output>) {
this.scopes = value
}
@JvmName("gsogfgrprldrpyed")
public suspend fun scopes(vararg values: Output) {
this.scopes = Output.all(values.asList())
}
/**
* @param values Scope block. Detailed below.
*/
@JvmName("ygqirvaxtjotamco")
public suspend fun scopes(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy