Module Values.EnvironmentTierSource

Describes the properties of an environment tier

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

    The name of this environment tier. Valid values: For Web server tier – WebServer For Worker tier – Worker

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

    The type of this environment tier. Valid values: For Web server tier – Standard For Worker tier – SQS/HTTP

    *)
  3. version : String_.t option;
    (*

    The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version. This member is deprecated. Any specific version that you set may become out of date. We recommend leaving it unspecified.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?version:??? -> 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