Module Values.JobSummarySource

Provides summary information about an Amazon Braket hybrid job.

Sourcetype nonrec t = {
  1. status : JobPrimaryStatus.t option;
    (*

    The status of the Amazon Braket hybrid job.

    *)
  2. jobArn : JobArn.t option;
    (*

    The ARN of the Amazon Braket hybrid job.

    *)
  3. jobName : String_.t option;
    (*

    The name of the Amazon Braket hybrid job.

    *)
  4. device : String256.t option;
    (*

    The primary device used by an Amazon Braket hybrid job.

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

    The time at which the Amazon Braket hybrid job was created.

    *)
  6. startedAt : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the Amazon Braket hybrid job was started.

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

    The time at which the Amazon Braket hybrid job ended.

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

    Displays the key, value pairs of tags associated with this hybrid job.

    *)
}
Sourceval make : ?status:??? -> ?jobArn:??? -> ?jobName:??? -> ?device:??? -> ?createdAt:??? -> ?startedAt:??? -> ?endedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of JobArn.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