Class: Aws::RDS::Types::ModifyCertificatesMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::ModifyCertificatesMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #certificate_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new default certificate identifier to override the current one with.
 - 
  
    
      #remove_customer_override  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether to remove the override for the default certificate.
 
Instance Attribute Details
#certificate_identifier ⇒ String
The new default certificate identifier to override the current one with.
To determine the valid values, use the ‘describe-certificates` CLI command or the `DescribeCertificates` API operation.
      17138 17139 17140 17141 17142 17143  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 17138 class ModifyCertificatesMessage < Struct.new( :certificate_identifier, :remove_customer_override) SENSITIVE = [] include Aws::Structure end  | 
  
#remove_customer_override ⇒ Boolean
Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.
      17138 17139 17140 17141 17142 17143  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 17138 class ModifyCertificatesMessage < Struct.new( :certificate_identifier, :remove_customer_override) SENSITIVE = [] include Aws::Structure end  |