Class: Aws::DocDB::Types::CloudwatchLogsExportConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DocDB::Types::CloudwatchLogsExportConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-docdb/types.rb
 
Overview
The configuration setting for the log types to be enabled for export to Amazon CloudWatch Logs for a specific instance or cluster.
The ‘EnableLogTypes` and `DisableLogTypes` arrays determine which logs are exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the engine that is being used.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #disable_log_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of log types to disable.
 - 
  
    
      #enable_log_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of log types to enable.
 
Instance Attribute Details
#disable_log_types ⇒ Array<String>
The list of log types to disable.
      246 247 248 249 250 251  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 246 class CloudwatchLogsExportConfiguration < Struct.new( :enable_log_types, :disable_log_types) SENSITIVE = [] include Aws::Structure end  | 
  
#enable_log_types ⇒ Array<String>
The list of log types to enable.
      246 247 248 249 250 251  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 246 class CloudwatchLogsExportConfiguration < Struct.new( :enable_log_types, :disable_log_types) SENSITIVE = [] include Aws::Structure end  |