
com.pulumi.awsnative.lightsail.kotlin.outputs.GetLoadBalancerTlsCertificateResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.lightsail.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property httpsRedirectionEnabled A Boolean value that indicates whether HTTPS redirection is enabled for the load balancer.
* @property isAttached When true, the SSL/TLS certificate is attached to the Lightsail load balancer.
* @property loadBalancerTlsCertificateArn The Amazon Resource Name (ARN) of the SSL/TLS certificate.
* @property status The validation status of the SSL/TLS certificate.
*/
public data class GetLoadBalancerTlsCertificateResult(
public val httpsRedirectionEnabled: Boolean? = null,
public val isAttached: Boolean? = null,
public val loadBalancerTlsCertificateArn: String? = null,
public val status: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.lightsail.outputs.GetLoadBalancerTlsCertificateResult): GetLoadBalancerTlsCertificateResult = GetLoadBalancerTlsCertificateResult(
httpsRedirectionEnabled = javaType.httpsRedirectionEnabled().map({ args0 -> args0 }).orElse(null),
isAttached = javaType.isAttached().map({ args0 -> args0 }).orElse(null),
loadBalancerTlsCertificateArn = javaType.loadBalancerTlsCertificateArn().map({ args0 ->
args0
}).orElse(null),
status = javaType.status().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy