Module Values.DeleteLayerVersionRequestSource

Deletes a version of an Lambda layer. Deleted versions can no longer be viewed or added to functions. To avoid breaking functions, a copy of the version remains in Lambda until no functions refer to it.

Sourcetype nonrec t = {
  1. layerName : LayerName.t;
    (*

    The name or Amazon Resource Name (ARN) of the layer.

    *)
  2. versionNumber : LayerVersionNumber.t;
    (*

    The version number.

    *)
}
Sourceval context_ : string
Sourceval make : layerName:LayerName.t -> versionNumber:LayerVersionNumber.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LayerVersionNumber.t | `String of LayerName.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