Module Values.EBSOptionsSource

Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.

Sourcetype nonrec t = {
  1. eBSEnabled : Boolean.t option;
    (*

    Indicates whether EBS volumes are attached to data nodes in an OpenSearch Service domain.

    *)
  2. volumeType : VolumeType.t option;
    (*

    Specifies the type of EBS volumes attached to data nodes.

    *)
  3. volumeSize : IntegerClass.t option;
    (*

    Specifies the size (in GiB) of EBS volumes attached to data nodes.

    *)
  4. iops : IntegerClass.t option;
    (*

    Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes. Applicable only for the gp3 and provisioned IOPS EBS volume types.

    *)
  5. throughput : IntegerClass.t option;
    (*

    Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable only for the gp3 volume type.

    *)
}
Sourceval make : ?eBSEnabled:??? -> ?volumeType:??? -> ?volumeSize:??? -> ?iops:??? -> ?throughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.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