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

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

Overview

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

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 'gems/aws-sdk-rds/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 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 789

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