aws-cdk-lib.aws_rds.CfnDBInstance.CertificateDetailsProperty

interface CertificateDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.RDS.CfnDBInstance.CertificateDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBInstance_CertificateDetailsProperty
Javasoftware.amazon.awscdk.services.rds.CfnDBInstance.CertificateDetailsProperty
Pythonaws_cdk.aws_rds.CfnDBInstance.CertificateDetailsProperty
TypeScript aws-cdk-lib » aws_rds » CfnDBInstance » CertificateDetailsProperty

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 { aws_rds as rds } from 'aws-cdk-lib';
const certificateDetailsProperty: rds.CfnDBInstance.CertificateDetailsProperty = {
  caIdentifier: 'caIdentifier',
  validTill: 'validTill',
};

Properties

NameTypeDescription
caIdentifier?stringThe CA identifier of the CA certificate used for the DB instance's server certificate.
validTill?stringThe 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.