Module Values.StartMalwareScanConfigurationSource

Contains information about the configuration to be used for the malware scan.

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

    Amazon Resource Name (ARN) of the IAM role that is used for scanning the resource.

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

    Contains information about the incremental scan configuration. When specified, the scan will only process changes since the baseline resource.

    *)
  3. recoveryPoint : RecoveryPoint.t option;
    (*

    Contains information about the recovery point configuration for the requested scan.

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