com.pulumi.awsnative.apigateway.kotlin.outputs.DomainNameMutualTlsAuthentication.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.apigateway.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property truststoreUri An Amazon S3 URL that specifies the truststore for mutual TLS authentication, for example `s3://bucket-name/key-name` . The truststore can contain certificates from public or private certificate authorities. To update the truststore, upload a new version to S3, and then update your custom domain name to use the new version. To update the truststore, you must have permissions to access the S3 object.
* @property truststoreVersion The version of the S3 object that contains your truststore. To specify a version, you must have versioning enabled for the S3 bucket.
*/
public data class DomainNameMutualTlsAuthentication(
public val truststoreUri: String? = null,
public val truststoreVersion: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.apigateway.outputs.DomainNameMutualTlsAuthentication): DomainNameMutualTlsAuthentication = DomainNameMutualTlsAuthentication(
truststoreUri = javaType.truststoreUri().map({ args0 -> args0 }).orElse(null),
truststoreVersion = javaType.truststoreVersion().map({ args0 -> args0 }).orElse(null),
)
}
}