Module Values.EnvironmentSource

A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.

Sourcetype nonrec t = {
  1. variables : EnvironmentVariables.t option;
    (*

    Environment variable key-value pairs. For more information, see Using Lambda environment variables.

    *)
}
Sourceval make : ?variables:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of EnvironmentVariableName.t ] * [> `String of EnvironmentVariableValue.t ]) 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