Show / Hide Table of Contents

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-certificatedetails.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-certificatedetails.html#cfn-rds-dbinstance-certificatedetails-caidentifier

ValidTill

The expiration date of the DB instance’s server certificate.

virtual string ValidTill { get; }
Property Value

System.String

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-certificatedetails.html#cfn-rds-dbinstance-certificatedetails-validtill

Back to top Generated by DocFX