Module Values.LensReviewSummarySource

A lens review summary of a workload.

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

    The ARN for the lens.

    *)
  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. updatedAt : Timestamp.t option;
  7. riskCounts : RiskCounts.t option;
  8. profiles : WorkloadProfiles.t option;
    (*

    The profiles associated with the workload.

    *)
  9. prioritizedRiskCounts : RiskCounts.t option;
}
Sourceval make : ?lensAlias:??? -> ?lensArn:??? -> ?lensVersion:??? -> ?lensName:??? -> ?lensStatus:??? -> ?updatedAt:??? -> ?riskCounts:??? -> ?profiles:??? -> ?prioritizedRiskCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ProfileArn.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