
com.pulumi.awsnative.elasticloadbalancingv2.kotlin.outputs.TrustStoreRevocation.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticloadbalancingv2.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property numberOfRevokedEntries The number of revoked certificates.
* @property revocationId The revocation ID of the revocation file.
* @property revocationType The type of revocation file.
* @property trustStoreArn The Amazon Resource Name (ARN) of the trust store.
*/
public data class TrustStoreRevocation(
public val numberOfRevokedEntries: Int? = null,
public val revocationId: String? = null,
public val revocationType: String? = null,
public val trustStoreArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticloadbalancingv2.outputs.TrustStoreRevocation): TrustStoreRevocation = TrustStoreRevocation(
numberOfRevokedEntries = javaType.numberOfRevokedEntries().map({ args0 -> args0 }).orElse(null),
revocationId = javaType.revocationId().map({ args0 -> args0 }).orElse(null),
revocationType = javaType.revocationType().map({ args0 -> args0 }).orElse(null),
trustStoreArn = javaType.trustStoreArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy