Module Values.SampleSource

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

Sourcetype nonrec t = {
  1. size : SampleSize.t option;
    (*

    The number of rows in the sample.

    *)
  2. type_ : SampleType.t;
    (*

    The way in which DataBrew obtains rows from a dataset.

    *)
}
Sourceval context_ : string
Sourceval make : ?size:??? -> type_:SampleType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of SampleSize.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