Class: Aws::RDS::Types::CertificateDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

The details of the DB instance’s server certificate.

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

[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html [2]: docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ca_identifierString

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

Returns:

  • (String)


789
790
791
792
793
794
# File 'lib/aws-sdk-rds/types.rb', line 789

class CertificateDetails < Struct.new(
  :ca_identifier,
  :valid_till)
  SENSITIVE = []
  include Aws::Structure
end

#valid_tillTime

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

Returns:

  • (Time)


789
790
791
792
793
794
# File 'lib/aws-sdk-rds/types.rb', line 789

class CertificateDetails < Struct.new(
  :ca_identifier,
  :valid_till)
  SENSITIVE = []
  include Aws::Structure
end