Module Values.AssessmentEvidenceFolderSource

The folder where Audit Manager stores evidence for an assessment.

Sourcetype nonrec t = {
  1. name : AssessmentEvidenceFolderName.t option;
    (*

    The name of the evidence folder.

    *)
  2. date : Timestamp.t option;
    (*

    The date when the first evidence was added to the evidence folder.

    *)
  3. assessmentId : UUID.t option;
    (*

    The identifier for the assessment.

    *)
  4. controlSetId : ControlSetId.t option;
    (*

    The identifier for the control set.

    *)
  5. controlId : UUID.t option;
    (*

    The unique identifier for the control.

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

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

    *)
  7. dataSource : String_.t option;
    (*

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

    *)
  8. author : String_.t option;
    (*

    The name of the user who created the evidence folder.

    *)
  9. totalEvidence : Integer.t option;
    (*

    The total amount of evidence in the evidence folder.

    *)
  10. assessmentReportSelectionCount : Integer.t option;
    (*

    The total count of evidence that's included in the assessment report.

    *)
  11. controlName : ControlName.t option;
    (*

    The name of the control.

    *)
  12. evidenceResourcesIncludedCount : Integer.t option;
    (*

    The amount of evidence that's included in the evidence folder.

    *)
  13. evidenceByTypeConfigurationDataCount : Integer.t option;
    (*

    The number of evidence that falls under the configuration data category. This evidence is collected from configuration snapshots of other Amazon Web Services services such as Amazon EC2, Amazon S3, or IAM.

    *)
  14. evidenceByTypeManualCount : Integer.t option;
    (*

    The number of evidence that falls under the manual category. This evidence is imported manually.

    *)
  15. evidenceByTypeComplianceCheckCount : Integer.t option;
    (*

    The number of evidence that falls under the compliance check category. This evidence is collected from Config or Security Hub.

    *)
  16. evidenceByTypeComplianceCheckIssuesCount : Integer.t option;
    (*

    The total number of issues that were reported directly from Security Hub, Config, or both.

    *)
  17. evidenceByTypeUserActivityCount : Integer.t option;
    (*

    The number of evidence that falls under the user activity category. This evidence is collected from CloudTrail logs.

    *)
  18. evidenceAwsServiceSourceCount : Integer.t option;
    (*

    The total number of Amazon Web Services resources that were assessed to generate the evidence.

    *)
}
Sourceval make : ?name:??? -> ?date:??? -> ?assessmentId:??? -> ?controlSetId:??? -> ?controlId:??? -> ?id:??? -> ?dataSource:??? -> ?author:??? -> ?totalEvidence:??? -> ?assessmentReportSelectionCount:??? -> ?controlName:??? -> ?evidenceResourcesIncludedCount:??? -> ?evidenceByTypeConfigurationDataCount:??? -> ?evidenceByTypeManualCount:??? -> ?evidenceByTypeComplianceCheckCount:??? -> ?evidenceByTypeComplianceCheckIssuesCount:??? -> ?evidenceByTypeUserActivityCount:??? -> ?evidenceAwsServiceSourceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of AssessmentEvidenceFolderName.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