package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. availability_zone : Aws.BaseTypes.String.t option;
  2. filters : FilterList.t;
  3. include_marketplace : Aws.BaseTypes.Boolean.t option;
  4. instance_type : InstanceType.t option;
  5. max_duration : Aws.BaseTypes.Long.t option;
  6. max_instance_count : Aws.BaseTypes.Integer.t option;
  7. min_duration : Aws.BaseTypes.Long.t option;
  8. offering_class : OfferingClassType.t option;
  9. product_description : RIProductDescription.t option;
  10. reserved_instances_offering_ids : ReservedInstancesOfferingIdStringList.t;
  11. dry_run : Aws.BaseTypes.Boolean.t option;
  12. instance_tenancy : Tenancy.t option;
  13. max_results : Aws.BaseTypes.Integer.t option;
  14. next_token : Aws.BaseTypes.String.t option;
  15. offering_type : OfferingTypeValues.t option;
}
val make : ?availability_zone:Aws.BaseTypes.String.t -> ?filters:FilterList.t -> ?include_marketplace:Aws.BaseTypes.Boolean.t -> ?instance_type:InstanceType.t -> ?max_duration:Aws.BaseTypes.Long.t -> ?max_instance_count:Aws.BaseTypes.Integer.t -> ?min_duration:Aws.BaseTypes.Long.t -> ?offering_class:OfferingClassType.t -> ?product_description:RIProductDescription.t -> ?reserved_instances_offering_ids:ReservedInstancesOfferingIdStringList.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> ?instance_tenancy:Tenancy.t -> ?max_results:Aws.BaseTypes.Integer.t -> ?next_token:Aws.BaseTypes.String.t -> ?offering_type:OfferingTypeValues.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t