Module Values.ReviewTemplateLensReviewSource

The lens review of a review template.

Sourcetype nonrec t = {
  1. lensAlias : LensAlias.t option;
  2. lensArn : LensArn.t option;
    (*

    The lens ARN.

    *)
  3. lensVersion : LensVersion.t option;
    (*

    The version of the lens.

    *)
  4. lensName : LensName.t option;
  5. lensStatus : LensStatus.t option;
    (*

    The status of the lens.

    *)
  6. pillarReviewSummaries : ReviewTemplatePillarReviewSummaries.t option;
    (*

    Pillar review summaries of a lens review.

    *)
  7. updatedAt : Timestamp.t option;
  8. notes : Notes.t option;
  9. questionCounts : QuestionCounts.t option;
    (*

    A count of how many questions are answered and unanswered in the lens review.

    *)
  10. nextToken : NextToken.t option;
}
Sourceval make : ?lensAlias:??? -> ?lensArn:??? -> ?lensVersion:??? -> ?lensName:??? -> ?lensStatus:??? -> ?pillarReviewSummaries:??? -> ?updatedAt:??? -> ?notes:??? -> ?questionCounts:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `String of PillarId.t ]) list ] list | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `String of LensAlias.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