Module Values.RelatedFindingDetailSource

Details related activities associated with a potential security event. Lists all distinct categories of evidence that are connected to the resource or the finding group.

Sourcetype nonrec t = {
  1. arn : EntityArn.t option;
    (*

    The Amazon Resource Name (ARN) of the related finding.

    *)
  2. type_ : Type.t option;
    (*

    The type of finding.

    *)
  3. ipAddress : IpAddress.t option;
    (*

    The IP address of the finding.

    *)
}
Sourceval make : ?arn:??? -> ?type_:??? -> ?ipAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EntityArn.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