Module Values.LensSummarySource

A lens summary of a lens.

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

    The ARN of the lens.

    *)
  2. lensAlias : LensAlias.t option;
  3. lensName : LensName.t option;
  4. lensType : LensType.t option;
    (*

    The type of the lens.

    *)
  5. description : LensDescription.t option;
  6. createdAt : Timestamp.t option;
  7. updatedAt : Timestamp.t option;
  8. lensVersion : LensVersion.t option;
    (*

    The version of the lens.

    *)
  9. owner : AwsAccountId.t option;
  10. lensStatus : LensStatus.t option;
    (*

    The status of the lens.

    *)
}
Sourceval make : ?lensArn:??? -> ?lensAlias:??? -> ?lensName:??? -> ?lensType:??? -> ?description:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?lensVersion:??? -> ?owner:??? -> ?lensStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LensArn.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