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

com.pulumi.awsnative.rds.kotlin.outputs.DbInstanceCertificateDetails.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.rds.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The details of the DB instance’s server certificate.
 *  For more information, see [Using SSL/TLS to encrypt a connection to a DB instance](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html) in the *Amazon RDS User Guide* and [Using SSL/TLS to encrypt a connection to a DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html) in the *Amazon Aurora User Guide*.
 * @property caIdentifier The CA identifier of the CA certificate used for the DB instance's server certificate.
 * @property validTill The expiration date of the DB instance’s server certificate.
 */
public data class DbInstanceCertificateDetails(
    public val caIdentifier: String? = null,
    public val validTill: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.rds.outputs.DbInstanceCertificateDetails): DbInstanceCertificateDetails = DbInstanceCertificateDetails(
            caIdentifier = javaType.caIdentifier().map({ args0 -> args0 }).orElse(null),
            validTill = javaType.validTill().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy