Module Values.AwsElasticBeanstalkEnvironmentTierSource

Contains information about the tier of the environment.

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

    The name of the environment tier. Valid values are WebServer or Worker.

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

    The type of environment tier. Valid values are Standard or SQS/HTTP.

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

    The version of the environment tier.

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