Module Values.EC2ResourceDetailsSource

Details on the Amazon EC2 Resource.

Sourcetype nonrec t = {
  1. hourlyOnDemandRate : GenericString.t option;
    (*

    The hourly public On-Demand rate for the instance type.

    *)
  2. instanceType : GenericString.t option;
    (*

    The type of Amazon Web Services instance.

    *)
  3. platform : GenericString.t option;
    (*

    The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

    *)
  4. region : GenericString.t option;
    (*

    The Amazon Web Services Region of the instance.

    *)
  5. sku : GenericString.t option;
    (*

    The SKU of the product.

    *)
  6. memory : GenericString.t option;
    (*

    The memory capacity of the Amazon Web Services instance.

    *)
  7. networkPerformance : GenericString.t option;
    (*

    The network performance capacity of the Amazon Web Services instance.

    *)
  8. storage : GenericString.t option;
    (*

    The disk storage of the Amazon Web Services instance. This doesn't include EBS storage.

    *)
  9. vcpu : GenericString.t option;
    (*

    The number of VCPU cores in the Amazon Web Services instance type.

    *)
}
Sourceval make : ?hourlyOnDemandRate:??? -> ?instanceType:??? -> ?platform:??? -> ?region:??? -> ?sku:??? -> ?memory:??? -> ?networkPerformance:??? -> ?storage:??? -> ?vcpu:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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