Class: Aws::Firehose::Types::SnowflakeBufferingHints

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#interval_in_secondsInteger

Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 0.

Returns:

  • (Integer)


4285
4286
4287
4288
4289
4290
# File 'lib/aws-sdk-firehose/types.rb', line 4285

class SnowflakeBufferingHints < Struct.new(
  :size_in_m_bs,
  :interval_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#size_in_m_bsInteger

Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 1.

Returns:

  • (Integer)


4285
4286
4287
4288
4289
4290
# File 'lib/aws-sdk-firehose/types.rb', line 4285

class SnowflakeBufferingHints < Struct.new(
  :size_in_m_bs,
  :interval_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end