Module Values.ScalingParametersSource

The desired instance type and desired number of replicas of each index partition.

Sourcetype nonrec t = {
  1. desiredInstanceType : PartitionInstanceType.t option;
    (*

    The instance type that you want to preconfigure for your domain. For example, search.m1.small.

    *)
  2. desiredReplicationCount : UIntValue.t option;
    (*

    The number of replicas you want to preconfigure for each index partition.

    *)
  3. desiredPartitionCount : UIntValue.t option;
    (*

    The number of partitions you want to preconfigure for your domain. Only valid when you select m2.2xlarge as the desired instance type.

    *)
}
Sourceval make : ?desiredInstanceType:??? -> ?desiredReplicationCount:??? -> ?desiredPartitionCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of UIntValue.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