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

com.pulumi.awsnative.apigateway.kotlin.outputs.DomainNameMutualTlsAuthentication.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: 0.122.0.0
Show newest version
@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),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy