Module Values.GetLayerVersionResponseSource

Returns information about a version of an Lambda layer, with a link to download the layer archive that's valid for 10 minutes.

Sourcetype nonrec t = {
  1. content : LayerVersionContentOutput.t option;
    (*

    Details about the layer version.

    *)
  2. layerArn : LayerArn.t option;
    (*

    The ARN of the layer.

    *)
  3. layerVersionArn : LayerVersionArn.t option;
    (*

    The ARN of the layer version.

    *)
  4. description : Description.t option;
    (*

    The description of the version.

    *)
  5. createdDate : Timestamp.t option;
    (*

    The date that the layer version was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
  6. version : LayerVersionNumber.t option;
    (*

    The version number.

    *)
  7. compatibleRuntimes : CompatibleRuntimes.t option;
    (*

    The layer's compatible runtimes. The following list includes deprecated runtimes. For more information, see Runtime use after deprecation. For a list of all currently supported runtimes, see Supported runtimes.

    *)
  8. licenseInfo : LicenseInfo.t option;
    (*

    The layer's software license.

    *)
  9. compatibleArchitectures : CompatibleArchitectures.t option;
    (*

    A list of compatible instruction set architectures.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterValueException of InvalidParameterValueException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceException of ServiceException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?content:??? -> ?layerArn:??? -> ?layerVersionArn:??? -> ?description:??? -> ?createdDate:??? -> ?version:??? -> ?compatibleRuntimes:??? -> ?licenseInfo:??? -> ?compatibleArchitectures:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidParameterValueException of InvalidParameterValueException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceException of ServiceException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Long of LayerVersionNumber.t | `String of LayerArn.t | `Structure of (string * [> `Long of Long.t | `String of String_.t ]) list ]) 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