Module Values.ScannedResourceSource

Contains information about a resource that was scanned as part of the malware scan operation.

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

    Amazon Resource Name (ARN) of the scanned resource.

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

    The resource type of the scanned resource.

    *)
  3. scannedResourceStatus : MalwareProtectionScanStatus.t option;
    (*

    The status of the scanned resource.

    *)
  4. scanStatusReason : ScanStatusReason.t option;
    (*

    The reason for the scan status of this particular resource, if applicable.

    *)
  5. resourceDetails : ScannedResourceDetails.t option;
    (*

    Information about the scanned resource.

    *)
}
Sourceval make : ?scannedResourceArn:??? -> ?scannedResourceType:??? -> ?scannedResourceStatus:??? -> ?scanStatusReason:??? -> ?resourceDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `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