Module Values_0.AuditFindingSource

The findings (results) of the audit.

Sourcetype nonrec t = {
  1. findingId : FindingId.t option;
    (*

    A unique identifier for this set of audit findings. This identifier is used to apply mitigation tasks to one or more sets of findings.

    *)
  2. taskId : AuditTaskId.t option;
    (*

    The ID of the audit that generated this result (finding).

    *)
  3. checkName : AuditCheckName.t option;
    (*

    The audit check that generated this result.

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

    The time the audit started.

    *)
  5. findingTime : Timestamp.t option;
    (*

    The time the result (finding) was discovered.

    *)
  6. severity : AuditFindingSeverity.t option;
    (*

    The severity of the result (finding).

    *)
  7. nonCompliantResource : NonCompliantResource.t option;
    (*

    The resource that was found to be noncompliant with the audit check.

    *)
  8. relatedResources : RelatedResources.t option;
    (*

    The list of related resources.

    *)
  9. reasonForNonCompliance : ReasonForNonCompliance.t option;
    (*

    The reason the resource was noncompliant.

    *)
  10. reasonForNonComplianceCode : ReasonForNonComplianceCode.t option;
    (*

    A code that indicates the reason that the resource was noncompliant.

    *)
  11. isSuppressed : IsSuppressed.t option;
    (*

    Indicates whether the audit finding was suppressed or not during reporting.

    *)
}
Sourceval make : ?findingId:??? -> ?taskId:??? -> ?checkName:??? -> ?taskStartTime:??? -> ?findingTime:??? -> ?severity:??? -> ?nonCompliantResource:??? -> ?relatedResources:??? -> ?reasonForNonCompliance:??? -> ?reasonForNonComplianceCode:??? -> ?isSuppressed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsSuppressed.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `String of CertificateId.t | `Structure of (string * [> `String of PolicyName.t ]) list ]) list ]) list ] list | `String of FindingId.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `String of CertificateId.t | `Structure of (string * [> `String of PolicyName.t ]) list ]) 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