Values.FunctionMetadataSourceContains metadata about a CloudFront function.
type nonrec t = {functionARN : String_.t option;The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.
*)stage : FunctionStage.t option;The stage that the function is in, either DEVELOPMENT or LIVE. When a function is in the DEVELOPMENT stage, you can test the function with TestFunction, and update it with UpdateFunction. When a function is in the LIVE stage, you can attach the function to a distribution's cache behavior, using the function's ARN.
*)createdTime : Timestamp.t option;The date and time when the function was created.
*)lastModifiedTime : Timestamp.t option;The date and time when the function was most recently updated.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]