Module Values.DescribeOrderableDBInstanceOptionsMessageSource

Represents the input to DescribeOrderableDBInstanceOptions.

Sourcetype nonrec t = {
  1. engine : String_.t;
    (*

    The name of the engine to retrieve instance options for.

    *)
  2. engineVersion : String_.t option;
    (*

    The engine version filter value. Specify this parameter to show only the available offerings that match the specified engine version.

    *)
  3. dBInstanceClass : String_.t option;
    (*

    The instance class filter value. Specify this parameter to show only the available offerings that match the specified instance class.

    *)
  4. licenseModel : String_.t option;
    (*

    The license model filter value. Specify this parameter to show only the available offerings that match the specified license model.

    *)
  5. vpc : BooleanOptional.t option;
    (*

    The virtual private cloud (VPC) filter value. Specify this parameter to show only the available VPC or non-VPC offerings.

    *)
  6. filters : FilterList.t option;
    (*

    This parameter is not currently supported.

    *)
  7. maxRecords : IntegerOptional.t option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token (marker) is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.

    *)
  8. marker : String_.t option;
    (*

    An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

    *)
}
Sourceval context_ : string
Sourceval make : ?engineVersion:??? -> ?dBInstanceClass:??? -> ?licenseModel:??? -> ?vpc:??? -> ?filters:??? -> ?maxRecords:??? -> ?marker:??? -> engine:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.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