Module Values.DynamicPartitioningConfigurationSource

The configuration of the dynamic partitioning mechanism that creates smaller data sets from the streaming data by partitioning it based on partition keys. Currently, dynamic partitioning is only supported for Amazon S3 destinations.

Sourcetype nonrec t = {
  1. retryOptions : RetryOptions.t option;
    (*

    The retry behavior in case Firehose is unable to deliver data to an Amazon S3 prefix.

    *)
  2. enabled : BooleanObject.t option;
    (*

    Specifies that the dynamic partitioning is enabled for this Firehose stream.

    *)
}
Sourceval make : ?retryOptions:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Structure of (string * [> `Integer of RetryDurationInSeconds.t ]) list ]) 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