Module Values.CreateHarvestJobRequestSource

Configuration parameters used to create a new HarvestJob.

Sourcetype nonrec t = {
  1. endTime : string;
    (*

    The end of the time-window which will be harvested

    *)
  2. id : string;
    (*

    The ID of the HarvestJob. The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted

    *)
  3. originEndpointId : string;
    (*

    The ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.

    *)
  4. s3Destination : S3Destination.t;
  5. startTime : string;
    (*

    The start of the time-window which will be harvested

    *)
}
Sourceval context_ : string
Sourceval make : endTime:string -> id:string -> originEndpointId:string -> s3Destination:S3Destination.t -> startTime:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `String of string ]) 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