Module Values.NetworkBandwidthGbpsRequestSource

Specifies the minimum and maximum for the NetworkBandwidthGbps object when you specify InstanceRequirements for an Auto Scaling group. Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

Sourcetype nonrec t = {
  1. min : NullablePositiveDouble.t option;
    (*

    The minimum amount of network bandwidth, in gigabits per second (Gbps).

    *)
  2. max : NullablePositiveDouble.t option;
    (*

    The maximum amount of network bandwidth, in gigabits per second (Gbps).

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullablePositiveDouble.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