Module Values_3.BundleTaskSource

Describes a bundle task.

Sourcetype nonrec t = {
  1. instanceId : Values_0.String_.t option;
    (*

    The ID of the instance associated with this bundle task.

    *)
  2. bundleId : Values_0.String_.t option;
    (*

    The ID of the bundle task.

    *)
  3. state : Values_1.BundleTaskState.t option;
    (*

    The state of the task.

    *)
  4. startTime : Values_0.DateTime.t option;
    (*

    The time this task started.

    *)
  5. updateTime : Values_0.DateTime.t option;
    (*

    The time of the most recent update for the task.

    *)
  6. storage : Values_1.Storage.t option;
    (*

    The Amazon S3 storage locations.

    *)
  7. progress : Values_0.String_.t option;
    (*

    The level of task completion, as a percent (for example, 20%).

    *)
  8. bundleTaskError : Values_1.BundleTaskError.t option;
    (*

    If the task fails, a description of the error.

    *)
}
Sourceval make : ?instanceId:??? -> ?bundleId:??? -> ?state:??? -> ?startTime:??? -> ?updateTime:??? -> ?storage:??? -> ?progress:??? -> ?bundleTaskError:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t | `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `Blob of Values_0.Blob.t | `String of Values_0.String_.t ]) list ]) list | `Timestamp of Values_0.DateTime.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