Module Values.IdeConfigurationSource

Information about the configuration of an integrated development environment (IDE) for a Dev Environment.

Sourcetype nonrec t = {
  1. runtime : IdeConfigurationRuntimeString.t option;
    (*

    A link to the IDE runtime image. This parameter is not required for VSCode.

    *)
  2. name : IdeConfigurationNameString.t option;
    (*

    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.

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