Module Values_3.ConversionTaskSource

Describes a conversion task.

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

    The ID of the conversion task.

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

    The time when the task expires. If the upload isn't complete before the expiration time, we automatically cancel the task.

    *)
  3. importInstance : Values_1.ImportInstanceTaskDetails.t option;
    (*

    If the task is for importing an instance, this contains information about the import instance task.

    *)
  4. importVolume : Values_1.ImportVolumeTaskDetails.t option;
    (*

    If the task is for importing a volume, this contains information about the import volume task.

    *)
  5. state : Values_1.ConversionTaskState.t option;
    (*

    The state of the conversion task.

    *)
  6. statusMessage : Values_0.String_.t option;
    (*

    The status message related to the conversion task.

    *)
  7. tags : Values_0.TagList.t option;
    (*

    Any tags assigned to the task.

    *)
}
Sourceval make : ?conversionTaskId:??? -> ?expirationTime:??? -> ?importInstance:??? -> ?importVolume:??? -> ?state:??? -> ?statusMessage:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Enum of string | `Long of Awso.Import.Int64.t | `String of string ]) list ]) list ] list | `Long of Values_0.Long.t | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `Long of Awso.Import.Int64.t | `String of string ]) list ]) 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