Module Values.DescribeLagsRequestSource

Describes all your link aggregation groups (LAG) or the specified LAG.

Sourcetype nonrec t = {
  1. lagId : LagId.t option;
    (*

    The ID of the LAG.

    *)
  2. maxResults : MaxResultSetSize.t option;
    (*

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.

    *)
  3. nextToken : PaginationToken.t option;
    (*

    The token for the next page of results.

    *)
}
Sourceval make : ?lagId:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResultSetSize.t | `String of LagId.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