Module Values.EnvironmentVariableSource

The environment variables for the action.

Sourcetype nonrec t = {
  1. name : EnvironmentVariableName.t;
    (*

    The environment variable name in the key-value pair.

    *)
  2. value : EnvironmentVariableValue.t;
    (*

    The environment variable value in the key-value pair.

    *)
  3. type_ : EnvironmentVariableType.t option;
    (*

    Specifies the type of use for the environment variable value. The value can be either PLAINTEXT or SECRETS_MANAGER. If the value is SECRETS_MANAGER, provide the Secrets reference in the EnvironmentVariable value.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> name:EnvironmentVariableName.t -> value:EnvironmentVariableValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EnvironmentVariableName.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