Class: Aws::EC2::Types::CloudWatchLogOptionsSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::CloudWatchLogOptionsSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Options for sending VPN tunnel logs to CloudWatch.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #log_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Enable or disable VPN tunnel logging feature.
 - 
  
    
      #log_group_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
 - 
  
    
      #log_output_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set log format.
 
Instance Attribute Details
#log_enabled ⇒ Boolean
Enable or disable VPN tunnel logging feature. Default value is ‘False`.
Valid values: ‘True` | `False`
      6573 6574 6575 6576 6577 6578 6579  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6573 class CloudWatchLogOptionsSpecification < Struct.new( :log_enabled, :log_group_arn, :log_output_format) SENSITIVE = [] include Aws::Structure end  | 
  
#log_group_arn ⇒ String
The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
      6573 6574 6575 6576 6577 6578 6579  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6573 class CloudWatchLogOptionsSpecification < Struct.new( :log_enabled, :log_group_arn, :log_output_format) SENSITIVE = [] include Aws::Structure end  | 
  
#log_output_format ⇒ String
Set log format. Default format is ‘json`.
Valid values: ‘json` | `text`
      6573 6574 6575 6576 6577 6578 6579  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6573 class CloudWatchLogOptionsSpecification < Struct.new( :log_enabled, :log_group_arn, :log_output_format) SENSITIVE = [] include Aws::Structure end  |