Module Values.AssessmentMetadataItemSource

A metadata object that's associated with an assessment in Audit Manager.

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. complianceType : ComplianceType.t option;
    (*

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

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

    The current status of the assessment.

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

    The roles that are associated with the assessment.

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

    The delegations that are associated with the assessment.

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

    Specifies when the assessment was created.

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

    The time of the most recent update.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?complianceType:??? -> ?status:??? -> ?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 | `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