Module Values.LensUpgradeSummarySource

Lens upgrade summary return object.

Sourcetype nonrec t = {
  1. workloadId : WorkloadId.t option;
  2. workloadName : WorkloadName.t option;
  3. lensAlias : LensAlias.t option;
  4. lensArn : LensArn.t option;
    (*

    The ARN for the lens.

    *)
  5. currentLensVersion : LensVersion.t option;
    (*

    The current version of the lens.

    *)
  6. latestLensVersion : LensVersion.t option;
    (*

    The latest version of the lens.

    *)
  7. resourceArn : ResourceArn.t option;
    (*

    ResourceArn of the lens being upgraded

    *)
  8. resourceName : WorkloadName.t option;
}
Sourceval make : ?workloadId:??? -> ?workloadName:??? -> ?lensAlias:??? -> ?lensArn:??? -> ?currentLensVersion:??? -> ?latestLensVersion:??? -> ?resourceArn:??? -> ?resourceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WorkloadId.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