Module Values.EvidenceSource

A record that contains the information needed to demonstrate compliance with the requirements specified by a control. Examples of evidence include change activity invoked by a user, or a system configuration snapshot.

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

    The data source where the evidence was collected from.

    *)
  2. evidenceAwsAccountId : AccountId.t option;
    (*

    The identifier for the Amazon Web Services account.

    *)
  3. time : Timestamp.t option;
    (*

    The timestamp that represents when the evidence was collected.

    *)
  4. eventSource : AWSServiceName.t option;
    (*

    The Amazon Web Services service that the evidence is collected from.

    *)
  5. eventName : EventName.t option;
    (*

    The name of the evidence event.

    *)
  6. evidenceByType : String_.t option;
    (*

    The type of automated evidence.

    *)
  7. resourcesIncluded : Resources.t option;
    (*

    The list of resources that are assessed to generate the evidence.

    *)
  8. attributes : EvidenceAttributes.t option;
    (*

    The names and values that are used by the evidence event. This includes an attribute name (such as allowUsersToChangePassword) and value (such as true or false).

    *)
  9. iamId : IamArn.t option;
    (*

    The unique identifier for the user or role that's associated with the evidence.

    *)
  10. complianceCheck : String_.t option;
    (*

    The evaluation status for automated evidence that falls under the compliance check category. Audit Manager classes evidence as non-compliant if Security Hub reports a Fail result, or if Config reports a Non-compliant result. Audit Manager classes evidence as compliant if Security Hub reports a Pass result, or if Config reports a Compliant result. If a compliance check isn't available or applicable, then no compliance evaluation can be made for that evidence. This is the case if the evidence uses Config or Security Hub as the underlying data source type, but those services aren't enabled. This is also the case if the evidence uses an underlying data source type that doesn't support compliance checks (such as manual evidence, Amazon Web Services API calls, or CloudTrail).

    *)
  11. awsOrganization : String_.t option;
    (*

    The Amazon Web Services account that the evidence is collected from, and its organization path.

    *)
  12. awsAccountId : AccountId.t option;
    (*

    The identifier for the Amazon Web Services account.

    *)
  13. evidenceFolderId : UUID.t option;
    (*

    The identifier for the folder that the evidence is stored in.

    *)
  14. id : UUID.t option;
    (*

    The identifier for the evidence.

    *)
  15. assessmentReportSelection : String_.t option;
    (*

    Specifies whether the evidence is included in the assessment report.

    *)
}
Sourceval make : ?dataSource:??? -> ?evidenceAwsAccountId:??? -> ?time:??? -> ?eventSource:??? -> ?eventName:??? -> ?evidenceByType:??? -> ?resourcesIncluded:??? -> ?attributes:??? -> ?iamId:??? -> ?complianceCheck:??? -> ?awsOrganization:??? -> ?awsAccountId:??? -> ?evidenceFolderId:??? -> ?id:??? -> ?assessmentReportSelection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of GenericArn.t ]) list ] list | `Map of ([> `String of EvidenceAttributeKey.t ] * [> `String of EvidenceAttributeValue.t ]) list | `String of String_.t | `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