Module Values.BatchLoadTaskSource

Details about a batch load task.

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

    The ID of the batch load task.

    *)
  2. taskStatus : BatchLoadStatus.t option;
    (*

    Status of the batch load task.

    *)
  3. databaseName : ResourceName.t option;
    (*

    Database name for the database into which a batch load task loads data.

    *)
  4. tableName : ResourceName.t option;
    (*

    Table name for the table into which a batch load task loads data.

    *)
  5. creationTime : Date.t option;
    (*

    The time when the Timestream batch load task was created.

    *)
  6. lastUpdatedTime : Date.t option;
    (*

    The time when the Timestream batch load task was last updated.

    *)
  7. resumableUntil : Date.t option;
}
Sourceval make : ?taskId:??? -> ?taskStatus:??? -> ?databaseName:??? -> ?tableName:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> ?resumableUntil:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BatchLoadTaskId.t | `Timestamp of Date.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