Interface CfnDBInstance.CertificateDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBInstance.CertificateDetailsProperty.Jsii$Proxy
Enclosing class:
CfnDBInstance

@Stability(Stable) public static interface CfnDBInstance.CertificateDetailsProperty extends software.amazon.jsii.JsiiSerializable
Returns the details of the DB instance’s server certificate.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rds.*;
 CertificateDetailsProperty certificateDetailsProperty = CertificateDetailsProperty.builder()
         .caIdentifier("caIdentifier")
         .validTill("validTill")
         .build();