Class: Aws::EC2::Types::ConnectionLogOptions
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ConnectionLogOptions
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the client connection logging options for the Client VPN endpoint.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cloudwatch_log_group  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the CloudWatch Logs log group.
 - 
  
    
      #cloudwatch_log_stream  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the CloudWatch Logs log stream to which the connection data is published.
 - 
  
    
      #enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether connection logging is enabled.
 
Instance Attribute Details
#cloudwatch_log_group ⇒ String
The name of the CloudWatch Logs log group. Required if connection logging is enabled.
      6732 6733 6734 6735 6736 6737 6738  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6732 class ConnectionLogOptions < Struct.new( :enabled, :cloudwatch_log_group, :cloudwatch_log_stream) SENSITIVE = [] include Aws::Structure end  | 
  
#cloudwatch_log_stream ⇒ String
The name of the CloudWatch Logs log stream to which the connection data is published.
      6732 6733 6734 6735 6736 6737 6738  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6732 class ConnectionLogOptions < Struct.new( :enabled, :cloudwatch_log_group, :cloudwatch_log_stream) SENSITIVE = [] include Aws::Structure end  | 
  
#enabled ⇒ Boolean
Indicates whether connection logging is enabled.
      6732 6733 6734 6735 6736 6737 6738  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6732 class ConnectionLogOptions < Struct.new( :enabled, :cloudwatch_log_group, :cloudwatch_log_stream) SENSITIVE = [] include Aws::Structure end  |