Module Values.EcsEnvironmentVariableSource

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition. You must also specify a container name.

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

    The name of the key-value pair. For environment variables, this is the name of the environment variable.

    *)
  2. value : String_.t option;
    (*

    The value of the key-value pair. For environment variables, this is the value of the environment variable.

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