Module Values.ScanConfigurationSource

Contains information about the configuration used for the malware scan.

Sourcetype nonrec t = {
  1. role : NonEmptyString.t option;
    (*

    Amazon Resource Name (ARN) of the IAM role that should contain the required permissions for the scan.

    *)
  2. triggerDetails : TriggerDetails.t option;
    (*

    Information about the entity that triggered the malware scan.

    *)
  3. incrementalScanDetails : IncrementalScanDetails.t option;
    (*

    Information about the incremental scan configuration, if applicable.

    *)
  4. recoveryPoint : ScanConfigurationRecoveryPoint.t option;
    (*

    Information about the recovery point configuration used for the scan, if applicable.

    *)
}
Sourceval make : ?role:??? -> ?triggerDetails:??? -> ?incrementalScanDetails:??? -> ?recoveryPoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) 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