Module Values.AssessmentMetadataSource

The metadata that's associated with the specified assessment.

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

    The name of the assessment.

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

    The unique identifier for the assessment.

    *)
  3. description : AssessmentDescription.t option;
    (*

    The description of the assessment.

    *)
  4. complianceType : ComplianceType.t option;
    (*

    The name of the compliance standard that's related to the assessment, such as PCI-DSS.

    *)
  5. status : AssessmentStatus.t option;
    (*

    The overall status of the assessment.

    *)
  6. assessmentReportsDestination : AssessmentReportsDestination.t option;
    (*

    The destination that evidence reports are stored in for the assessment.

    *)
  7. scope : Scope.t option;
    (*

    The wrapper of Amazon Web Services accounts and services that are in scope for the assessment.

    *)
  8. roles : Roles.t option;
    (*

    The roles that are associated with the assessment.

    *)
  9. delegations : Delegations.t option;
    (*

    The delegations that are associated with the assessment.

    *)
  10. creationTime : Timestamp.t option;
    (*

    Specifies when the assessment was created.

    *)
  11. lastUpdated : Timestamp.t option;
    (*

    The time of the most recent update.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?description:??? -> ?complianceType:??? -> ?status:??? -> ?assessmentReportsDestination:??? -> ?scope:??? -> ?roles:??? -> ?delegations:??? -> ?creationTime:??? -> ?lastUpdated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of IamArn.t | `Timestamp of Timestamp.t ]) list ] list | `String of AssessmentName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AccountId.t ]) list ] list | `String of S3Url.t ]) 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