Module Values.ContainerFindingResourceSource

Contains information about container resources involved in a GuardDuty finding. This structure provides details about containers that were identified as part of suspicious or malicious activity.

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

    The container image information, including the image name and tag used to run the container that was involved in the finding.

    *)
  2. imageUid : ContainerImageUid.t option;
    (*

    The unique ID associated with the container image.

    *)
}
Sourceval make : ?image:??? -> ?imageUid:??? -> 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