Module Values.ScanJobSummarySource

Contains summary information about scan jobs, including counts and metadata for a specific time period and criteria.

Sourcetype nonrec t = {
  1. region : Region.t option;
    (*

    The Amazon Web Services Region where the scan jobs were executed.

    *)
  2. accountId : AccountId.t option;
    (*

    The account ID that owns the scan jobs included in this summary.

    *)
  3. state : ScanJobStatus.t option;
    (*

    The state of the scan jobs included in this summary. Valid values: CREATED | RUNNING | COMPLETED | COMPLETED_WITH_ISSUES | FAILED | CANCELED.

    *)
  4. resourceType : ResourceType.t option;
    (*

    The type of Amazon Web Services resource for the scan jobs included in this summary.

    *)
  5. count : Integer.t option;
    (*

    The number of scan jobs that match the specified criteria.

    *)
  6. startTime : string option;
    (*

    The value of time in number format of a job start time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  7. endTime : string option;
    (*

    The value of time in number format of a job end time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  8. malwareScanner : MalwareScanner.t option;
    (*

    Specifies the malware scanner used during the scan job. Currently only supports GUARDDUTY.

    *)
  9. scanResultStatus : ScanResultStatus.t option;
    (*

    The scan result status for the scan jobs included in this summary. Valid values: THREATS_FOUND | NO_THREATS_FOUND.

    *)
}
Sourceval make : ?region:??? -> ?accountId:??? -> ?state:??? -> ?resourceType:??? -> ?count:??? -> ?startTime:??? -> ?endTime:??? -> ?malwareScanner:??? -> ?scanResultStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of Region.t | `Timestamp of string ]) 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