Module Values.EbsVolumeDetailsSource

Contains list of scanned and skipped EBS volumes with details.

Sourcetype nonrec t = {
  1. scannedVolumeDetails : VolumeDetails.t option;
    (*

    List of EBS volumes that were scanned.

    *)
  2. skippedVolumeDetails : VolumeDetails.t option;
    (*

    List of EBS volumes that were skipped from the malware scan.

    *)
}
Sourceval make : ?scannedVolumeDetails:??? -> ?skippedVolumeDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list ]) 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