Module Values.CheckSummarySource

Trusted Advisor check summary.

Sourcetype nonrec t = {
  1. id : CheckId.t option;
    (*

    Trusted Advisor check ID.

    *)
  2. name : CheckName.t option;
    (*

    Trusted Advisor check name.

    *)
  3. provider : CheckProvider.t option;
    (*

    Provider of the check related to the best practice.

    *)
  4. description : CheckDescription.t option;
    (*

    Trusted Advisor check description.

    *)
  5. updatedAt : Timestamp.t option;
  6. lensArn : LensArn.t option;
    (*

    Well-Architected Lens ARN associated to the check.

    *)
  7. pillarId : PillarId.t option;
  8. questionId : QuestionId.t option;
  9. choiceId : ChoiceId.t option;
  10. status : CheckStatus.t option;
    (*

    Status associated to the check.

    *)
  11. accountSummary : AccountSummary.t option;
    (*

    Account summary associated to the check.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?provider:??? -> ?description:??? -> ?updatedAt:??? -> ?lensArn:??? -> ?pillarId:??? -> ?questionId:??? -> ?choiceId:??? -> ?status:??? -> ?accountSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `Integer of CheckStatusCount.t ]) list | `String of CheckId.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