interface CertificateDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBInstancePropsMixin.CertificateDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBInstancePropsMixin_CertificateDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBInstancePropsMixin.CertificateDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBInstancePropsMixin.CertificateDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » CfnDBInstancePropsMixin » 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/cfn-property-mixins';
const certificateDetailsProperty: rds.CfnDBInstancePropsMixin.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