Module Values.DescribeInstancesHealthRequestSource

Parameters for a call to DescribeInstancesHealth.

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

    Specify the AWS Elastic Beanstalk environment by name.

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

    Specify the AWS Elastic Beanstalk environment by ID.

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

    Specifies the response elements you wish to receive. To retrieve all attributes, set to All. If no attribute names are specified, returns a list of instances.

    *)
  4. nextToken : NextToken.t option;
    (*

    Specify the pagination token returned by a previous call.

    *)
}
Sourceval make : ?environmentName:??? -> ?environmentId:??? -> ?attributeNames:??? -> ?nextToken:??? -> 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