Module Values.DescribeLoadBalancersInputSource

Describes the specified load balancers or all of your load balancers.

Sourcetype nonrec t = {
  1. loadBalancerArns : LoadBalancerArns.t option;
    (*

    The Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.

    *)
  2. names : LoadBalancerNames.t option;
    (*

    The names of the load balancers.

    *)
  3. marker : Marker.t option;
    (*

    The marker for the next set of results. (You received this marker from a previous call.)

    *)
  4. pageSize : PageSize.t option;
    (*

    The maximum number of results to return with this call.

    *)
}
Sourceval make : ?loadBalancerArns:??? -> ?names:??? -> ?marker:??? -> ?pageSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PageSize.t | `List of [> `String of LoadBalancerArn.t ] list | `String of Marker.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