Class: Aws::Firehose::Types::SnowflakeBufferingHints
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::SnowflakeBufferingHints
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-firehose/types.rb
 
Overview
Describes the buffering to perform before delivering data to the Snowflake destination. If you do not specify any value, Firehose uses the default values.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #interval_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.
 - 
  
    
      #size_in_m_bs  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.
 
Instance Attribute Details
#interval_in_seconds ⇒ Integer
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 0.
      4593 4594 4595 4596 4597 4598  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 4593 class SnowflakeBufferingHints < Struct.new( :size_in_m_bs, :interval_in_seconds) SENSITIVE = [] include Aws::Structure end  | 
  
#size_in_m_bs ⇒ Integer
Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 128.
      4593 4594 4595 4596 4597 4598  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 4593 class SnowflakeBufferingHints < Struct.new( :size_in_m_bs, :interval_in_seconds) SENSITIVE = [] include Aws::Structure end  |