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

com.pulumi.aws.appmesh.kotlin.outputs.VirtualNodeSpecBackendDefaultsClientPolicyTlsCertificateFile.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.appmesh.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property certificateChain Certificate trust chain for a certificate stored on the file system of the mesh endpoint that the proxy is running on. Must be between 1 and 255 characters in length.
 * @property privateKey Private key for a certificate stored on the file system of the virtual node that the proxy is running on. Must be between 1 and 255 characters in length.
 */
public data class VirtualNodeSpecBackendDefaultsClientPolicyTlsCertificateFile(
    public val certificateChain: String,
    public val privateKey: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.appmesh.outputs.VirtualNodeSpecBackendDefaultsClientPolicyTlsCertificateFile): VirtualNodeSpecBackendDefaultsClientPolicyTlsCertificateFile =
            VirtualNodeSpecBackendDefaultsClientPolicyTlsCertificateFile(
                certificateChain = javaType.certificateChain(),
                privateKey = javaType.privateKey(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy