
com.pulumi.awsnative.iot.kotlin.outputs.DomainConfigurationServerCertificateSummary.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iot.kotlin.outputs
import com.pulumi.awsnative.iot.kotlin.enums.DomainConfigurationServerCertificateSummaryServerCertificateStatus
import kotlin.String
import kotlin.Suppress
/**
*
* @property serverCertificateArn The ARN of the server certificate.
* @property serverCertificateStatus The status of the server certificate.
* @property serverCertificateStatusDetail Details that explain the status of the server certificate.
*/
public data class DomainConfigurationServerCertificateSummary(
public val serverCertificateArn: String? = null,
public val serverCertificateStatus: DomainConfigurationServerCertificateSummaryServerCertificateStatus? = null,
public val serverCertificateStatusDetail: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iot.outputs.DomainConfigurationServerCertificateSummary): DomainConfigurationServerCertificateSummary = DomainConfigurationServerCertificateSummary(
serverCertificateArn = javaType.serverCertificateArn().map({ args0 -> args0 }).orElse(null),
serverCertificateStatus = javaType.serverCertificateStatus().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iot.kotlin.enums.DomainConfigurationServerCertificateSummaryServerCertificateStatus.Companion.toKotlin(args0)
})
}).orElse(null),
serverCertificateStatusDetail = javaType.serverCertificateStatusDetail().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy