Interface CfnDBInstance.ICertificateDetailsProperty
The details of the DB instance’s server certificate.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICertificateDetailsProperty
Syntax (vb)
Public Interface ICertificateDetailsProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var certificateDetailsProperty = new CertificateDetailsProperty {
CaIdentifier = "caIdentifier",
ValidTill = "validTill"
};
Synopsis
Properties
CaIdentifier | The CA identifier of the CA certificate used for the DB instance's server certificate. |
ValidTill | The expiration date of the DB instance’s server certificate. |
Properties
CaIdentifier
The CA identifier of the CA certificate used for the DB instance's server certificate.
virtual string CaIdentifier { get; }
Property Value
System.String
Remarks
ValidTill
The expiration date of the DB instance’s server certificate.
virtual string ValidTill { get; }
Property Value
System.String