Module Values.DescribeEnvironmentHealthRequestSource

See the example below to learn how to create a request body.

Sourcetype nonrec t = {
  1. environmentName : EnvironmentName.t option;
    (*

    Specify the environment by name. You must specify either this or an EnvironmentName, or both.

    *)
  2. environmentId : EnvironmentId.t option;
    (*

    Specify the environment by ID. You must specify either this or an EnvironmentName, or both.

    *)
  3. attributeNames : EnvironmentHealthAttributes.t option;
    (*

    Specify the response elements to return. To retrieve all attributes, set to All. If no attribute names are specified, returns the name of the environment.

    *)
}
Sourceval make : ?environmentName:??? -> ?environmentId:??? -> ?attributeNames:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of EnvironmentName.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