Module Values.CheckDetailSource

Account details for a Well-Architected best practice in relation to Trusted Advisor checks.

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

    Trusted Advisor check ID.

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

    Trusted Advisor check name.

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

    Trusted Advisor check description.

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

    Provider of the check related to the best practice.

    *)
  5. lensArn : LensArn.t option;
    (*

    Well-Architected Lens ARN associated to the check.

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

    Status associated to the check.

    *)
  10. accountId : AwsAccountId.t option;
  11. flaggedResources : FlaggedResources.t option;
    (*

    Count of flagged resources associated to the check.

    *)
  12. reason : CheckFailureReason.t option;
    (*

    Reason associated to the check.

    *)
  13. updatedAt : Timestamp.t option;
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?provider:??? -> ?lensArn:??? -> ?pillarId:??? -> ?questionId:??? -> ?choiceId:??? -> ?status:??? -> ?accountId:??? -> ?flaggedResources:??? -> ?reason:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of FlaggedResources.t | `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