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
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBInstance.CertificateDetailsProperty
static final class
An implementation forCfnDBInstance.CertificateDetailsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCaIdentifier
The CA identifier of the CA certificate used for the DB instance's server certificate.- See Also:
-
getValidTill
The expiration date of the DB instance’s server certificate.- See Also:
-
builder
-