Class: Aws::RDS::Types::CertificateDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::CertificateDetails
 
 
- 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
- 
  
    
      #ca_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CA identifier of the CA certificate used for the DB instance’s server certificate.
 - 
  
    
      #valid_till  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The expiration date of the DB instance’s server certificate.
 
Instance Attribute Details
#ca_identifier ⇒ String
The CA identifier of the CA certificate used for the DB instance’s server certificate.
      810 811 812 813 814 815  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 810 class CertificateDetails < Struct.new( :ca_identifier, :valid_till) SENSITIVE = [] include Aws::Structure end  | 
  
#valid_till ⇒ Time
The expiration date of the DB instance’s server certificate.
      810 811 812 813 814 815  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 810 class CertificateDetails < Struct.new( :ca_identifier, :valid_till) SENSITIVE = [] include Aws::Structure end  |