Values.HarvestJobCreateParametersSourceConfiguration parameters for a new HarvestJob
type nonrec t = {endTime : string;The end of the time-window which will be harvested
*)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
*)originEndpointId : string;The ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.
*)s3Destination : S3Destination.t;startTime : string;The start of the time-window which will be harvested
*)}val make :
endTime:string ->
id:string ->
originEndpointId:string ->
s3Destination:S3Destination.t ->
startTime:string ->
unit ->
t