Values.EnvironmentVariableSourceThe environment variables for the action.
type nonrec t = {name : EnvironmentVariableName.t;The environment variable name in the key-value pair.
*)value : EnvironmentVariableValue.t;The environment variable value in the key-value pair.
*)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.
*)}val make :
?type_:??? ->
name:EnvironmentVariableName.t ->
value:EnvironmentVariableValue.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of EnvironmentVariableName.t ])
list ]