Show / Hide Table of Contents

Class CfnDBInstancePropsMixin.CertificateDetailsProperty

The details of the DB instance’s server certificate.

Inheritance
object
CfnDBInstancePropsMixin.CertificateDetailsProperty
Implements
CfnDBInstancePropsMixin.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.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 .

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.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 .

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.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

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

CfnDBInstancePropsMixin.ICertificateDetailsProperty
Back to top Generated by DocFX