Module Values.JobDetailsSource

Contains details about the policy generation request.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The JobId that is returned by the StartPolicyGeneration operation. The JobId can be used with GetGeneratedPolicy to retrieve the generated policies or used with CancelPolicyGeneration to cancel the policy generation request.

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

    The status of the job request.

    *)
  3. startedOn : Timestamp.t option;
    (*

    A timestamp of when the job was started.

    *)
  4. completedOn : Timestamp.t option;
    (*

    A timestamp of when the job was completed.

    *)
  5. jobError : JobError.t option;
    (*

    The job error for the policy generation request.

    *)
}
Sourceval make : ?jobId:??? -> ?status:??? -> ?startedOn:??? -> ?completedOn:??? -> ?jobError:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.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