Module Values.BatchLoadTaskDescriptionSource

Details about a batch load task.

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

    The ID of the batch load task.

    *)
  2. errorMessage : StringValue2048.t option;
  3. dataSourceConfiguration : DataSourceConfiguration.t option;
    (*

    Configuration details about the data source for a batch load task.

    *)
  4. progressReport : BatchLoadProgressReport.t option;
  5. reportConfiguration : ReportConfiguration.t option;
    (*

    Report configuration for a batch load task. This contains details about where error reports are stored.

    *)
  6. dataModelConfiguration : DataModelConfiguration.t option;
    (*

    Data model configuration for a batch load task. This contains details about where a data model for a batch load task is stored.

    *)
  7. targetDatabaseName : ResourceName.t option;
  8. targetTableName : ResourceName.t option;
  9. taskStatus : BatchLoadStatus.t option;
    (*

    Status of the batch load task.

    *)
  10. recordVersion : RecordVersion.t option;
  11. creationTime : Date.t option;
    (*

    The time when the Timestream batch load task was created.

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

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

    *)
  13. resumableUntil : Date.t option;
}
Sourceval make : ?taskId:??? -> ?errorMessage:??? -> ?dataSourceConfiguration:??? -> ?progressReport:??? -> ?reportConfiguration:??? -> ?dataModelConfiguration:??? -> ?targetDatabaseName:??? -> ?targetTableName:??? -> ?taskStatus:??? -> ?recordVersion:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> ?resumableUntil:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of RecordVersion.t | `String of BatchLoadTaskId.t | `Structure of (string * [> `Enum of string | `Long of Long.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `String of SchemaName.t ]) list ] list | `String of S3BucketName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SchemaName.t ]) list ] list | `String of SchemaName.t ]) list ]) list ]) list | `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