Module Values.EC2InstanceDetailsSource

Details about the Amazon EC2 reservations that Amazon Web Services recommends that you purchase.

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

    The instance family of the recommended reservation.

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

    The type of instance that Amazon Web Services recommends.

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

    The Amazon Web Services Region of the recommended reservation.

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

    The Availability Zone of the recommended reservation.

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

    The platform of the recommended reservation. The platform is the specific combination of operating system, license model, and software on an instance.

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

    Determines whether the recommended reservation is dedicated or shared.

    *)
  7. currentGeneration : GenericBoolean.t option;
    (*

    Determines whether the recommendation is for a current-generation instance.

    *)
  8. sizeFlexEligible : GenericBoolean.t option;
    (*

    Determines whether the recommended reservation is size flexible.

    *)
}
Sourceval make : ?family:??? -> ?instanceType:??? -> ?region:??? -> ?availabilityZone:??? -> ?platform:??? -> ?tenancy:??? -> ?currentGeneration:??? -> ?sizeFlexEligible:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of GenericBoolean.t | `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