Module Values.ScanSummarySource

Information about a scan.

Sourcetype nonrec t = {
  1. scanState : ScanState.t option;
    (*

    The state of the scan. A scan can be In Progress, Complete, or Failed.

    *)
  2. createdAt : Timestamp.t option;
    (*

    The time when the scan was created.

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

    The time the scan was last updated. A scan is updated when it is re-run.

    *)
  4. scanName : ScanName.t option;
    (*

    The name of the scan.

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

    The identifier for the scan run.

    *)
  6. scanNameArn : ScanNameArn.t option;
    (*

    The ARN for the scan name.

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