Module Values.DescribeBrokerInstanceOptionsRequestSource

Describe available broker instance options.

Sourcetype nonrec t = {
  1. engineType : string option;
    (*

    Filter response by engine type.

    *)
  2. hostInstanceType : string option;
    (*

    Filter response by host instance type.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of brokers that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.

    *)
  4. nextToken : string option;
    (*

    The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.

    *)
  5. storageType : string option;
    (*

    Filter response by storage type.

    *)
}
Sourceval make : ?engineType:??? -> ?hostInstanceType:??? -> ?maxResults:??? -> ?nextToken:??? -> ?storageType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of string ]) 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