Module Values_0.EbsCardInfoSource

Describes the performance characteristics of an EBS card on the instance type.

Sourcetype nonrec t = {
  1. ebsCardIndex : EbsCardIndex.t option;
    (*

    The index of the EBS card.

    *)
  2. baselineBandwidthInMbps : BaselineBandwidthInMbps.t option;
    (*

    The baseline bandwidth performance for the EBS card, in Mbps.

    *)
  3. baselineThroughputInMBps : BaselineThroughputInMBps.t option;
    (*

    The baseline throughput performance for the EBS card, in MBps.

    *)
  4. baselineIops : BaselineIops.t option;
    (*

    The baseline IOPS performance for the EBS card.

    *)
  5. maximumBandwidthInMbps : MaximumBandwidthInMbps.t option;
    (*

    The maximum bandwidth performance for the EBS card, in Mbps.

    *)
  6. maximumThroughputInMBps : MaximumThroughputInMBps.t option;
    (*

    The maximum throughput performance for the EBS card, in MBps.

    *)
  7. maximumIops : MaximumIops.t option;
    (*

    The maximum IOPS performance for the EBS card.

    *)
}
Sourceval make : ?ebsCardIndex:??? -> ?baselineBandwidthInMbps:??? -> ?baselineThroughputInMBps:??? -> ?baselineIops:??? -> ?maximumBandwidthInMbps:??? -> ?maximumThroughputInMBps:??? -> ?maximumIops:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of BaselineThroughputInMBps.t | `Integer of EbsCardIndex.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