Values.DescribeFunctionRequestSourceGets configuration information and metadata about a CloudFront function, but not the function's code. To get a function's code, use GetFunction. To get configuration information and metadata about a function, you must provide the function's name and stage. To get these values, you can use ListFunctions.
type nonrec t = {name : FunctionName.t;The name of the function that you are getting information about.
*)stage : FunctionStage.t option;The function's stage, either DEVELOPMENT or LIVE.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of FunctionName.t ]) list ]