Module Values.FunctionConfigSource

Contains configuration information about a CloudFront function.

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

    A comment to describe the function.

    *)
  2. runtime : FunctionRuntime.t;
    (*

    The function's runtime environment version.

    *)
  3. keyValueStoreAssociations : KeyValueStoreAssociations.t option;
    (*

    The configuration for the key value store associations.

    *)
}
Sourceval context_ : string
Sourceval make : ?keyValueStoreAssociations:??? -> comment:String_.t -> runtime:FunctionRuntime.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of KeyValueStoreARN.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