Module Values.FunctionMetadataSource

Contains metadata about a CloudFront function.

Sourcetype nonrec t = {
  1. functionARN : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.

    *)
  2. 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.

    *)
  3. createdTime : Timestamp.t option;
    (*

    The date and time when the function was created.

    *)
  4. lastModifiedTime : Timestamp.t option;
    (*

    The date and time when the function was most recently updated.

    *)
}
Sourceval make : ?functionARN:??? -> ?stage:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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