Module Values.AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetailsSource

Information about an environment variable that is available to builds for the build project.

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

    The name of the environment variable.

    *)
  2. type_ : NonEmptyString.t option;
    (*

    The type of environment variable.

    *)
  3. value : NonEmptyString.t option;
    (*

    The value of the environment variable.

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