Module Values.S3ObjectForSendObjectMalwareScanSource

The S3 object path to initiate a scan, including bucket name, object key, and optional version ID.

Sourcetype nonrec t = {
  1. bucket : String_.t option;
    (*

    The name of the S3 bucket containing the object to scan. The bucket must have GuardDuty Malware Protection enabled.

    *)
  2. key : String_.t option;
    (*

    The key (name) of the S3 object to scan for malware. This must be the full key path of the object within the bucket.

    *)
  3. versionId : String_.t option;
    (*

    The version ID of the S3 object to scan. If not specified, the latest version of the object is scanned.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> ?versionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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