Module Values.S3ObjectDetailSource

Information about the S3 object that was scanned

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

    Amazon Resource Name (ARN) of the S3 object.

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

    Key of the S3 object.

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

    The entity tag is a hash of the S3 object. The ETag reflects changes only to the contents of an object, and not its metadata.

    *)
  4. hash : String_.t option;
    (*

    Hash of the threat detected in this finding.

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

    Version ID of the object.

    *)
}
Sourceval make : ?objectArn:??? -> ?key:??? -> ?eTag:??? -> ?hash:??? -> ?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