interface CertificateDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnDBInstance.CertificateDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBInstance_CertificateDetailsProperty |
Java | software.amazon.awscdk.services.rds.CfnDBInstance.CertificateDetailsProperty |
Python | aws_cdk.aws_rds.CfnDBInstance.CertificateDetailsProperty |
TypeScript | aws-cdk-lib » aws_rds » CfnDBInstance » CertificateDetailsProperty |
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 { aws_rds as rds } from 'aws-cdk-lib';
const certificateDetailsProperty: rds.CfnDBInstance.CertificateDetailsProperty = {
caIdentifier: 'caIdentifier',
validTill: 'validTill',
};
Properties
| Name | Type | Description |
|---|---|---|
| ca | string | The CA identifier of the CA certificate used for the DB instance's server certificate. |
| valid | string | The expiration date of the DB instance’s server certificate. |
caIdentifier?
Type:
string
(optional)
The CA identifier of the CA certificate used for the DB instance's server certificate.
validTill?
Type:
string
(optional)
The expiration date of the DB instance’s server certificate.

.NET
Go
Java
Python
TypeScript