Module Values_1.LookbackWindowSource

The lookback window setup of an incremental refresh configuration.

Sourcetype nonrec t = {
  1. columnName : Values_0.String_.t;
    (*

    The name of the lookback window column.

    *)
  2. size : PositiveLong.t;
    (*

    The lookback window column size.

    *)
  3. sizeUnit : LookbackWindowSizeUnit.t;
    (*

    The size unit that is used for the lookback window column. Valid values for this structure are HOUR, DAY, and WEEK.

    *)
}
Sourceval context_ : string
Sourceval make : columnName:Values_0.String_.t -> size:PositiveLong.t -> sizeUnit:LookbackWindowSizeUnit.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of PositiveLong.t | `String of Values_0.String_.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