Module Values.GetScanRequestSource

Returns details about a scan, including whether or not a scan has completed.

Sourcetype nonrec t = {
  1. scanName : ScanName.t;
    (*

    The name of the scan you want to view details about.

    *)
  2. runId : Uuid.t option;
    (*

    UUID that identifies the individual scan run you want to view details about. You retrieve this when you call the CreateScan operation. Defaults to the latest scan run if missing.

    *)
}
Sourceval context_ : string
Sourceval make : ?runId:??? -> scanName:ScanName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ScanName.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