Class: Aws::Neptune::Types::CloudwatchLogsExportConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Neptune::Types::CloudwatchLogsExportConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-neptune/types.rb
 
Overview
The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.
The ‘EnableLogTypes` and `DisableLogTypes` arrays determine which logs will be exported (or not exported) to CloudWatch Logs.
Valid log types are: ‘audit` (to publish audit logs) and `slowquery` (to publish slow-query logs). See [Publishing Neptune logs to Amazon CloudWatch logs].
[1]: docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html
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.
      234 235 236 237 238 239  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 234 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.
      234 235 236 237 238 239  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 234 class CloudwatchLogsExportConfiguration < Struct.new( :enable_log_types, :disable_log_types) SENSITIVE = [] include Aws::Structure end  |