Module Values.CreateLensVersionInputSource

Create a new lens version. A lens can have up to 100 versions. Use this operation to publish a new lens version after you have imported a lens. The LensAlias is used to identify the lens to be published. The owner of a lens can share the lens with other Amazon Web Services accounts and users in the same Amazon Web Services Region. Only the owner of a lens can delete it.

Sourcetype nonrec t = {
  1. lensAlias : LensAlias.t;
  2. lensVersion : LensVersion.t;
    (*

    The version of the lens being created.

    *)
  3. isMajorVersion : IsMajorVersion.t option;
    (*

    Set to true if this new major lens version.

    *)
  4. clientRequestToken : ClientRequestToken.t;
}
Sourceval context_ : string
Sourceval make : ?isMajorVersion:??? -> lensAlias:LensAlias.t -> lensVersion:LensVersion.t -> clientRequestToken:ClientRequestToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsMajorVersion.t | `String of LensAlias.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