Show / Hide Table of Contents

Class CfnDBInstance.CertificateDetailsProperty

The details of the DB instance’s server certificate.

Inheritance
object
CfnDBInstance.CertificateDetailsProperty
Implements
CfnDBInstance.ICertificateDetailsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBInstance.CertificateDetailsProperty : CfnDBInstance.ICertificateDetailsProperty
Syntax (vb)
Public Class CfnDBInstance.CertificateDetailsProperty Implements CfnDBInstance.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

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 .

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"
             };

Properties

CaIdentifier

The CA identifier of the CA certificate used for the DB instance's server certificate.

public string? CaIdentifier { get; set; }
Property Value

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.

public string? ValidTill { get; set; }
Property Value

string

Remarks

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

Implements

CfnDBInstance.ICertificateDetailsProperty
Back to top Generated by DocFX