Module Values.ExportTaskSource

Represents an export task.

Sourcetype nonrec t = {
  1. taskId : ExportTaskId.t option;
    (*

    The ID of the export task.

    *)
  2. taskName : ExportTaskName.t option;
    (*

    The name of the export task.

    *)
  3. logGroupName : LogGroupName.t option;
    (*

    The name of the log group from which logs data was exported.

    *)
  4. from : Timestamp.t option;
    (*

    The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not exported.

    *)
  5. to_ : Timestamp.t option;
    (*

    The end time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.

    *)
  6. destination : ExportDestinationBucket.t option;
    (*

    The name of the S3 bucket to which the log data was exported.

    *)
  7. destinationPrefix : ExportDestinationPrefix.t option;
    (*

    The prefix that was used as the start of Amazon S3 key for every object exported.

    *)
  8. status : ExportTaskStatus.t option;
    (*

    The status of the export task.

    *)
  9. executionInfo : ExportTaskExecutionInfo.t option;
    (*

    Execution information about the export task.

    *)
}
Sourceval make : ?taskId:??? -> ?taskName:??? -> ?logGroupName:??? -> ?from:??? -> ?to_:??? -> ?destination:??? -> ?destinationPrefix:??? -> ?status:??? -> ?executionInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Timestamp.t | `String of ExportTaskId.t | `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of ExportTaskStatusMessage.t ]) 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