Module Values.SnowflakeBufferingHintsSource

Describes the buffering to perform before delivering data to the Snowflake destination. If you do not specify any value, Firehose uses the default values.

Sourcetype nonrec t = {
  1. sizeInMBs : SnowflakeBufferingSizeInMBs.t option;
    (*

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

    *)
  2. intervalInSeconds : SnowflakeBufferingIntervalInSeconds.t option;
    (*

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

    *)
}
Sourceval make : ?sizeInMBs:??? -> ?intervalInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SnowflakeBufferingSizeInMBs.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t