Module Values.FindingSource

Information about a specific CodeDeploy deployment or CloudFormation stack creation or update that occurred around the time of a reported incident. These activities can be investigated as a potential cause of the incident.

Sourcetype nonrec t = {
  1. creationTime : Timestamp.t option;
    (*

    The timestamp for when a finding was created.

    *)
  2. details : FindingDetails.t option;
    (*

    Details about the finding.

    *)
  3. id : FindingId.t option;
    (*

    The ID assigned to the finding.

    *)
  4. lastModifiedTime : Timestamp.t option;
    (*

    The timestamp for when the finding was most recently updated with additional information.

    *)
}
Sourceval make : ?creationTime:??? -> ?details:??? -> ?id:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FindingId.t | `Structure of (string * [> `Structure of (string * [> `String of Arn.t | `Timestamp of Timestamp.t ]) list ]) list | `Timestamp of Timestamp.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