Module Values.LensSource

A lens return object.

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

    The ARN of a lens.

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

    The version of a lens.

    *)
  3. name : LensName.t option;
  4. description : LensDescription.t option;
  5. owner : LensOwner.t option;
    (*

    The Amazon Web Services account ID that owns the lens.

    *)
  6. shareInvitationId : ShareInvitationId.t option;
    (*

    The ID assigned to the share invitation.

    *)
  7. tags : TagMap.t option;
    (*

    The tags assigned to the lens.

    *)
}
Sourceval make : ?lensArn:??? -> ?lensVersion:??? -> ?name:??? -> ?description:??? -> ?owner:??? -> ?shareInvitationId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LensArn.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