Module Values.QuantumTaskSummarySource

Includes information about a quantum task.

Sourcetype nonrec t = {
  1. quantumTaskArn : QuantumTaskArn.t option;
    (*

    The ARN of the quantum task.

    *)
  2. status : QuantumTaskStatus.t option;
    (*

    The status of the quantum task.

    *)
  3. deviceArn : DeviceArn.t option;
    (*

    The ARN of the device the quantum task ran on.

    *)
  4. shots : Long.t option;
    (*

    The shots used for the quantum task.

    *)
  5. outputS3Bucket : String_.t option;
    (*

    The S3 bucket where the quantum task result file is stored.

    *)
  6. outputS3Directory : String_.t option;
    (*

    The folder in the S3 bucket where the quantum task result file is stored.

    *)
  7. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the quantum task was created.

    *)
  8. endedAt : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the quantum task finished.

    *)
  9. tags : TagsMap.t option;
    (*

    Displays the key, value pairs of tags associated with this quantum task.

    *)
}
Sourceval make : ?quantumTaskArn:??? -> ?status:??? -> ?deviceArn:??? -> ?shots:??? -> ?outputS3Bucket:??? -> ?outputS3Directory:??? -> ?createdAt:??? -> ?endedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of QuantumTaskArn.t | `Timestamp of SyntheticTimestamp_date_time.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