Class: Aws::Neptune::Types::PendingCloudwatchLogsExports
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Neptune::Types::PendingCloudwatchLogsExports
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-neptune/types.rb
 
Overview
A list of the log types whose configuration is still pending. In other words, these log types are in the process of being activated or deactivated.
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
- 
  
    
      #log_types_to_disable  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Log types that are in the process of being enabled.
 - 
  
    
      #log_types_to_enable  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Log types that are in the process of being deactivated.
 
Instance Attribute Details
#log_types_to_disable ⇒ Array<String>
Log types that are in the process of being enabled. After they are enabled, these log types are exported to CloudWatch Logs.
      6855 6856 6857 6858 6859 6860  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 6855 class PendingCloudwatchLogsExports < Struct.new( :log_types_to_enable, :log_types_to_disable) SENSITIVE = [] include Aws::Structure end  | 
  
#log_types_to_enable ⇒ Array<String>
Log types that are in the process of being deactivated. After they are deactivated, these log types aren’t exported to CloudWatch Logs.
      6855 6856 6857 6858 6859 6860  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 6855 class PendingCloudwatchLogsExports < Struct.new( :log_types_to_enable, :log_types_to_disable) SENSITIVE = [] include Aws::Structure end  |