Module Values.ScanActionSource

Defines a scanning action that specifies the malware scanner and scan mode to use.

Sourcetype nonrec t = {
  1. malwareScanner : MalwareScanner.t option;
    (*

    The malware scanner to use for the scan action. Currently only GUARDDUTY is supported.

    *)
  2. scanMode : ScanMode.t option;
    (*

    The scanning mode to use for the scan action. Valid values: FULL_SCAN | INCREMENTAL_SCAN.

    *)
}
Sourceval make : ?malwareScanner:??? -> ?scanMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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