Class: Aws::DocDB::Types::CertificateDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DocDB::Types::CertificateDetails
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-docdb/types.rb
 
Overview
Returns the details of the DB instance’s server certificate.
For more information, see [Updating Your Amazon DocumentDB TLS Certificates] and [ Encrypting Data in Transit] in the *Amazon DocumentDB Developer Guide*.
[1]: docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html [2]: docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.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.
      224 225 226 227 228 229  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 224 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.
      224 225 226 227 228 229  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 224 class CertificateDetails < Struct.new( :ca_identifier, :valid_till) SENSITIVE = [] include Aws::Structure end  |