Module Values.SchedulePeriodSource

Defines the active time period for execution of the scheduled report.

Sourcetype nonrec t = {
  1. startTime : GenericTimeStamp.t option;
    (*

    The start time of the schedule period. If not specified, defaults to the time of the create or update request. The start time cannot be more than 5 minutes before the time of the request.

    *)
  2. endTime : GenericTimeStamp.t option;
    (*

    The end time of the schedule period. If not specified, defaults to 3 years from the time of the create or update request. The maximum allowed value is 3 years from the current time. Setting an end time beyond this limit returns a ValidationException.

    *)
}
Sourceval make : ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of GenericTimeStamp.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