Module Values.GetFunctionResponseSource

Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.

Sourcetype nonrec t = {
  1. configuration : FunctionConfiguration.t option;
    (*

    The configuration of the function or version.

    *)
  2. code : FunctionCodeLocation.t option;
    (*

    The deployment package of the function or version.

    *)
  3. tags : Tags.t option;
    (*

    The function's tags. Lambda returns tag data only if you have explicit allow permissions for lambda:ListTags.

    *)
  4. tagsError : TagsError.t option;
    (*

    An object that contains details about an error related to retrieving tags.

    *)
  5. concurrency : Concurrency.t option;
    (*

    The function's reserved concurrency.

    *)
}
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 : ?configuration:??? -> ?code:??? -> ?tags:??? -> ?tagsError:??? -> ?concurrency:??? -> 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 * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `Structure of (string * [> `Enum of string | `Integer of Timeout.t | `List of [> `Enum of string | `Structure of (string * [> `Long of Long.t | `String of LayerVersionArn.t ]) list ] list | `Long of Long.t | `String of NamespacedFunctionName.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of EphemeralStorageSize.t | `List of [> `String of SubnetId.t ] list | `Map of ([> `String of EnvironmentVariableName.t ] * [> `String of EnvironmentVariableValue.t ]) list | `String of VpcId.t | `Structure of (string * [> `Double of ExecutionEnvironmentMemoryGiBPerVCpu.t | `Integer of PerExecutionEnvironmentMaxConcurrency.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list ]) list ]) 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