Class CfnDBInstancePropsMixin.CertificateDetailsProperty
The details of the DB instance’s server certificate.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDBInstancePropsMixin.CertificateDetailsProperty : CfnDBInstancePropsMixin.ICertificateDetailsProperty
Syntax (vb)
Public Class CfnDBInstancePropsMixin.CertificateDetailsProperty Implements CfnDBInstancePropsMixin.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.Mixins.Preview.AWS.RDS.Mixins;
var certificateDetailsProperty = new CertificateDetailsProperty {
CaIdentifier = "caIdentifier",
ValidTill = "validTill"
};
Synopsis
Constructors
| CertificateDetailsProperty() | The details of the DB instance’s server certificate. |
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. |
Constructors
CertificateDetailsProperty()
The details of the DB instance’s server certificate.
public CertificateDetailsProperty()
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.Mixins.Preview.AWS.RDS.Mixins;
var certificateDetailsProperty = new CertificateDetailsProperty {
CaIdentifier = "caIdentifier",
ValidTill = "validTill"
};
Properties
CaIdentifier
The CA identifier of the CA certificate used for the DB instance's server certificate.
public string? CaIdentifier { get; set; }
Property Value
Remarks
ValidTill
The expiration date of the DB instance’s server certificate.
public string? ValidTill { get; set; }