Module Values.MalwareScanSource

Contains information about a particular malware scan.

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

    Amazon Resource Name (ARN) of the resource for the given malware scan.

    *)
  2. resourceType : MalwareProtectionResourceType.t option;
    (*

    The type of resource that was scanned for malware.

    *)
  3. scanId : NonEmptyString.t option;
    (*

    A unique identifier that gets generated when you invoke the API without any error. Each malware scan has a corresponding scan ID. Using this scan ID, you can monitor the status of your malware scan.

    *)
  4. scanStatus : MalwareProtectionScanStatus.t option;
    (*

    An enum value representing the current status of the malware scan.

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

    An enum value representing the result of the malware scan.

    *)
  6. scanType : MalwareProtectionScanType.t option;
    (*

    An enum value representing the type of scan that was initiated.

    *)
  7. scanStartedAt : Timestamp.t option;
    (*

    The timestamp representing when the malware scan was started.

    *)
  8. scanCompletedAt : Timestamp.t option;
    (*

    The timestamp representing when the malware scan was completed.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourceType:??? -> ?scanId:??? -> ?scanStatus:??? -> ?scanResultStatus:??? -> ?scanType:??? -> ?scanStartedAt:??? -> ?scanCompletedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Timestamp of Timestamp.t ]) 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