Module Values.EnvironmentResponseSource

The results of an operation to update or read environment variables. If the operation succeeds, the response contains the environment variables. If it fails, the response contains details about the error.

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

    Environment variable key-value pairs. Omitted from CloudTrail logs.

    *)
  2. error : EnvironmentError.t option;
    (*

    Error messages for environment variables that couldn't be applied.

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