Class: Aws::EC2::Types::DestinationOptionsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::DestinationOptionsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the destination options for a flow log.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #file_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The format for the flow log.
 - 
  
    
      #hive_compatible_partitions  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.
 - 
  
    
      #per_hour_partition  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether to partition the flow log per hour.
 
Instance Attribute Details
#file_format ⇒ String
The format for the flow log. The default is ‘plain-text`.
      30445 30446 30447 30448 30449 30450 30451  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 30445 class DestinationOptionsRequest < Struct.new( :file_format, :hive_compatible_partitions, :per_hour_partition) SENSITIVE = [] include Aws::Structure end  | 
  
#hive_compatible_partitions ⇒ Boolean
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is ‘false`.
      30445 30446 30447 30448 30449 30450 30451  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 30445 class DestinationOptionsRequest < Struct.new( :file_format, :hive_compatible_partitions, :per_hour_partition) SENSITIVE = [] include Aws::Structure end  | 
  
#per_hour_partition ⇒ Boolean
Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is ‘false`.
      30445 30446 30447 30448 30449 30450 30451  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 30445 class DestinationOptionsRequest < Struct.new( :file_format, :hive_compatible_partitions, :per_hour_partition) SENSITIVE = [] include Aws::Structure end  |