Module Values.DatetimeOptionsSource

Represents additional options for correct interpretation of datetime parameters used in the Amazon S3 path of a dataset.

Sourcetype nonrec t = {
  1. format : DatetimeFormat.t;
    (*

    Required option, that defines the datetime format used for a date parameter in the Amazon S3 path. Should use only supported datetime specifiers and separation characters, all literal a-z or A-Z characters should be escaped with single quotes. E.g. "MM.dd.yyyy-'at'-HH:mm".

    *)
  2. timezoneOffset : TimezoneOffset.t option;
    (*

    Optional value for a timezone offset of the datetime parameter value in the Amazon S3 path. Shouldn't be used if Format for this parameter includes timezone fields. If no offset specified, UTC is assumed.

    *)
  3. localeCode : LocaleCode.t option;
    (*

    Optional value for a non-US locale code, needed for correct interpretation of some date formats.

    *)
}
Sourceval context_ : string
Sourceval make : ?timezoneOffset:??? -> ?localeCode:??? -> format:DatetimeFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DatetimeFormat.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